diff --git a/README.md b/README.md
index 71ab13a3..0cea3057 100644
--- a/README.md
+++ b/README.md
@@ -8,16 +8,17 @@ You can download the latest version of the Arduino Pro IDE application for the s
#### Latest version
-Platform | 32 bit | 64 bit |
---------- | ------------------------ | ---------------------------------------------------- |
-Linux | | [Linux 64 bit] |
-Linux ARM | [🚧 Work in progress...] | [🚧 Work in progress...] |
-Windows | | [Windows 64 bit installer]
[Windows 64 bit ZIP] |
-macOS | | [macOS 64 bit] |
+Platform | 32 bit | 64 bit |
+--------- | ------------------------ | ------------------------------------------------------------------------------ |
+Linux | | [Linux 64 bit] |
+Linux ARM | [🚧 Work in progress...] | [🚧 Work in progress...] |
+Windows | | [Windows 64 bit installer]
[Windows 64 bit MSI]
[Windows 64 bit ZIP] |
+macOS | | [macOS 64 bit] |
[🚧 Work in progress...]: https://github.com/arduino/arduino-pro-ide/issues/287
[Linux 64 bit]: https://downloads.arduino.cc/arduino-pro-ide/arduino-pro-ide_latest_Linux_64bit.zip
[Windows 64 bit installer]: https://downloads.arduino.cc/arduino-pro-ide/arduino-pro-ide_latest_Windows_64bit.exe
+[Windows 64 bit MSI]: https://downloads.arduino.cc/arduino-pro-ide/arduino-pro-ide_latest_Windows_64bit.msi
[Windows 64 bit ZIP]: https://downloads.arduino.cc/arduino-pro-ide/arduino-pro-ide_latest_Windows_64bit.zip
[macOS 64 bit]: https://downloads.arduino.cc/arduino-pro-ide/arduino-pro-ide_latest_macOS_64bit.dmg
@@ -31,16 +32,17 @@ These builds are generated every day at 03:00 GMT from the `master` branch and
should be considered unstable. In order to get the latest nightly build
available for the supported platform, use the following links:
-Platform | 32 bit | 64 bit |
---------- | ------------------------ | -------------------------------------------------------------------- |
-Linux | | [Nightly Linux 64 bit] |
-Linux ARM | [🚧 Work in progress...] | [🚧 Work in progress...] |
-Windows | | [Nightly Windows 64 bit installer]
[Nightly Windows 64 bit ZIP] |
-macOS | | [Nightly macOS 64 bit] |
+Platform | 32 bit | 64 bit |
+--------- | ------------------------ | ------------------------------------------------------------------------------------------------------ |
+Linux | | [Nightly Linux 64 bit] |
+Linux ARM | [🚧 Work in progress...] | [🚧 Work in progress...] |
+Windows | | [Nightly Windows 64 bit installer]
[Nightly Windows 64 bit MSI]
[Nightly Windows 64 bit ZIP] |
+macOS | | [Nightly macOS 64 bit] |
[🚧 Work in progress...]: https://github.com/arduino/arduino-pro-ide/issues/287
[Nightly Linux 64 bit]: https://downloads.arduino.cc/arduino-pro-ide/nightly/arduino-pro-ide_nightly-latest_Linux_64bit.zip
[Nightly Windows 64 bit installer]: https://downloads.arduino.cc/arduino-pro-ide/nightly/arduino-pro-ide_nightly-latest_Windows_64bit.exe
+[Nightly Windows 64 bit MSI]: https://downloads.arduino.cc/arduino-pro-ide/nightly/arduino-pro-ide_nightly-latest_Windows_64bit.msi
[Nightly Windows 64 bit ZIP]: https://downloads.arduino.cc/arduino-pro-ide/nightly/arduino-pro-ide_nightly-latest_Windows_64bit.zip
[Nightly macOS 64 bit]: https://downloads.arduino.cc/arduino-pro-ide/nightly/arduino-pro-ide_nightly-latest_macOS_64bit.dmg
diff --git a/electron/build/template-package.json b/electron/build/template-package.json
index fcbc97c5..b465a7fe 100644
--- a/electron/build/template-package.json
+++ b/electron/build/template-package.json
@@ -77,6 +77,7 @@
],
"win": {
"target": [
+ "msi",
"nsis",
"zip"
]
diff --git a/electron/packager/index.js b/electron/packager/index.js
index bf299f91..4bc9a14b 100644
--- a/electron/packager/index.js
+++ b/electron/packager/index.js
@@ -280,7 +280,7 @@ ${fs.readFileSync(path('..', 'build', 'package.json')).toString()}
break;
}
case 'win32': {
- filesToCopy.push(...glob.sync('**/arduino-pro-ide*.{exe,zip}', { cwd }).map(p => join(cwd, p)));
+ filesToCopy.push(...glob.sync('**/arduino-pro-ide*.{exe,msi,zip}', { cwd }).map(p => join(cwd, p)));
break;
}
case 'darwin': {