Change updating so it doesn't tell you on current version up to date but warns if you're on a newer version than expected / older one in console.

This commit is contained in:
Myles 2016-03-05 21:15:51 +00:00
parent 30c4fea044
commit 369710333c
1 changed files with 3 additions and 6 deletions

View File

@ -57,7 +57,7 @@ public class UpdateUtil {
@Override
public void run() {
Bukkit.getLogger().info(PREFIX + message);
plugin.getLogger().warning(message);
}
}.runTask(plugin);
}
@ -75,10 +75,7 @@ public class UpdateUtil {
if (current.compareTo(newest) < 0)
return "There is a newer version available: " + newest.toString();
else if (console) {
if (current.compareTo(newest) == 0)
return "You are running the newest version: " + current;
else
return "You are running a newer version than is released!";
return "You are running a newer version than is released!";
}
return null;
}
@ -86,7 +83,7 @@ public class UpdateUtil {
private static String getNewestVersion() {
String result = "";
try {
URL url = new URL(URL + PLUGIN);
URL url = new URL(URL + PLUGIN + "?" + System.currentTimeMillis());
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setUseCaches(true);
connection.addRequestProperty("User-Agent", "Mozilla/4.76");