1.0.1
FreshCoffee/pipeline/head This commit looks good Details

This commit is contained in:
TheBrokenRail 2020-08-22 23:27:37 -04:00
parent e8ddaeca81
commit ae5e9fe74c
5 changed files with 8 additions and 5 deletions

View File

@ -1,4 +1,7 @@
# Changelog
**1.0.1**
* Add Wrapping To Conflict Dialog
**1.0.0**
* Initial Release

View File

@ -10,7 +10,7 @@ org.gradle.jvmargs = -Xmx1G
fabric_loader_version = 0.9.0+build.204
# Mod Properties
mod_version = 1.0.0
mod_version = 1.0.1
maven_group = com.thebrokenrail
# Dependencies

View File

@ -49,9 +49,9 @@ public class FreshCoffee implements PreLaunchEntrypoint {
}
ExtractUtil.extract(url, dir);
}
ReLaunchUtil.reLaunch();
ReLaunchUtil.reLaunch();
}
System.exit(1);
} else {

View File

@ -19,5 +19,5 @@ public final class HardcodedConfig {
public static final String OUTDATED_JAVA_MESSAGE = "An installed mod requires a newer version of Java (%s).";
public static final String OUTDATED_JAVA_WITH_OFFER_MESSAGE = OUTDATED_JAVA_MESSAGE + " Would you like to install it?\n%s will be downloaded.";
public static final String MINIMUM_HIGHER_THAN_MAXIMUM_MESSAGE = "The minimum required version of Java (%s) is greater than maximum allowed version of Java (%s).";
public static final String MINIMUM_HIGHER_THAN_MAXIMUM_MESSAGE = "The minimum required version of Java (%s) is greater\nthan the maximum allowed version of Java (%s).";
}

View File

@ -40,6 +40,6 @@ public class ServerDialog implements Dialog {
@Override
public void showErrorDialog(String message) {
Util.getLogger().error(message);
Util.getLogger().error(message.replaceAll("\n", " "));
}
}