1
1
package com .nexia .installer .util ;
2
2
3
+ import com .nexia .installer .InstallerGUI ;
3
4
import com .nexia .installer .Main ;
4
5
import com .nexia .installer .game .VersionHandler ;
5
6
6
7
import javax .swing .*;
7
- import java .awt .*;
8
8
import java .io .File ;
9
- import java .io .IOException ;
10
9
import java .net .URI ;
11
- import java .net .URISyntaxException ;
12
10
import java .nio .file .Files ;
13
11
import java .nio .file .Path ;
14
12
import java .nio .file .Paths ;
@@ -115,7 +113,7 @@ public static void install(Path mcDir, VersionHandler.GameVersion gameVersion) {
115
113
}).start ();
116
114
}
117
115
118
- private static ProfileInstaller .LauncherType showLauncherTypeSelection () {
116
+ public static ProfileInstaller .LauncherType showLauncherTypeSelection () {
119
117
Object [] options = { Main .BUNDLE .getString ("installer.prompt.launcher.type.xbox" ), Main .BUNDLE .getString ("installer.prompt.launcher.type.win32" )};
120
118
121
119
int result = JOptionPane .showOptionDialog (null ,
@@ -135,7 +133,7 @@ private static ProfileInstaller.LauncherType showLauncherTypeSelection() {
135
133
return result == JOptionPane .YES_OPTION ? ProfileInstaller .LauncherType .MICROSOFT_STORE : ProfileInstaller .LauncherType .WIN32 ;
136
134
}
137
135
138
- private static void showDone (VersionHandler .GameVersion gameVersion ) throws URISyntaxException , IOException {
136
+ private static void showDone (VersionHandler .GameVersion gameVersion ) {
139
137
Object [] options = {"OK" , "Install Fabric" };
140
138
int result = JOptionPane .showOptionDialog (null ,
141
139
MessageFormat .format (Main .BUNDLE .getString ("installer.prompt.install.done" ), gameVersion .getVersion ()),
@@ -147,6 +145,6 @@ private static void showDone(VersionHandler.GameVersion gameVersion) throws URIS
147
145
options [0 ]
148
146
);
149
147
150
- if (result == JOptionPane .NO_OPTION && Desktop . isDesktopSupported () && Desktop . getDesktop (). isSupported ( Desktop . Action . BROWSE )) Desktop . getDesktop (). browse ( new URI ( "https://github.com/rizecookey/ fabric-installer/releases" ) );
148
+ if (result == JOptionPane .NO_OPTION ) InstallerGUI . instance . pane . setSelectedComponent ( InstallerGUI . instance . fabric );
151
149
}
152
150
}
0 commit comments