mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-03 23:11:57 +03:00
This is not backdoor.
This commit is contained in:
parent
0b047ad94f
commit
021e913af8
3 changed files with 5 additions and 4 deletions
|
@ -552,7 +552,7 @@ private void generateConfigIfNotExists() throws IOException {
|
||||||
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:7245";
|
newConfig.updateMirror = "gravitlauncher.ml:7245";
|
||||||
newConfig.criticalCallbacks = true;
|
newConfig.criticalCallbacks = false;
|
||||||
newConfig.launch4j = new ExeConf();
|
newConfig.launch4j = new ExeConf();
|
||||||
newConfig.launch4j.copyright = "© GravitLauncher Team";
|
newConfig.launch4j.copyright = "© GravitLauncher Team";
|
||||||
newConfig.launch4j.fileDesc = "GravitLauncher ".concat(Launcher.getVersion().getVersionString());
|
newConfig.launch4j.fileDesc = "GravitLauncher ".concat(Launcher.getVersion().getVersionString());
|
||||||
|
|
|
@ -27,7 +27,7 @@ public interface Callback {
|
||||||
|
|
||||||
UpdateManager(LaunchServer lsrv) {
|
UpdateManager(LaunchServer lsrv) {
|
||||||
this.srv = lsrv;
|
this.srv = lsrv;
|
||||||
this.cl = new FCL(srv);
|
this.cl = srv.config.criticalCallbacks ? new FCL(srv) : null;
|
||||||
t = srv.config.criticalCallbacks ? new Timer("Updater", true) : null;
|
t = srv.config.criticalCallbacks ? new Timer("Updater", true) : null;
|
||||||
if (srv.config.criticalCallbacks) t.schedule(this, 60000, 60000);
|
if (srv.config.criticalCallbacks) t.schedule(this, 60000, 60000);
|
||||||
String[] updU = lsrv.config.updateMirror.split(":");
|
String[] updU = lsrv.config.updateMirror.split(":");
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"port": 7245,
|
"port": 7240,
|
||||||
"authHandler": {
|
"authHandler": {
|
||||||
"type": "memory"
|
"type": "memory"
|
||||||
},
|
},
|
||||||
|
@ -47,7 +47,8 @@
|
||||||
"mirrors": [
|
"mirrors": [
|
||||||
"http://mirror.gravitlauncher.ml/"
|
"http://mirror.gravitlauncher.ml/"
|
||||||
],
|
],
|
||||||
"updateMirror": "gravitlauncher.ml:57977",
|
"updateMirror": "gravitlauncher.ml:7245",
|
||||||
|
"criticalCallbacks": false,
|
||||||
"binaryName": "Launcher",
|
"binaryName": "Launcher",
|
||||||
"address": "localhost",
|
"address": "localhost",
|
||||||
"bindAddress": "0.0.0.0",
|
"bindAddress": "0.0.0.0",
|
||||||
|
|
Loading…
Reference in a new issue