Skip to content

Commit

Permalink
Bumped app version, uncommented commented line
Browse files Browse the repository at this point in the history
  • Loading branch information
fjwillemsen committed Sep 2, 2022
1 parent d7fbe0d commit b47b8f9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Scripts/appversion.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
const appversion = "1.7.2";
const appversion = "1.7.3";
2 changes: 1 addition & 1 deletion Scripts/update.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ function checkIfUpdated() {
const previous_version = localStorage.getObject("previous_app_version", "0.1"); // always trigger if the previous app version is not in local storage
const comparison = semanticVersionCompare(appversion, previous_version);
if (comparison == 1 && comparison !== "") {
// localStorage.setObject("previous_app_version", appversion);
localStorage.setObject("previous_app_version", appversion);
return true;
} else if (comparison == 0) {
return false;
Expand Down
2 changes: 1 addition & 1 deletion bundled_script.js

Large diffs are not rendered by default.

0 comments on commit b47b8f9

Please sign in to comment.