mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2024-11-22 18:15:39 +01:00
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:
parent
30c4fea044
commit
369710333c
@ -57,7 +57,7 @@ public class UpdateUtil {
|
||||
|
||||
@Override
|
||||
public void run() {
|
||||
Bukkit.getLogger().info(PREFIX + message);
|
||||
plugin.getLogger().warning(message);
|
||||
}
|
||||
}.runTask(plugin);
|
||||
}
|
||||
@ -75,9 +75,6 @@ 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 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");
|
||||
|
Loading…
Reference in New Issue
Block a user