From 6a3e129ed5a2622ddf06b2f0ca5079acc8f2a17d Mon Sep 17 00:00:00 2001 From: antelle Date: Mon, 15 Mar 2021 19:31:40 +0100 Subject: [PATCH] fixed update installation when minimize on close is enabled see #1740 --- app/scripts/comp/launcher/launcher-electron.js | 2 +- release-notes.md | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/app/scripts/comp/launcher/launcher-electron.js b/app/scripts/comp/launcher/launcher-electron.js index fb563e2d..a1b69c17 100644 --- a/app/scripts/comp/launcher/launcher-electron.js +++ b/app/scripts/comp/launcher/launcher-electron.js @@ -202,7 +202,7 @@ const Launcher = { } }, quitOnRealQuitEventIfMinimizeOnQuitIsEnabled() { - return this.platform() === 'darwin'; + return !!(this.platform() === 'darwin' || this.pendingUpdateFile); }, minimizeApp() { this.remoteApp().minimizeApp({ diff --git a/release-notes.md b/release-notes.md index df508cda..11301e6f 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,5 +1,8 @@ Release notes ------------- +##### v1.17.4 (TBD) +`-` fix #1740: Windows updater issues + ##### v1.17.3 (2021-03-14) `-` fix #1747: white screen in old Safari