Merge branch 'release/3.2.3.9'

This commit is contained in:
Ryan Dowling 2017-08-17 20:11:21 +10:00
commit 355bab55f9
4 changed files with 5 additions and 5 deletions

View file

@ -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

View file

@ -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>

View file

@ -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";

View file

@ -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());