Skip to content

Commit 951016e

Browse files
committed
woahh
- change combat test 8 to archive.org link - improve error showing to user - make install location and button not change sizes when moving tabs
1 parent e344203 commit 951016e

File tree

6 files changed

+27
-25
lines changed

6 files changed

+27
-25
lines changed

src/main/java/com/nexia/installer/game/VersionHandler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class VersionHandler {
1010

1111
public static GameVersion CombatTest8b = new GameVersion("Combat Test 8b", "1.16_combat-5", new Download("9b2b984d635d373564b50803807225c75d7fd447", "https://launcher.mojang.com/experiments/combat/9b2b984d635d373564b50803807225c75d7fd447/1_16_combat-5.zip"));
1212

13-
public static GameVersion CombatTest8 = new GameVersion("Combat Test 8", "1.16_combat-4", new Download("b4306b421183bd084b2831bd8d33a5db05ae9f9c", "https://notcoded.needs.rest/r/1_16_combat-4.zip"));
13+
public static GameVersion CombatTest8 = new GameVersion("Combat Test 8", "1.16_combat-4", new Download("b4306b421183bd084b2831bd8d33a5db05ae9f9c", "https://archive.org/download/1-16-combat-4_202404/1_16_combat-4.zip"));
1414

1515
public static GameVersion CombatTest7c = new GameVersion("Combat Test 7c", "1.16_combat-3", new Download("2557b99d95588505e988886220779087d7d6b1e9", "https://piston-data.mojang.com/experiments/combat/2557b99d95588505e988886220779087d7d6b1e9/1_16_combat-3.zip"));
1616

src/main/java/com/nexia/installer/util/InstallerHelper.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,8 @@ public JPanel setPanel(InstallerGUI gui) {
5757
buttonInstall.setEnabled(false);
5858
try {
5959
launch();
60-
} catch (IOException | RuntimeException ex) {
61-
InstallerUtils.showError(ex.getMessage());
62-
ex.printStackTrace();
60+
} catch (Exception ex) {
61+
InstallerUtils.showError(ex);
6362
}
6463
});
6564

src/main/java/com/nexia/installer/util/InstallerUtils.java

+12-9
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@
77
import javax.swing.*;
88
import java.io.File;
99
import java.net.URI;
10-
import java.nio.file.Files;
11-
import java.nio.file.Path;
12-
import java.nio.file.Paths;
13-
import java.nio.file.StandardCopyOption;
10+
import java.nio.file.*;
1411
import java.text.MessageFormat;
1512
import java.util.List;
1613

@@ -31,10 +28,10 @@ public static Path findDefaultInstallDir() {
3128

3229
if (Main.os.equals(Main.OS.LINUX) && !Files.exists(dir)) {
3330
// https://github.com/flathub/com.mojang.Minecraft
34-
final Path flatpack = homeDir.resolve(".var").resolve("app").resolve("com.mojang.Minecraft").resolve(".minecraft");
31+
final Path flatpak = homeDir.resolve(".var").resolve("app").resolve("com.mojang.Minecraft").resolve(".minecraft");
3532

36-
if (Files.exists(flatpack)) {
37-
dir = flatpack;
33+
if (Files.exists(flatpak)) {
34+
dir = flatpak;
3835
}
3936
}
4037
}
@@ -92,6 +89,7 @@ public static void install(Path mcDir, VersionHandler.GameVersion gameVersion) {
9289

9390
Files.copy(aProfileJson, profileJson, StandardCopyOption.REPLACE_EXISTING);
9491

92+
//System.out.println(Utils.sha1String(zipFile.toPath()).equalsIgnoreCase(gameVersion.getDownload().sha1));
9593

9694
aProfileJson.toFile().delete();
9795
aProfileDir.toFile().delete();
@@ -106,7 +104,7 @@ public static void install(Path mcDir, VersionHandler.GameVersion gameVersion) {
106104
}
107105
showDone(gameVersion);
108106
} catch (Exception e) {
109-
e.printStackTrace();
107+
InstallerUtils.showError(e);
110108
} finally {
111109
InstallerHelper.buttonInstall.setEnabled(true);
112110
}
@@ -133,10 +131,15 @@ public static ProfileInstaller.LauncherType showLauncherTypeSelection() {
133131
return result == JOptionPane.YES_OPTION ? ProfileInstaller.LauncherType.MICROSOFT_STORE : ProfileInstaller.LauncherType.WIN32;
134132
}
135133

134+
public static void showError(Throwable throwable) {
135+
throwable.printStackTrace();
136+
showError(throwable.getClass().getSimpleName() + ": " + throwable.getMessage());
137+
}
138+
136139
public static void showError(String error) {
137140
Object[] options = {"Restart Program"};
138141
int result = JOptionPane.showOptionDialog(null,
139-
error,
142+
Main.BUNDLE.getString("installer.prompt.install.error") + "\n\n" + error,
140143
Main.BUNDLE.getString("installer.title"),
141144
JOptionPane.OK_CANCEL_OPTION,
142145
JOptionPane.ERROR_MESSAGE,

src/main/java/com/nexia/installer/util/Utils.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,7 @@ public static void downloadFile(URL url, Path path) {
6969
t.addSuppressed(t2);
7070
}
7171

72-
InstallerUtils.showError(t.getMessage());
73-
t.printStackTrace();
72+
InstallerUtils.showError(t);
7473
}
7574
}
7675

src/main/java/com/nexia/installer/util/fabric/FabricInstallerHelper.java

+10-9
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22

33
import com.nexia.installer.InstallerGUI;
44
import com.nexia.installer.Main;
5-
import com.nexia.installer.util.*;
5+
import com.nexia.installer.util.HttpAPI;
6+
import com.nexia.installer.util.InstallerHelper;
7+
import com.nexia.installer.util.InstallerUtils;
8+
import com.nexia.installer.util.Utils;
69
import mjson.Json;
710

811
import javax.swing.*;
@@ -18,7 +21,6 @@
1821
import java.nio.file.Path;
1922
import java.nio.file.Paths;
2023
import java.text.MessageFormat;
21-
import java.util.List;
2224
import java.util.Objects;
2325

2426
public class FabricInstallerHelper extends InstallerHelper {
@@ -50,7 +52,7 @@ public JPanel setPanel(InstallerGUI gui) {
5052
}
5153

5254
addRow(panel, c, "installer.prompt.select.location",
53-
installLocation = new JTextField(20),
55+
installLocation = new JTextField(21),
5456
selectFolderButton = new JButton());
5557
selectFolderButton.setText("...");
5658
// It looks better when the width is set to height, so.....
@@ -68,9 +70,8 @@ public JPanel setPanel(InstallerGUI gui) {
6870
buttonInstall.setEnabled(false);
6971
try {
7072
launch();
71-
} catch (IOException | RuntimeException ex) {
72-
InstallerUtils.showError(ex.getMessage());
73-
ex.printStackTrace();
73+
} catch (Exception ex) {
74+
InstallerUtils.showError(ex);
7475
}
7576
});
7677

@@ -129,13 +130,13 @@ public void launch() throws IOException {
129130
if (successBufferedInputStream.available() == 0) hasError = true;
130131

131132
if(hasError) {
132-
InstallerUtils.showError(Main.BUNDLE.getString("installer.prompt.install.error"));
133+
InstallerUtils.showError("The Fabric installer has had an unknown error.");
133134
} else {
134135
this.showDone(gameVersion);
135136
}
136137

137-
} catch (Exception ignored) {
138-
InstallerUtils.showError(Main.BUNDLE.getString("installer.prompt.install.error"));
138+
} catch (Exception e) {
139+
InstallerUtils.showError(e);
139140
}
140141

141142
buttonInstall.setEnabled(true);

src/main/resources/lang/installer.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ installer.prompt.launcher.type.win32=Standalone (Win32)
1111
installer.title=Combat Test Installer
1212
installer.option.create.profile=Create profile
1313

14-
installer.prompt.install.error=An error has occurred, click "OK" to restart the program or click "Cancel" to continue.
14+
installer.prompt.install.error=An error has occurred, click "Restart Program" to restart the program.\nIt would be appreciated if you sent a screenshot of this error to the developers.
1515

1616
installer.button.fabric=Open the Fabric Installer
1717
installer.tab.vanilla=Vanilla

0 commit comments

Comments
 (0)