auto-update Implemented. win only for now

This commit is contained in:
Quacksire 2022-01-30 21:45:44 -08:00
parent 70f6288546
commit b9d638ee67
4 changed files with 26 additions and 3 deletions

View file

@ -13,7 +13,7 @@ import * as mm from 'music-metadata';
import fetch from 'electron-fetch'
import {wsapi} from "./wsapi";
import * as jsonc from "jsonc";
import { NsisUpdater, AppImageUpdater } from "electron-updater";
export class Win {
private win: any | undefined = null;
private app: any | undefined = null;
@ -522,6 +522,15 @@ export class Win {
})
});
electron.ipcMain.on('check-for-update', async (_event, url) => {
const options = {
provider: 'generic',
url: 'https://43-429851205-gh.circle-artifacts.com/0/%257E/Cider/dist/artifacts' //Base URL
}
const autoUpdater = new NsisUpdater(options) //Windows Only (for now) -q
autoUpdater.checkForUpdatesAndNotify()
})
/* *********************************************************************************************
* Window Events
* **********************************************************************************************/