only appimage supports autoupdates on linux

This commit is contained in:
Kyle Spearrin 2018-02-16 12:13:36 -05:00
parent c46acc78ce
commit afa2112d91
2 changed files with 17 additions and 1 deletions

View File

@ -2,11 +2,15 @@ import {
dialog,
Menu,
MenuItem,
shell,
} from 'electron';
import { autoUpdater } from 'electron-updater';
import { Main } from '../main';
import { isDev } from '../scripts/utils';
import {
isDev,
isAppImage,
} from '../scripts/utils';
const UpdaterCheckInitalDelay = 5 * 1000; // 5 seconds
const UpdaterCheckInterval = 12 * 60 * 60 * 1000; // 12 hours
@ -103,6 +107,14 @@ export class UpdaterMain {
return;
}
if (process.platform === 'linux' && !isAppImage()) {
if (withFeedback) {
shell.openExternal('https://github.com/bitwarden/desktop/releases');
}
return;
}
this.doingUpdateCheckWithFeedback = withFeedback;
if (withFeedback) {
autoUpdater.autoDownload = false;

View File

@ -5,3 +5,7 @@ export function isDev() {
}
return (process.defaultApp || /node_modules[\\/]electron[\\/]/.test(process.execPath));
}
export function isAppImage() {
return 'APPIMAGE' in process.env;
}