From e1cf936c98ccd38d93141c89f78184d7570b3b70 Mon Sep 17 00:00:00 2001 From: Ben Hybert Date: Sun, 19 May 2024 22:59:13 +0100 Subject: [PATCH] dont show update window --- main.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.js b/main.js index ace0856..5f8819e 100644 --- a/main.js +++ b/main.js @@ -95,10 +95,11 @@ autoUpdater.setFeedURL({ }); autoUpdater.on('checking-for-update', () => { sendTracking('/auto-update', 'Auto Update'); - openUpdateWindow(); + // openUpdateWindow(); }); autoUpdater.on('update-available', (info) => { sendTracking('/update-available', 'Update Available'); + openUpdateWindow(); if (updateWindow) { updateWindow.webContents.send('update-status', 'Update available. Downloading...'); }