This commit is contained in:
parent
e8ddaeca81
commit
ae5e9fe74c
@ -1,4 +1,7 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
**1.0.1**
|
||||||
|
* Add Wrapping To Conflict Dialog
|
||||||
|
|
||||||
**1.0.0**
|
**1.0.0**
|
||||||
* Initial Release
|
* Initial Release
|
@ -10,7 +10,7 @@ org.gradle.jvmargs = -Xmx1G
|
|||||||
fabric_loader_version = 0.9.0+build.204
|
fabric_loader_version = 0.9.0+build.204
|
||||||
|
|
||||||
# Mod Properties
|
# Mod Properties
|
||||||
mod_version = 1.0.0
|
mod_version = 1.0.1
|
||||||
maven_group = com.thebrokenrail
|
maven_group = com.thebrokenrail
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
|
@ -49,9 +49,9 @@ public class FreshCoffee implements PreLaunchEntrypoint {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ExtractUtil.extract(url, dir);
|
ExtractUtil.extract(url, dir);
|
||||||
}
|
|
||||||
|
|
||||||
ReLaunchUtil.reLaunch();
|
ReLaunchUtil.reLaunch();
|
||||||
|
}
|
||||||
|
|
||||||
System.exit(1);
|
System.exit(1);
|
||||||
} else {
|
} else {
|
||||||
|
@ -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_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 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).";
|
||||||
}
|
}
|
||||||
|
@ -40,6 +40,6 @@ public class ServerDialog implements Dialog {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void showErrorDialog(String message) {
|
public void showErrorDialog(String message) {
|
||||||
Util.getLogger().error(message);
|
Util.getLogger().error(message.replaceAll("\n", " "));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user