diff --git a/src/background.js b/src/background.js index 7d71c7e..dcf899f 100644 --- a/src/background.js +++ b/src/background.js @@ -3,7 +3,6 @@ import './lib/site/server' import { app, protocol, BrowserWindow, globalShortcut, ipcMain } from 'electron' import { createProtocol } from 'vue-cli-plugin-electron-builder/lib' -import { autoUpdater } from 'electron-updater' import installExtension, { VUEJS_DEVTOOLS } from 'electron-devtools-installer' const isDevelopment = process.env.NODE_ENV !== 'production' @@ -15,8 +14,6 @@ let mini protocol.registerSchemesAsPrivileged([{ scheme: 'app', privileges: { secure: true, standard: true } }]) -autoUpdater.autoDownload = false - function createWindow () { win = new BrowserWindow({ width: 1080, @@ -100,16 +97,6 @@ ipcMain.on('win', () => { win.webContents.send('miniClosed') }) -ipcMain.on('update', async () => { - const checkForUpdates = await autoUpdater.checkForUpdates() - win.webContents.send('update-replay-check', checkForUpdates) - const res = await autoUpdater.downloadUpdate() - win.webContents.send('update-replay-download', res) - autoUpdater.on('update-downloaded', () => { - win.webContents.send('update-replay-downloaded', 'downloaded') - }) -}) - const gotTheLock = app.requestSingleInstanceLock() if (!gotTheLock) { app.quit() diff --git a/src/components/Setting.vue b/src/components/Setting.vue index 6f73499..7338628 100644 --- a/src/components/Setting.vue +++ b/src/components/Setting.vue @@ -7,7 +7,6 @@ Github 当前版本v{{pkg.version}} 反馈 最新版本v{{latestVersion}} - 检查更新