2
'update-available'
で発生したことをユーザーが制御できるようにします。 私がここで何をしても、autoUpdaterはアップデートをダウンロードし続けるようです。電子自動更新プログラム:ユーザーが「更新可能」でダウンロードを開始しました
どのようにして、自動アップデータをダウンロードしないようにできますか?
autoUpdater
.on('error', function(error){
// [Log and show dialog] ...
})
.on('update-available', function(e) {
// [Confirmation dialog] ...
if (downloadConfirmation === 0) {
return;
}
})
.on('update-downloaded', function (event) {
// [Restart now? Dialog] ...
if (index === 1) return;
force_quit = true;
autoUpdater.quitAndInstall();
});
autoUpdater.checkForUpdates();