diff -ura package.orig/src/main.js package.new/src/main.js --- package.orig/src/main.js 2020-12-22 21:55:07.535806928 +0100 +++ package.new/src/main.js 2020-12-22 21:58:31.700431931 +0100 @@ -66,16 +66,6 @@ // Tasks we need for every start and restart mainWindow.webContents.on("did-finish-load", () => core.prepare(cli.file)); - // Task we need only on the first start - mainWindow.webContents.once("did-finish-load", () => { - updater - .isOutdated() - .then(updateUrl => { - if (updateUrl) mainEvent.emit("user:update-available", updateUrl); - }) - .catch(e => log.debug(e)); // Ignore errors, since this is non-essential - }); - mainWindow.loadURL( url.format({ pathname: path.join(__dirname, "html/index.html"),