diff options
author | Jakob Stendahl <jakobste@uio.no> | 2021-10-21 14:12:12 +0200 |
---|---|---|
committer | Jakob Stendahl <jakobste@uio.no> | 2021-10-21 14:12:12 +0200 |
commit | f243dc8d7527cde3d5b5a4f6e659cf7604f5ae2a (patch) | |
tree | 143b71f2bb6b84370505473d4624d52f1e264bb0 /src/SelfUpdater/index.js | |
parent | a69d9dbc80dfaa0fc3eef3b5ac48e1c2a25fa08b (diff) | |
download | Luxcena-Neo-f243dc8d7527cde3d5b5a4f6e659cf7604f5ae2a.tar.gz Luxcena-Neo-f243dc8d7527cde3d5b5a4f6e659cf7604f5ae2a.zip |
:sparkles: Make all variable-types changeable from both home and editor
Diffstat (limited to 'src/SelfUpdater/index.js')
-rw-r--r-- | src/SelfUpdater/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SelfUpdater/index.js b/src/SelfUpdater/index.js index 19ff4c2..cc4e298 100644 --- a/src/SelfUpdater/index.js +++ b/src/SelfUpdater/index.js @@ -283,11 +283,11 @@ class SelfUpdater { this.remotePackageJSON = JSON.parse(body); this.remoteVersionNumber = this.remotePackageJSON["version"]; if (this.localVersionNumber != this.remoteVersionNumber) { - logger.notice("A new version is available on \"" + this.repoBranch + "\" (v" + this.version + ")"); + logger.notice("A new version is available on \"" + this.branch + "\" (v" + this.remoteVersionNumber + ")"); this.newVersion = true; } else { - logger.info(`Running newest version (${this.newestVersion})`); + logger.info(`Running newest version (${this.localVersionNumber})`); this.newVersion = false; } } else { |