gpt4 book ai didi

electron - 如何修复 electron.js 中的 "Skip checkForUpdatesAndNotify because application is not packed"

转载 作者:行者123 更新时间:2023-12-03 12:19:45 25 4
gpt4 key购买 nike

我正在使用“Electron 更新程序”来检查自动更新 Electron 应用程序。

调用“checkForUpdatesAndNotify()”函数。

在控制台中,我收到“由于应用程序未打包而跳过 checkForUpdatesAndNotify”。

  • mac0S Mojave ,
  • “Electron 更新器”:“^4.0.6”,
  • “Electron ”:“^3.0.13”,
  • “electron-builder ”:“20.28.1”
        const {autoUpdater} = require("electron-updater");
    autoUpdater.checkForUpdatesAndNotify();

    autoUpdater.on('checking-for-update', () => {
    console.log('Checking for update...');
    });

    autoUpdater.on('update-available', (info) => {
    console.log('Update available.');
    });

    autoUpdater.on('update-not-available', (info) => {
    console.log('Update not available.');
    });

    autoUpdater.on('error', (err) => {
    console.log('Error in auto-updater. ' + err);
    });

    autoUpdater.on('download-progress', (progressObj) => {
    let log_message = "Download speed: " + progressObj.bytesPerSecond;
    log_message = log_message + ' - Downloaded ' + progressObj.percent + '%';
    log_message = log_message + ' (' + progressObj.transferred + "/" + progressObj.total + ')';
    console.log(log_message);
    });

    autoUpdater.on('update-downloaded', (info) => {
    console.log('Update downloaded');
    });
  • 最佳答案

    checkForUpdatesAndNotify()只是在开发模式下不起作用。

    如果你坚持在开发模式下测试它,你可以用 isPackaged 做一些 hack。 :

    const app = require('electron').app;

    Object.defineProperty(app, 'isPackaged', {
    get() {
    return true;
    }
    });

    小心,不要将此 hack 用于生产,它可能

    关于electron - 如何修复 electron.js 中的 "Skip checkForUpdatesAndNotify because application is not packed",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54147124/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com