mirror of https://github.com/keeweb/keeweb
fix #1811: app doesn't quit during update
parent
aa734ea976
commit
3f4cddd2a2
|
@ -39,7 +39,7 @@ function installDarwinUpdate(updateFilePath) {
|
|||
`--app=${appPath}`
|
||||
]);
|
||||
|
||||
electron.app.exit(0);
|
||||
electron.app.quit();
|
||||
}
|
||||
|
||||
function installWin32Update(updateFilePath) {
|
||||
|
@ -52,7 +52,7 @@ function installWin32Update(updateFilePath) {
|
|||
|
||||
const ps = spawnDetached('cmd');
|
||||
ps.stdin.end(`${updateCommand}\nexit\n`, 'utf8', () => {
|
||||
electron.app.exit(0);
|
||||
electron.app.quit();
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
Release notes
|
||||
-------------
|
||||
##### v1.18.4 (TBD)
|
||||
`-` fix #1810: fixed the extension on old macOS starting 10.11
|
||||
`-` fix #1813: fixed custom icon selection
|
||||
`-` fix #1810: extension connection on old macOS (10.11)
|
||||
`-` fix #1813: custom icon selection
|
||||
`-` fix #1811: app doesn't quit during update
|
||||
|
||||
##### v1.18.3 (2021-05-09)
|
||||
`-` fix #1804: filling OTP in browser extensions
|
||||
|
|
Loading…
Reference in New Issue