You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logger.warning("You are running a version that does not exist on GitHub. If you are in a dev environment, you can ignore this. Otherwise, this is a bug!");
109
+
return;
110
+
}
111
+
intbuildsBehind = api.getBuildsBehind(current);
112
+
if (buildsBehind == 0) {
113
+
logger.info("You are running the latest version.");
114
+
} else {
115
+
logger.warning("A new version is available (" + latest.getTagVersion() + ")! You are running version " + current.getTagVersion() + ". You are " + buildsBehind + " version(s) behind.");
0 commit comments