我们在电子应用程序中使用以下软件包
我们有以下代码片段,我们调用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());
});
});