소스 검색

desktop: check hourly for updates

Jeffrey Morgan 1 년 전
부모
커밋
f482d80cf4
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      desktop/src/index.ts

+ 4 - 0
desktop/src/index.ts

@@ -83,3 +83,7 @@ app.on('activate', () => {
 // In this file you can include the rest of your app's specific main process
 // code. You can also put them in separate files and import them here.
 autoUpdater.setFeedURL({ url: `https://updates.ollama.ai/update/${process.platform}/${app.getVersion()}` })
+
+setInterval(() => {
+  autoUpdater.checkForUpdates()
+}, 60000)