2015-08-29 14:33:25 +02:00
|
|
|
/*
|
|
|
|
* This file ("ThreadUpdateChecker.java") is part of the Actually Additions Mod for Minecraft.
|
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
2016-01-03 16:05:51 +01:00
|
|
|
* http://ellpeck.de/actaddlicense/
|
2015-08-29 14:33:25 +02:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2016-01-03 16:05:51 +01:00
|
|
|
* © 2016 Ellpeck
|
2015-08-29 14:33:25 +02:00
|
|
|
*/
|
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.update;
|
2015-07-10 20:04:07 +02:00
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
|
2015-07-10 20:04:07 +02:00
|
|
|
|
|
|
|
import java.io.BufferedReader;
|
|
|
|
import java.io.InputStreamReader;
|
|
|
|
import java.net.URL;
|
|
|
|
|
|
|
|
public class ThreadUpdateChecker extends Thread{
|
|
|
|
|
|
|
|
public ThreadUpdateChecker(){
|
2015-10-02 16:48:01 +02:00
|
|
|
this.setName(ModUtil.MOD_ID+" Update Checker");
|
2015-07-10 20:04:07 +02:00
|
|
|
this.setDaemon(true);
|
|
|
|
this.start();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void run(){
|
|
|
|
ModUtil.LOGGER.info("Starting Update Check...");
|
|
|
|
try{
|
2015-10-28 18:36:34 +01:00
|
|
|
URL newestURL = new URL("https://raw.githubusercontent.com/Ellpeck/ActuallyAdditions/master/update/updateVersion.txt");
|
2015-07-10 20:04:07 +02:00
|
|
|
BufferedReader newestReader = new BufferedReader(new InputStreamReader(newestURL.openStream()));
|
2015-10-28 18:28:30 +01:00
|
|
|
UpdateChecker.updateVersion = newestReader.readLine();
|
2015-07-10 20:04:07 +02:00
|
|
|
newestReader.close();
|
|
|
|
|
2015-10-28 18:36:34 +01:00
|
|
|
int updateVersion = Integer.parseInt(UpdateChecker.updateVersion.replace("-", "").replace(".", "").replace("r", ""));
|
|
|
|
int clientVersion = Integer.parseInt(ModUtil.VERSION.replace("-", "").replace(".", "").replace("r", ""));
|
|
|
|
if(updateVersion > clientVersion){
|
2015-10-28 18:28:30 +01:00
|
|
|
UpdateChecker.needsUpdateNotify = true;
|
|
|
|
}
|
2015-07-10 20:04:07 +02:00
|
|
|
|
|
|
|
ModUtil.LOGGER.info("Update Check done!");
|
|
|
|
}
|
|
|
|
catch(Exception e){
|
2015-07-10 21:19:52 +02:00
|
|
|
ModUtil.LOGGER.error("Update Check failed!", e);
|
|
|
|
UpdateChecker.checkFailed = true;
|
2015-07-10 20:04:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if(!UpdateChecker.checkFailed){
|
2015-10-28 18:28:30 +01:00
|
|
|
if(UpdateChecker.needsUpdateNotify){
|
|
|
|
ModUtil.LOGGER.info("There is an Update for "+ModUtil.NAME+" available!");
|
|
|
|
ModUtil.LOGGER.info("Current Version: "+ModUtil.VERSION+", newest Version: "+UpdateChecker.updateVersion+"!");
|
|
|
|
ModUtil.LOGGER.info("View the Changelog at "+UpdateChecker.CHANGELOG_LINK);
|
|
|
|
ModUtil.LOGGER.info("Download at "+UpdateChecker.DOWNLOAD_LINK);
|
2015-07-10 20:04:07 +02:00
|
|
|
}
|
2015-10-13 02:12:30 +02:00
|
|
|
else{
|
2015-10-28 18:28:30 +01:00
|
|
|
ModUtil.LOGGER.info(ModUtil.NAME+" is up to date!");
|
2015-07-10 20:04:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|