Skip to content

Commit 3cdad23

Browse files
committed
errors get shown now
1 parent efe491c commit 3cdad23

File tree

5 files changed

+34
-32
lines changed

5 files changed

+34
-32
lines changed

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

+3-2
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,9 @@ public JPanel setPanel(InstallerGUI gui) {
5656
buttonInstall.setEnabled(false);
5757
try {
5858
launch();
59-
} catch (IOException ex) {
60-
throw new RuntimeException(ex);
59+
} catch (IOException | RuntimeException ex) {
60+
InstallerUtils.showError(ex.getMessage());
61+
ex.printStackTrace();
6162
}
6263
});
6364

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

+23
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,29 @@ public static ProfileInstaller.LauncherType showLauncherTypeSelection() {
133133
return result == JOptionPane.YES_OPTION ? ProfileInstaller.LauncherType.MICROSOFT_STORE : ProfileInstaller.LauncherType.WIN32;
134134
}
135135

136+
public static void showError(String error) {
137+
Object[] options = {"Restart Program"};
138+
int result = JOptionPane.showOptionDialog(null,
139+
error,
140+
Main.BUNDLE.getString("installer.title"),
141+
JOptionPane.OK_CANCEL_OPTION,
142+
JOptionPane.ERROR_MESSAGE,
143+
null,
144+
options,
145+
options[0]
146+
);
147+
148+
if(result == JOptionPane.OK_OPTION) {
149+
try {
150+
InstallerGUI.instance.dispose();
151+
Main.main(new String[]{});
152+
} catch (Exception ignored) {
153+
System.exit(0);
154+
}
155+
}
156+
157+
}
158+
136159
private static void showDone(VersionHandler.GameVersion gameVersion) {
137160
Object[] options = {"OK", "Install Fabric"};
138161
int result = JOptionPane.showOptionDialog(null,

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public static String getProfileIcon() {
136136

137137
return "data:image/png;base64," + Base64.getEncoder().encodeToString(Arrays.copyOf(ret, offset));
138138
} catch (IOException e) {
139-
return "furnace"; // Fallback to furnace icon if we cant load Nexia icon.
139+
return "furnace"; // Fallback to default icon if we cant load the icon.
140140
}
141141
}
142142
}

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

+6-29
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,9 @@ public JPanel setPanel(InstallerGUI gui) {
6464
buttonInstall.setEnabled(false);
6565
try {
6666
launch();
67-
} catch (IOException ex) {
68-
throw new RuntimeException(ex);
67+
} catch (IOException | RuntimeException ex) {
68+
InstallerUtils.showError(ex.getMessage());
69+
ex.printStackTrace();
6970
}
7071
});
7172

@@ -124,13 +125,13 @@ public void launch() throws IOException {
124125
if (successBufferedInputStream.available() == 0) hasError = true;
125126

126127
if(hasError) {
127-
this.error();
128+
InstallerUtils.showError(Main.BUNDLE.getString("installer.prompt.install.error"));
128129
} else {
129130
this.showDone(gameVersion);
130131
}
131132

132133
} catch (Exception ignored) {
133-
this.error();
134+
InstallerUtils.showError(Main.BUNDLE.getString("installer.prompt.install.error"));
134135
}
135136

136137
buttonInstall.setEnabled(true);
@@ -170,7 +171,7 @@ private File getJarFile() throws IOException {
170171

171172
private String getFabricVersion() {
172173

173-
String version = "0.11.1";
174+
String version = "0.11.2";
174175

175176
try {
176177
String response = HttpAPI.get("https://api.github.com/repos/rizecookey/fabric-installer/releases/latest");
@@ -197,29 +198,5 @@ private void showDone(FabricVersionHandler.GameVersion gameVersion) {
197198

198199
if(result == JOptionPane.NO_OPTION) InstallerGUI.instance.pane.setSelectedComponent(InstallerGUI.instance.vanilla);
199200
}
200-
201-
private void error() {
202-
Object[] options = {"OK", "Cancel"};
203-
int result = JOptionPane.showOptionDialog(null,
204-
MessageFormat.format(Main.BUNDLE.getString("installer.prompt.install.error"), ""),
205-
Main.BUNDLE.getString("installer.title"),
206-
JOptionPane.OK_CANCEL_OPTION,
207-
JOptionPane.ERROR_MESSAGE,
208-
null,
209-
options,
210-
options[0]
211-
);
212-
213-
if(result == JOptionPane.OK_OPTION) {
214-
try {
215-
InstallerGUI.instance.dispose();
216-
Main.main(new String[]{});
217-
} catch (Exception ignored) {
218-
System.exit(0);
219-
}
220-
}
221-
222-
buttonInstall.setEnabled(true);
223-
}
224201
}
225202

src/main/resources/lang/installer.properties

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ installer.button.install=Install
44
installer.prompt.install.done={0} has been installed, if you want to install fabric then click on the "Install Fabric" button.
55
installer.prompt.install.done.fabric={0} has been installed, if you want to install vanilla then click on the "Install Vanilla" button.
66
installer.exception.no.launcher.directory=No launcher directory found!
7+
installer.exception.no.launcher.profile=No launcher profile.json found!
78
installer.prompt.launcher.type.body=The Combat Test Installer has detected 2 different installations of the Minecraft Launcher, which launcher do you wish to install the Combat Tests to?\n\n- Select Microsoft Store if you are playing Minecraft through the Xbox App or the Windows Store.\n- Select Standalone if you downloaded the Minecraft launcher directly from the Minecraft.net website.\n\nIf you are unsure try the Microsoft Store option first, you can always re-run the installer.
89
installer.prompt.launcher.type.xbox=Microsoft Store / Xbox
910
installer.prompt.launcher.type.win32=Standalone (Win32)

0 commit comments

Comments
 (0)