mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 11:39:11 +03:00
[FIX][RUNTIME] Исправлено перемещение мышки после смены оверлея. (#140)
* [UPD] Submodule `modules` updated. * [FIX] Profiles property: "info" + [FIX] Recenter mouse on stage. + [FIX] Auto-generating config generation (param: "isWarningMissArchJava"). * [FIXED] Access rules in ServerWrapper agent. * [FIX] Фикс ошибки мержа с master. * [FIX] AuthProvider в дефолтном конфиге.
This commit is contained in:
parent
9bfdcbc622
commit
3dd775807e
5 changed files with 8 additions and 6 deletions
|
@ -593,6 +593,8 @@ private void generateConfigIfNotExists() throws IOException {
|
||||||
newConfig.enabledProGuard = true;
|
newConfig.enabledProGuard = true;
|
||||||
newConfig.stripLineNumbers = true;
|
newConfig.stripLineNumbers = true;
|
||||||
newConfig.deleteTempFiles = true;
|
newConfig.deleteTempFiles = true;
|
||||||
|
newConfig.isWarningMissArchJava = true;
|
||||||
|
|
||||||
// Set server address
|
// Set server address
|
||||||
LogHelper.println("LaunchServer address: ");
|
LogHelper.println("LaunchServer address: ");
|
||||||
newConfig.setAddress(commandHandler.readLine());
|
newConfig.setAddress(commandHandler.readLine());
|
||||||
|
|
|
@ -51,11 +51,12 @@
|
||||||
"authRateLimitMilis": 0,
|
"authRateLimitMilis": 0,
|
||||||
"authRejectString": "Превышен лимит авторизаций",
|
"authRejectString": "Превышен лимит авторизаций",
|
||||||
"whitelistRejectString": "Вас нет в белом списке",
|
"whitelistRejectString": "Вас нет в белом списке",
|
||||||
"genMappings": false,
|
"genMappings": true,
|
||||||
"isUsingWrapper": false,
|
"isUsingWrapper": false,
|
||||||
"isDownloadJava": false,
|
"isDownloadJava": false,
|
||||||
"isWarningMissArchJava": false,
|
"isWarningMissArchJava": true,
|
||||||
"enabledProGuard": true,
|
"enabledProGuard": true,
|
||||||
"stripLineNumbers": true,
|
"stripLineNumbers": true,
|
||||||
|
"deleteTempFiles": true,
|
||||||
"startScript": ".\\start.sh"
|
"startScript": ".\\start.sh"
|
||||||
}
|
}
|
|
@ -52,7 +52,6 @@ function setCurrentScene(scene) {
|
||||||
rootPane = scene.getRoot();
|
rootPane = scene.getRoot();
|
||||||
dimPane = rootPane.lookup("#mask");
|
dimPane = rootPane.lookup("#mask");
|
||||||
stage.sizeToScene();
|
stage.sizeToScene();
|
||||||
stage.centerOnScreen();
|
|
||||||
stage.show();
|
stage.show();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -15,9 +15,9 @@
|
||||||
|
|
||||||
public class ServerAgent {
|
public class ServerAgent {
|
||||||
private static boolean isAgentStarted = false;
|
private static boolean isAgentStarted = false;
|
||||||
public static Instrumentation inst;
|
public static Instrumentation inst = null;
|
||||||
|
|
||||||
public static final class StarterVisitor extends SimpleFileVisitor<Path> {
|
private static final class StarterVisitor extends SimpleFileVisitor<Path> {
|
||||||
@Override
|
@Override
|
||||||
public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {
|
public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {
|
||||||
if (file.toFile().getName().endsWith(".jar")) addJVMClassPath(new JarFile(file.toFile()));
|
if (file.toFile().getName().endsWith(".jar")) addJVMClassPath(new JarFile(file.toFile()));
|
||||||
|
|
2
modules
2
modules
|
@ -1 +1 @@
|
||||||
Subproject commit ee2f9e6646a8f1972ceda68d56e88e71ab74f78f
|
Subproject commit b582cd6405d45d4478e62ca11045a34378c96d9d
|
Loading…
Reference in a new issue