Merge branch 'release/3.2.3.9'
This commit is contained in:
commit
355bab55f9
4 changed files with 5 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 3.2.3.8
|
## 3.2.3.9
|
||||||
- Remove ATLauncher from the classpath when launching Minecraft
|
- Fix issues installing some libraries on OSX
|
||||||
|
|
||||||
|
|
2
pom.xml
2
pom.xml
|
@ -6,7 +6,7 @@
|
||||||
<groupId>com.atlauncher</groupId>
|
<groupId>com.atlauncher</groupId>
|
||||||
<artifactId>atlauncher</artifactId>
|
<artifactId>atlauncher</artifactId>
|
||||||
<name>ATLauncher</name>
|
<name>ATLauncher</name>
|
||||||
<version>3.2.3.8</version>
|
<version>3.2.3.9</version>
|
||||||
<organization>
|
<organization>
|
||||||
<name>ATLauncher</name>
|
<name>ATLauncher</name>
|
||||||
<url>http://www.github.com/ATLauncher/</url>
|
<url>http://www.github.com/ATLauncher/</url>
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
package com.atlauncher.data;
|
package com.atlauncher.data;
|
||||||
|
|
||||||
public class Constants {
|
public class Constants {
|
||||||
public static final LauncherVersion VERSION = new LauncherVersion(3, 2, 3, 8);
|
public static final LauncherVersion VERSION = new LauncherVersion(3, 2, 3, 9);
|
||||||
public static final String LAUNCHER_NAME = "ATLauncher";
|
public static final String LAUNCHER_NAME = "ATLauncher";
|
||||||
public static final String API_BASE_URL = "https://api.atlauncher.com/v1/launcher/";
|
public static final String API_BASE_URL = "https://api.atlauncher.com/v1/launcher/";
|
||||||
public static final String PASTE_CHECK_URL = "http://paste.atlauncher.com";
|
public static final String PASTE_CHECK_URL = "http://paste.atlauncher.com";
|
||||||
|
|
|
@ -71,7 +71,7 @@ public class Library {
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getClassifier() {
|
public String getClassifier() {
|
||||||
if (this.natives == null) {
|
if (this.natives == null || !this.natives.containsKey(OperatingSystem.getOS())) {
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
return "-" + this.natives.get(OperatingSystem.getOS()).replace("${arch}", Utils.getArch());
|
return "-" + this.natives.get(OperatingSystem.getOS()).replace("${arch}", Utils.getArch());
|
||||||
|
|
Loading…
Reference in a new issue