Skip to content

Commit

Permalink
re-enable linux auto-downloads since the app name doesn't include ver…
Browse files Browse the repository at this point in the history
…sion anymore
  • Loading branch information
sylviiu committed Jul 5, 2023
1 parent c808efc commit 60f0b2d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions core/checkForUpdates.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,8 @@ const { check } = require("yargs");

autoUpdater.autoDownload = false;

if(process.platform == `win32`/* || process.platform == `darwin`*/) {
if(process.platform == `win32` || process.platform == `linux`/* || process.platform == `darwin`*/) {
autoUpdater.autoDownload = true;
// linux also has auto app updates, but it just downloads a new appimage and deletes the old one. it's very inconvenient.
// darwin removed because i have to sign the app with my deadname in order for that to work. fuck apple.

autoUpdater.on(`update-downloaded`, (info) => {
Expand Down

0 comments on commit 60f0b2d

Please sign in to comment.