当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript autoUpdater.checkForUpdates方法代码示例

本文整理汇总了TypeScript中electron-updater.autoUpdater.checkForUpdates方法的典型用法代码示例。如果您正苦于以下问题:TypeScript autoUpdater.checkForUpdates方法的具体用法?TypeScript autoUpdater.checkForUpdates怎么用?TypeScript autoUpdater.checkForUpdates使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在electron-updater.autoUpdater的用法示例。


在下文中一共展示了autoUpdater.checkForUpdates方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: checkForUpdates

	export async function checkForUpdates() {
		showNotification('Checking for updates...');
		if (!listening) {
			setFeed();
		}
		autoUpdater.checkForUpdates();
	}
开发者ID:SanderRonde,项目名称:youtube-music-app,代码行数:7,代码来源:updater.ts

示例2: checkForUpdates

function checkForUpdates() {
  try {
    autoUpdater.checkForUpdates();
  } catch (e) {
    console.error(`Failed to check for updates`, e);
  }
}
开发者ID:hlyu368,项目名称:outline-client,代码行数:7,代码来源:index.ts

示例3:

ipcMain.on('app-ui-ready', () => {
  // Check for updates after the UI is loaded; otherwise the UI may miss the
  //'update-downloaded' event.
  if (!debugMode) {
    autoUpdater.checkForUpdates();
  }
});
开发者ID:fang2x,项目名称:outline-server,代码行数:7,代码来源:index.ts

示例4: createWindow

app.on('ready', () => {
  // TODO: Run this periodically, e.g. every 4-6 hours.
  autoUpdater.checkForUpdates();

  if (debugMode) {
    Menu.setApplicationMenu(Menu.buildFromTemplate([{
      label: 'Developer',
      submenu: [{role: 'reload'}, {role: 'forcereload'}, {role: 'toggledevtools'}]
    }]));
  }

  // Set the app to launch at startup to reset the system proxy configuration
  // in case of a showdown while proxying.
  app.setLoginItemSettings({openAtLogin: true, args: [Options.AUTOSTART]});

  if (process.argv.includes(Options.AUTOSTART)) {
    app.quit();  // Quitting the app will reset the system proxy configuration before exiting.
  } else {
    createWindow();
  }
});
开发者ID:fang2x,项目名称:outline-client,代码行数:21,代码来源:index.ts

示例5:

 ipcMain.on(UPDATE_CHECK, () => {
   if (process.env.ENV !== 'dev') {
     autoUpdater.checkForUpdates();
   }
 });
开发者ID:laquereric,项目名称:wexond,代码行数:5,代码来源:auto-updater.ts

示例6: setInterval

	setInterval(() => {
		autoUpdater.checkForUpdates();
	}, FOUR_HOURS);
开发者ID:kusamakura,项目名称:caprine,代码行数:3,代码来源:index.ts

示例7: setInterval

 setInterval(() => {
   autoUpdater.checkForUpdates()
 }, UPDATE_CHECK_INTERVAL)
开发者ID:,项目名称:,代码行数:3,代码来源:


注:本文中的electron-updater.autoUpdater.checkForUpdates方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。