From 2856d379b5c8d5fe2a0051679d283b09990b5241 Mon Sep 17 00:00:00 2001 From: Paul Baranowski Date: Tue, 15 May 2012 17:13:01 -0400 Subject: [PATCH] Fixed bug with upgrade notifications - it was always saying that your version is obsolete if the version was greater than 1 minor version. --- airtime_mvc/public/js/airtime/dashboard/versiontooltip.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/airtime_mvc/public/js/airtime/dashboard/versiontooltip.js b/airtime_mvc/public/js/airtime/dashboard/versiontooltip.js index 7e70e732e..10afb2864 100644 --- a/airtime_mvc/public/js/airtime/dashboard/versiontooltip.js +++ b/airtime_mvc/public/js/airtime/dashboard/versiontooltip.js @@ -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.
Please upgrade to " + link; } else { msg = "This version is no longer supported.
Please upgrade to " + link;