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
|
||||
|
||||
## 3.2.3.8
|
||||
- Remove ATLauncher from the classpath when launching Minecraft
|
||||
## 3.2.3.9
|
||||
- Fix issues installing some libraries on OSX
|
||||
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -6,7 +6,7 @@
|
|||
<groupId>com.atlauncher</groupId>
|
||||
<artifactId>atlauncher</artifactId>
|
||||
<name>ATLauncher</name>
|
||||
<version>3.2.3.8</version>
|
||||
<version>3.2.3.9</version>
|
||||
<organization>
|
||||
<name>ATLauncher</name>
|
||||
<url>http://www.github.com/ATLauncher/</url>
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
package com.atlauncher.data;
|
||||
|
||||
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 API_BASE_URL = "https://api.atlauncher.com/v1/launcher/";
|
||||
public static final String PASTE_CHECK_URL = "http://paste.atlauncher.com";
|
||||
|
|
|
@ -71,7 +71,7 @@ public class Library {
|
|||
}
|
||||
|
||||
public String getClassifier() {
|
||||
if (this.natives == null) {
|
||||
if (this.natives == null || !this.natives.containsKey(OperatingSystem.getOS())) {
|
||||
return "";
|
||||
}
|
||||
return "-" + this.natives.get(OperatingSystem.getOS()).replace("${arch}", Utils.getArch());
|
||||
|
|
Loading…
Reference in a new issue