下载新的应用程序版本后,电子更新程序未调用“更新下载”事件

时间:2018-06-22 05:22:40

标签: javascript electron electron-builder

我们在电子应用程序中使用以下软件包

  • 电子更新程序^ 2.21.10
    “电子生成器”:“ ^ 19.19.1”,
    “ electron”:“ ^ 1.7.5

我们有以下代码片段,我们调用autoUpdater.quitAndInstall(),但它不会退出当前版本的应用程序,也不会安装新版本。

autoUpdater.on('update-downloaded', () => {
  app.focus(); // to let the update dialog have the focus when update is available
  dialog.showMessageBox({
    title: 'Test Application',
    type: 'none',
    message: 'Updates are downloaded, application will be quit for update...',
  }, () => {
    setImmediate(() => autoUpdater.quitAndInstall());
  });
});

0 个答案:

没有答案