7
7
import javax .swing .*;
8
8
import java .io .File ;
9
9
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 .*;
14
11
import java .text .MessageFormat ;
15
12
import java .util .List ;
16
13
@@ -31,10 +28,10 @@ public static Path findDefaultInstallDir() {
31
28
32
29
if (Main .os .equals (Main .OS .LINUX ) && !Files .exists (dir )) {
33
30
// 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" );
35
32
36
- if (Files .exists (flatpack )) {
37
- dir = flatpack ;
33
+ if (Files .exists (flatpak )) {
34
+ dir = flatpak ;
38
35
}
39
36
}
40
37
}
@@ -92,6 +89,7 @@ public static void install(Path mcDir, VersionHandler.GameVersion gameVersion) {
92
89
93
90
Files .copy (aProfileJson , profileJson , StandardCopyOption .REPLACE_EXISTING );
94
91
92
+ //System.out.println(Utils.sha1String(zipFile.toPath()).equalsIgnoreCase(gameVersion.getDownload().sha1));
95
93
96
94
aProfileJson .toFile ().delete ();
97
95
aProfileDir .toFile ().delete ();
@@ -106,7 +104,7 @@ public static void install(Path mcDir, VersionHandler.GameVersion gameVersion) {
106
104
}
107
105
showDone (gameVersion );
108
106
} catch (Exception e ) {
109
- e . printStackTrace ( );
107
+ InstallerUtils . showError ( e );
110
108
} finally {
111
109
InstallerHelper .buttonInstall .setEnabled (true );
112
110
}
@@ -133,10 +131,15 @@ public static ProfileInstaller.LauncherType showLauncherTypeSelection() {
133
131
return result == JOptionPane .YES_OPTION ? ProfileInstaller .LauncherType .MICROSOFT_STORE : ProfileInstaller .LauncherType .WIN32 ;
134
132
}
135
133
134
+ public static void showError (Throwable throwable ) {
135
+ throwable .printStackTrace ();
136
+ showError (throwable .getClass ().getSimpleName () + ": " + throwable .getMessage ());
137
+ }
138
+
136
139
public static void showError (String error ) {
137
140
Object [] options = {"Restart Program" };
138
141
int result = JOptionPane .showOptionDialog (null ,
139
- error ,
142
+ Main . BUNDLE . getString ( "installer.prompt.install.error" ) + " \n \n " + error ,
140
143
Main .BUNDLE .getString ("installer.title" ),
141
144
JOptionPane .OK_CANCEL_OPTION ,
142
145
JOptionPane .ERROR_MESSAGE ,
0 commit comments