Skip to content
This repository was archived by the owner on Feb 10, 2022. It is now read-only.

Commit 8bd827c

Browse files
committed
A few more fixes
1 parent dc6fbdf commit 8bd827c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

bootstrap/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ launch4j {
2222
icon = "C:/Users/iLexiconn/Git/mmd-launcher/bootstrap/src/main/resources/icon.ico"
2323
copyConfigurable = project.tasks.shadowJar.outputs.files
2424
jar = "lib/${project.tasks.shadowJar.archiveName}"
25-
outfile = "Revival Launcher.exe"
26-
companyName = "iLexiconn"
25+
outfile = "MMD Launcher.exe"
26+
companyName = "Minecraft Mod Development"
2727
fileDescription = "Bootstrap for the MMD Launcher"
2828
windowTitle = "Bootstrap"
2929
}

launcher/src/main/java/com/mcmoddev/launcher/Launcher.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ private void init(boolean portable) {
5656
this.configFile = new File(this.dataDir, "launcher.json");
5757
this.cacheDir = new File(this.dataDir, "cache");
5858
this.modsDir = new File(this.dataDir, "mods");
59-
this.coreModsDir = new File(this.modsDir, "1.10.2");
59+
this.coreModsDir = new File(this.modsDir, "1.12.2");
6060
this.configDir = new File(this.dataDir, "config");
6161

6262
if (!this.dataDir.exists()) {
@@ -190,7 +190,7 @@ public void startMinecraft(PasswordSupplier passwordSupplier, final IProgressCal
190190

191191
final LaunchTask task = new LaunchTaskBuilder()
192192
.setCachesDir(this.cacheDir.toPath())
193-
.setForgeVersion("1.10.2", "1.10.2-12.18.1.2071")
193+
.setForgeVersion("1.12.2", "1.12.2-14.23.2.2625")
194194
.setInstanceDir(this.dataDir.toPath())
195195
.setUsername(this.config.get("username").getAsString())
196196
.setPasswordSupplier(passwordSupplier)

launcher/src/main/java/com/mcmoddev/launcher/ui/LauncherFrame.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public LauncherFrame() {
2626
e.printStackTrace();
2727
}
2828

29-
this.setTitle("Revival Launcher");
29+
this.setTitle("MMD Launcher");
3030
this.setIconImage(Launcher.INSTANCE.resourceLoader.loadImage(LauncherFrame.LOGO));
3131
this.setSize(854, 480);
3232
this.setResizable(false);

0 commit comments

Comments
 (0)