She*_*ero 2 typescript electron electron-builder angular
我有一个 angular 应用程序,它已使用电子生成器转换为桌面应用程序。现在,我正在尝试在其中实现自动更新功能。我不希望电子生成器将更改发布到 github 存储库。(注意:整个应用程序都在一个私有的 github 存储库上。)我想手动上传必要的 .dmg、.zip、.yml 文件到发布标签,我希望自动更新程序可以获取这些文件。我怎样才能做到这一点?
目前,我将源 .zip 和 .tar.gz 作为发布标签的一部分。每当我尝试autoUpdater.checkForUpdates()在应用程序准备好时调用,我都会收到以下错误消息:
Error: ENOENT, dev-app-update.yml not found in /Users/userX/project-web/build/node_modules/electron/dist/Electron.app/Contents/Resources/default_app.asar
at notFoundError (ELECTRON_ASAR.js:108:19)
at fs.readFile (ELECTRON_ASAR.js:536:16)
at go$readFile (/Users/userX/project-web/build/node_modules/graceful-fs/graceful-fs.js:85:14)
at readFile (/Users/userX/project-web/build/node_modules/graceful-fs/graceful-fs.js:82:12)
at readFile (/Users/userX/project-web/build/node_modules/universalify/index.js:5:67)
From previous event:
at /Users/userX/project-web/build/node_modules/electron-updater/src/AppUpdater.ts:460:27
at Generator.next (<anonymous>)
From previous event:
at MacUpdater.loadUpdateConfig (/Users/userX/project-web/build/node_modules/electron-updater/src/AppUpdater.ts:456:33)
at Lazy.AppUpdater.configOnDisk (/Users/userX/project-web/build/node_modules/electron-updater/src/AppUpdater.ts:142:43)
at Lazy.get value [as value] (/Users/userX/project-web/build/node_modules/lazy-val/src/main.ts:18:23)
at /Users/userX/project-web/build/node_modules/electron-updater/src/AppUpdater.ts:340:46
at Generator.next (<anonymous>)
at runCallback (timers.js:696:18)
at tryOnImmediate (timers.js:667:5)
at processImmediate (timers.js:649:5)
From previous event:
at MacUpdater.getUpdateInfoAndProvider (/Users/userX/project-web/build/node_modules/electron-updater/src/AppUpdater.ts:336:43)
at /Users/userX/project-web/build/node_modules/electron-updater/src/AppUpdater.ts:363:31
at Generator.next (<anonymous>)
From previous event:
at MacUpdater.doCheckForUpdates (/Users/userX/project-web/build/node_modules/electron-updater/src/AppUpdater.ts:360:34)
at MacUpdater.checkForUpdates (/Users/userX/project-web/build/node_modules/electron-updater/src/AppUpdater.ts:220:35)
at Timeout.check [as _onTimeout] (/Users/userX/project-web/desktop/src/updater.ts:15:17)
at ontimeout (timers.js:427:11)
at tryOnTimeout (timers.js:289:5)
at listOnTimeout (timers.js:252:5)
at Timer.processTimers (timers.js:212:10)
Run Code Online (Sandbox Code Playgroud)
这是我的代码:
更新程序.ts
import { autoUpdater } from 'electron-updater';
import { dialog, BrowserWindow, ipcMain } from 'electron';
const log = require('electron-log');
let downloadProgress: number;
log.transports.file.level = "debug";
autoUpdater.logger = log;
autoUpdater.autoDownload = false;
export function check() {
autoUpdater.checkForUpdates();
autoUpdater.on('checking-for-update', () => {
dialog.showMessageBox({
type: 'info',
title: 'Update Available',
message: 'A new version of app is available. Do you want to update now?',
buttons: ['Update', 'No']
}, (index) => {
if (index) {
return;
} else {
autoUpdater.downloadUpdate();
let proWin = new BrowserWindow({
width: 350,
height: 35,
useContentSize: true,
autoHideMenuBar: true,
maximizable: false,
fullscreen: false,
fullscreenable: false,
resizable: false,
title: 'Downloading Update'
});
proWin.loadURL(`file://$(__dirname)/progress`);
proWin.on('closed', () => {
proWin = null;
});
ipcMain.on('download-progress-request', (e) => {
e.returnValue = downloadProgress;
});
autoUpdater.on('download-progress', (d) => {
downloadProgress = d.percent;
autoUpdater.logger.info(downloadProgress);
});
autoUpdater.on('update-downloaded', () => {
if (progressWindow) progressWindow.close();
dialog.showMessageBox({
type: 'info',
title: 'Update Ready',
message: 'A new version of app is ready. Quit and Install now?',
buttons: ['Yes', 'Later']
}, (index) => {
if (!index) {
autoUpdater.quitAndInstall();
}
});
});
}
});
});
Run Code Online (Sandbox Code Playgroud)
check()当应用程序准备就绪时,从 main.ts 调用 updater.ts 中的方法,如下所示:
app.on('ready', async () => {
mainWinProcess() // handles all the browser window ops.
createTray();
setTimeout(updater.check, 2000);
});
Run Code Online (Sandbox Code Playgroud)
package.json 如下:
{
"name": "project-web",
"productName": "Project Web X",
"version": "1.0.0",
"author": "applecool",
"description": "A func app",
"main": "./main.js",
"dependencies": {
"electron-log": "2.2.17",
"electron-updater": "4.0.4",
"path": "0.12.7",
"url": "0.11.0",
"fs-extra": "7.0.1",
"decompress-zip": "0.3.1"
},
"scripts": {
"mac": "NODE_ENV=production ./node_modules/gulp/bin/gulp.js --gulpfile ./ops/gulpfile.js mac",
"mac-dev": "NODE_ENV=development ./node_modules/gulp/bin/gulp.js --gulpfile ./ops/gulpfile.js mac-dev",
"start": "NODE_ENV=development ./node_modules/.bin/electron index.js --debug --enable-logging",
"start-mac-setup-dev": "build --mac --config electron-builder-dev.yml",
"start-mac-setup": "build --mac"
},
"devDependencies": {
"@types/node": "^10.12.9",
"electron": "3.0.10",
"electron-builder": "20.36.2",
"electron-is-dev": "1.0.1",
"electron-reload": "1.3.0",
"gulp": "4.0.0",
"icon-gen": "2.0.0",
"jimp": "0.5.6",
"os": "0.1.1",
"zip-folder": "1.0.0",
"devtron": "1.4.0"
},
"build": {
"appId": "com.projectweb.x"
}
}
Run Code Online (Sandbox Code Playgroud)
任何人都可以请指出我正确的方向。我正在尝试在开发环境中执行此操作。
谢谢你。
如果您想测试,只需启动一个本地服务器,然后将您的文件(dmg、zip、yml、json)放在那里(假设它在 localhost:3000 上)。然后,调用 API .setFeedURL(此处为文档)。
例如:autoUpdater.setFeedURL("http://localhost:3000/latest-mac.json")并调用autoUpdater.checkForUpdates().
电子制造商文档中的注释:
请注意,为了在不打包应用程序的情况下开发/测试更新的 UI/UX,您需要在项目的根目录中有一个名为 dev-app-update.yml 的文件,该文件与电子构建器配置中的发布设置相匹配(但yaml 格式)。但不推荐,最好测试已安装应用程序的自动更新(尤其是在 Windows 上)。推荐 Minio 作为本地服务器来测试更新。
| 归档时间: |
|
| 查看次数: |
7881 次 |
| 最近记录: |