mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-04 15:31:53 +03:00
Name fixes.
This commit is contained in:
parent
d0d92fcf86
commit
d559025241
3 changed files with 9 additions and 5 deletions
|
@ -357,7 +357,6 @@ public LaunchServer(Path dir) throws IOException, InvalidKeySpecException {
|
||||||
CommandHandler localCommandHandler;
|
CommandHandler localCommandHandler;
|
||||||
try {
|
try {
|
||||||
Class.forName("jline.Terminal");
|
Class.forName("jline.Terminal");
|
||||||
|
|
||||||
// JLine2 available
|
// JLine2 available
|
||||||
localCommandHandler = new JLineCommandHandler(this);
|
localCommandHandler = new JLineCommandHandler(this);
|
||||||
LogHelper.info("JLine2 terminal enabled");
|
LogHelper.info("JLine2 terminal enabled");
|
||||||
|
@ -379,7 +378,8 @@ public LaunchServer(Path dir) throws IOException, InvalidKeySpecException {
|
||||||
KeyPair pair = SecurityHelper.genRSAKeyPair();
|
KeyPair pair = SecurityHelper.genRSAKeyPair();
|
||||||
publicKey = (RSAPublicKey) pair.getPublic();
|
publicKey = (RSAPublicKey) pair.getPublic();
|
||||||
privateKey = (RSAPrivateKey) pair.getPrivate();
|
privateKey = (RSAPrivateKey) pair.getPrivate();
|
||||||
|
Files.deleteIfExists(publicKeyFile);
|
||||||
|
Files.deleteIfExists(privateKeyFile);
|
||||||
// Write key pair files
|
// Write key pair files
|
||||||
LogHelper.info("Writing RSA keypair files");
|
LogHelper.info("Writing RSA keypair files");
|
||||||
IOHelper.write(publicKeyFile, publicKey.getEncoded());
|
IOHelper.write(publicKeyFile, publicKey.getEncoded());
|
||||||
|
@ -447,7 +447,11 @@ public LaunchServer(Path dir) throws IOException, InvalidKeySpecException {
|
||||||
}
|
}
|
||||||
|
|
||||||
private LauncherBinary binary() {
|
private LauncherBinary binary() {
|
||||||
if (config.launch4j.enabled) return new EXEL4JLauncherBinary(this);
|
try {
|
||||||
|
Class.forName("net.sf.launch4j.Builder");
|
||||||
|
if (config.launch4j.enabled) return new EXEL4JLauncherBinary(this);
|
||||||
|
} catch (ClassNotFoundException ignored) {
|
||||||
|
}
|
||||||
return new EXELauncherBinary(this);
|
return new EXELauncherBinary(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -41,7 +41,7 @@ public ProguardConf(LaunchServer srv) {
|
||||||
confStrs.add("-printmapping \'" + mappings.toFile().getName() + "\'");
|
confStrs.add("-printmapping \'" + mappings.toFile().getName() + "\'");
|
||||||
confStrs.add("-obfuscationdictionary \'" + words.toFile().getName() + "\'");
|
confStrs.add("-obfuscationdictionary \'" + words.toFile().getName() + "\'");
|
||||||
confStrs.add("-injar \'" + srv.dir.toAbsolutePath() + IOHelper.PLATFORM_SEPARATOR + srv.config.binaryName + "-nonObf.jar\'");
|
confStrs.add("-injar \'" + srv.dir.toAbsolutePath() + IOHelper.PLATFORM_SEPARATOR + srv.config.binaryName + "-nonObf.jar\'");
|
||||||
confStrs.add("-outjar \'" + srv.dir.toAbsolutePath() + IOHelper.PLATFORM_SEPARATOR + srv.config.binaryName + "-obfed.jar\'");
|
confStrs.add("-outjar \'" + srv.dir.toAbsolutePath() + IOHelper.PLATFORM_SEPARATOR + srv.config.binaryName + "-obfPre.jar\'");
|
||||||
confStrs.add("-classobfuscationdictionary \'" + words.toFile().getName() + "\'");
|
confStrs.add("-classobfuscationdictionary \'" + words.toFile().getName() + "\'");
|
||||||
confStrs.add(readConf());
|
confStrs.add(readConf());
|
||||||
|
|
||||||
|
|
|
@ -127,7 +127,7 @@ public JARLauncherBinary(LaunchServer server) throws IOException {
|
||||||
runtimeDir = server.dir.resolve(Launcher.RUNTIME_DIR);
|
runtimeDir = server.dir.resolve(Launcher.RUNTIME_DIR);
|
||||||
guardDir = server.dir.resolve(Launcher.GUARD_DIR);
|
guardDir = server.dir.resolve(Launcher.GUARD_DIR);
|
||||||
initScriptFile = runtimeDir.resolve(Launcher.INIT_SCRIPT_FILE);
|
initScriptFile = runtimeDir.resolve(Launcher.INIT_SCRIPT_FILE);
|
||||||
obfJar = server.dir.resolve(server.config.binaryName + "-obfed.jar");
|
obfJar = server.dir.resolve(server.config.binaryName + "-obfPre.jar");
|
||||||
obfOutJar = server.config.buildPostTransform.enabled ? server.dir.resolve(server.config.binaryName + "-obf.jar")
|
obfOutJar = server.config.buildPostTransform.enabled ? server.dir.resolve(server.config.binaryName + "-obf.jar")
|
||||||
: syncBinaryFile;
|
: syncBinaryFile;
|
||||||
cleanJar = server.dir.resolve(server.config.binaryName + "-clean.jar");
|
cleanJar = server.dir.resolve(server.config.binaryName + "-clean.jar");
|
||||||
|
|
Loading…
Reference in a new issue