Disabled auto-updater on MacOS, as it requires code signing
This commit is contained in:
parent
f1cec69efb
commit
366fb31114
|
@ -317,7 +317,7 @@ function onReady(): void {
|
||||||
// );
|
// );
|
||||||
|
|
||||||
const updaterUrl = `https://update.electronjs.org/mrstallion/fchat-rising/${process.platform}-${process.arch}/${pck.version}`;
|
const updaterUrl = `https://update.electronjs.org/mrstallion/fchat-rising/${process.platform}-${process.arch}/${pck.version}`;
|
||||||
if(process.env.NODE_ENV === 'production') {
|
if((process.env.NODE_ENV === 'production') && (process.platform !== 'darwin')) {
|
||||||
electron.autoUpdater.setFeedURL({url: updaterUrl + (settings.beta ? '?channel=beta' : ''), serverType: 'json'});
|
electron.autoUpdater.setFeedURL({url: updaterUrl + (settings.beta ? '?channel=beta' : ''), serverType: 'json'});
|
||||||
setTimeout(() => electron.autoUpdater.checkForUpdates(), 10000);
|
setTimeout(() => electron.autoUpdater.checkForUpdates(), 10000);
|
||||||
const updateTimer = setInterval(() => electron.autoUpdater.checkForUpdates(), 3600000);
|
const updateTimer = setInterval(() => electron.autoUpdater.checkForUpdates(), 3600000);
|
||||||
|
|
Loading…
Reference in New Issue