added a message from the server, now ready for release
This commit is contained in:
parent
23ff6e31d2
commit
939ef85594
2 changed files with 18 additions and 6 deletions
|
@ -67,14 +67,20 @@ public class Resurrection extends JavaPlugin implements Listener {
|
|||
if (check.isSuccess()) {
|
||||
String newestVersion = check.getVersion();
|
||||
String newestVersionURL = check.getVersionURL();
|
||||
String message = check.getMessage();
|
||||
if (pluginInfo.getVersion().equals(newestVersion)) {
|
||||
log.info(newestVersion + " is the latest version of Resurrection.");
|
||||
} else {
|
||||
log.info("A new version of Resurrection is available! (current: " + pluginInfo.getVersion() + ", newest: " + newestVersion + ")");
|
||||
log.info("You can download the latest release on GitHub here \\/");
|
||||
log.info(newestVersionURL);
|
||||
outdated = true;
|
||||
}
|
||||
} else {
|
||||
log.info("A new version of Resurrection is available! (current: " + pluginInfo.getVersion() + ", newest: " + newestVersion + ")");
|
||||
log.info("You can download the latest release on GitHub here \\/");
|
||||
log.info(newestVersionURL);
|
||||
outdated = true;
|
||||
}
|
||||
if (!message.equals("\"\"")) {
|
||||
log.info("---------------------------------------------------------");
|
||||
log.warning("A message from the developer has been sent from the update server: " + message);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
log.info("---------------------------------------------------------");
|
||||
|
|
|
@ -18,6 +18,7 @@ public class CheckForUpdate {
|
|||
boolean success;
|
||||
String version;
|
||||
String versionURL;
|
||||
String message;
|
||||
Logger log = JavaPlugin.getProvidingPlugin(Resurrection.class).getLogger();
|
||||
|
||||
public CheckForUpdate() {
|
||||
|
@ -30,6 +31,7 @@ public class CheckForUpdate {
|
|||
version = softwareObj.get("current-release").toString();
|
||||
version = version.replace("\"", "");
|
||||
versionURL = softwareObj.get("github-release").toString();
|
||||
message = softwareObj.get("message").toString();
|
||||
success = true;
|
||||
} catch (IOException e) {
|
||||
log.warning("An error has occurred while attempting to check for updates.");
|
||||
|
@ -64,4 +66,8 @@ public class CheckForUpdate {
|
|||
public String getVersion() {
|
||||
return version;
|
||||
}
|
||||
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue