Fixed bug with upgrade notifications - it was always saying that your version

is obsolete if the version was greater than 1 minor version.
This commit is contained in:
Paul Baranowski 2012-05-15 17:13:01 -04:00
parent ea5c5c8586
commit 2856d379b5
1 changed files with 3 additions and 2 deletions

View File

@ -6,11 +6,12 @@ function getContent() {
var link = getLatestLink();
var msg = "";
// See file airtime_mvc/application/views/helpers/VersionNotify.php for more info
if(isUpToDate()) {
msg = "You are running the latest version";
} else if(diff <= 1) { // new version is possible when major diff = 0
} else if (diff < 20) {
msg = "New version available: " + link;
} else if(diff == 2) {
} else if (diff < 30) {
msg = "This version will soon be obsolete.<br/>Please upgrade to " + link;
} else {
msg = "This version is no longer supported.<br/>Please upgrade to " + link;