Skip to content

Commit

Permalink
Version bump and version specific logic (4.3.1 patch)
Browse files Browse the repository at this point in the history
  • Loading branch information
glen3b committed Dec 5, 2018
1 parent 3cd9ce9 commit 4625c45
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion js/version-specific.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
function versionSpecificFirstLaunch(currentVersion, previousVersion) {
switch (currentVersion) {
case "4.3.1":
case "4.3":
if (previousVersion != "4.2") {
if (previousVersion != "4.2" && previousVersion != "4.3") {
versionSpecificFirstLaunch("4.2");
}
break;
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"update_url": "https://aopell.me/SchoologyPlus/update.json"
}
},
"version": "4.3",
"version": "4.3.1",
"icons": {
"128": "imgs/[email protected]",
"64": "imgs/[email protected]",
Expand Down

0 comments on commit 4625c45

Please sign in to comment.