]> Repos - mime-chat/commitdiff
testing auto update v0.9.8
authorAndrew Gundersen <gundersena@xavier.edu>
Fri, 16 Apr 2021 18:42:46 +0000 (13:42 -0500)
committerAndrew Gundersen <gundersena@xavier.edu>
Fri, 16 Apr 2021 18:42:46 +0000 (13:42 -0500)
.gitlab-ci.yml
package.json
src/background/init.ts

index a3d417ac454ed1cd33ac6b49b4898f521925f88a..2c0d22cba846d88144e83f9f7d7125c14ff719a2 100644 (file)
@@ -22,6 +22,7 @@ build:
     name: $CI_COMMIT_REF_SLUG
     paths:
       - dist_electron/*.dmg
+      - dist_electron/*.zip
       - dist_electron/*.yml
     when: on_success
   only:
index 916d2c5dac2442ab3092728a9672f9c7887d8e16..961035f60e7f5fe4740b9992bffbf76f0d4d4841 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "Crimata",
-  "version": "0.9.7",
+  "version": "0.9.8",
   "private": true,
   "description": "Cross-platform messenger application built with electron, vue3, and TS.",
   "author": {
index b4f1240606cda5f102db1aa787b2b3dc628b8637..715228a15840f7eb9ef55d8c1767db8739b1ecb2 100644 (file)
@@ -58,12 +58,7 @@ export function initApp(dev: boolean): void {
 
     // On initial startup.
     app.on("ready", () => {
-
-        // Check for updates every 2min.
-        setInterval(() => {
-            autoUpdater.checkForUpdates()
-        }, 5000) // 5s for development.
-
+        autoUpdater.checkForUpdates()
         main()
     });