Open haoxi911 opened 2 years ago
electron-updater is not using Squirrel.Windows and won't be able to install the downloaded zip package, we as developers can create separate utility app to perform the installation
Not sure how complex this would be, but would you be willing to contribute to electron-updater and add that functionality?
This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 30 days.
On Windows, the
app-update.yml
andlatest.yml
files will only be created withnsis
target, however, for those who are delivering portable Electron app, they won't be able to target tonsis
, usually they will target tozip
.Even though
electron-updater
is not using Squirrel.Windows and won't be able to install the downloaded zip package, we as developers can create separate utility app to perform the installation (i.e. extract the zip to target folder).isSuitableWindowsTarget
method inPublishManager.ts
prevents us from doing this level of customization. Maybe we should export this method so that people like me can override it from outside.