1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-20 06:56:40 +02:00

fix #1811: app doesn't quit during update

This commit is contained in:
antelle 2021-05-12 20:50:24 +02:00
parent aa734ea976
commit 3f4cddd2a2
No known key found for this signature in database
GPG Key ID: 63C9777AAB7C563C
2 changed files with 5 additions and 4 deletions

View File

@ -39,7 +39,7 @@ function installDarwinUpdate(updateFilePath) {
`--app=${appPath}` `--app=${appPath}`
]); ]);
electron.app.exit(0); electron.app.quit();
} }
function installWin32Update(updateFilePath) { function installWin32Update(updateFilePath) {
@ -52,7 +52,7 @@ function installWin32Update(updateFilePath) {
const ps = spawnDetached('cmd'); const ps = spawnDetached('cmd');
ps.stdin.end(`${updateCommand}\nexit\n`, 'utf8', () => { ps.stdin.end(`${updateCommand}\nexit\n`, 'utf8', () => {
electron.app.exit(0); electron.app.quit();
}); });
} }

View File

@ -1,8 +1,9 @@
Release notes Release notes
------------- -------------
##### v1.18.4 (TBD) ##### v1.18.4 (TBD)
`-` fix #1810: fixed the extension on old macOS starting 10.11 `-` fix #1810: extension connection on old macOS (10.11)
`-` fix #1813: fixed custom icon selection `-` fix #1813: custom icon selection
`-` fix #1811: app doesn't quit during update
##### v1.18.3 (2021-05-09) ##### v1.18.3 (2021-05-09)
`-` fix #1804: filling OTP in browser extensions `-` fix #1804: filling OTP in browser extensions