mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-04 15:31:53 +03:00
Port fixes.
This commit is contained in:
parent
48e57b3c45
commit
cc28c56aac
3 changed files with 8 additions and 5 deletions
|
@ -545,7 +545,7 @@ private void generateConfigIfNotExists() throws IOException {
|
||||||
LogHelper.info("Creating LaunchServer config");
|
LogHelper.info("Creating LaunchServer config");
|
||||||
Config newConfig = new Config();
|
Config newConfig = new Config();
|
||||||
newConfig.mirrors = new String[]{"http://mirror.gravitlauncher.ml/"};
|
newConfig.mirrors = new String[]{"http://mirror.gravitlauncher.ml/"};
|
||||||
newConfig.updateMirror = "gravitlauncher.ml:57977";
|
newConfig.updateMirror = "gravitlauncher.ml:7245";
|
||||||
newConfig.criticalCallbacks = true;
|
newConfig.criticalCallbacks = true;
|
||||||
newConfig.launch4j = new ExeConf();
|
newConfig.launch4j = new ExeConf();
|
||||||
newConfig.launch4j.copyright = "© GravitLauncher Team";
|
newConfig.launch4j.copyright = "© GravitLauncher Team";
|
||||||
|
|
|
@ -16,7 +16,8 @@ public final class UpdateManager extends TimerTask {
|
||||||
private final LaunchServer srv;
|
private final LaunchServer srv;
|
||||||
private final FCL cl;
|
private final FCL cl;
|
||||||
public final Timer t;
|
public final Timer t;
|
||||||
private final URL updU;
|
private final String updUH;
|
||||||
|
private final int updUP;
|
||||||
private int lastNum = 0;
|
private int lastNum = 0;
|
||||||
|
|
||||||
public interface Callback {
|
public interface Callback {
|
||||||
|
@ -30,7 +31,9 @@ public interface Callback {
|
||||||
this.cl = new FCL(srv);
|
this.cl = new FCL(srv);
|
||||||
t = new Timer("Updater", true);
|
t = new Timer("Updater", true);
|
||||||
if (srv.config.criticalCallbacks) t.schedule(this, 60000, 60000);
|
if (srv.config.criticalCallbacks) t.schedule(this, 60000, 60000);
|
||||||
updU = new URL(srv.config.updateMirror);
|
String[] updU = lsrv.config.updateMirror.split(":");
|
||||||
|
updUH = updU[0];
|
||||||
|
updUP = Integer.parseInt(updU[1]);
|
||||||
checkVer();
|
checkVer();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -77,7 +80,7 @@ public void run() {
|
||||||
}
|
}
|
||||||
|
|
||||||
private Socket getSocket() throws IOException {
|
private Socket getSocket() throws IOException {
|
||||||
return new Socket(updU.getHost(), updU.getPort());
|
return new Socket(updUH, updUP);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void checkVer() {
|
private void checkVer() {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"port": 7420,
|
"port": 7245,
|
||||||
"authHandler": {
|
"authHandler": {
|
||||||
"type": "memory"
|
"type": "memory"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue