You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log("[PROCESS] Starting process on ${executable.path} with $args (useTempBatch: $useTempBatch, window: $window, name: $name, environment: $environment)");
108
110
final argsOrEmpty = args ?? [];
111
+
final workingDirectory =_getWorkingDirectory(executable);
109
112
if(useTempBatch) {
110
113
final tempScriptDirectory =await tempDirectory.createTemp("reboot_launcher_process");
111
-
final tempScriptFile =File("${tempScriptDirectory.path}/process.bat");
114
+
final tempScriptFile =File("${tempScriptDirectory.path}\\process.bat");
_ExtendedProcess_withLogger(String? name, File executable, Process process, bool window) {
136
-
final extendedProcess =_ExtendedProcess(process, true);
137
-
final loggingFile =File("${logsDirectory.path}\\${name ?? path.basenameWithoutExtension(executable.path)}-${DateTime.now().millisecondsSinceEpoch}.log");
"settingsUtilsResetDefaultsSubtitle": "Resets the launcher's settings to their default values",
120
120
"settingsUtilsDialogTitle": "Do you want to reset all the setting in this tab to their default values? This action is irreversible",
121
-
"settingsUtilsResetDefaultsContent": "Reset",
122
121
"settingsUtilsDialogSecondaryAction": "Close",
123
-
"settingsUtilsDialogPrimaryAction": "Reset",
124
122
"selectFortniteName": "Fortnite version",
125
123
"selectFortniteDescription": "Select the version of Fortnite you want to use",
126
124
"manageVersionsName": "Manage versions",
@@ -156,6 +154,7 @@
156
154
"launchingGameClientAndServer": "Launching the game client and server...",
157
155
"startGameServer": "Start a game server",
158
156
"usernameOrEmail": "Username/Email",
157
+
"invalidEmail": "Invalid email",
159
158
"usernameOrEmailPlaceholder": "Type your username or email",
160
159
"password": "Password",
161
160
"passwordPlaceholder": "Type your password, if you want to use one",
@@ -261,6 +260,7 @@
261
260
"missingCustomDllError": "The custom {dll}.dll doesn't exist: check your settings",
262
261
"tokenError": "Cannot log in into Fortnite: authentication error (injected dlls: {dlls})",
263
262
"unknownFortniteError": "An unknown error occurred while launching Fortnite: {error}",
263
+
"fortniteCrashError": "The {name} crashed after being launched",
264
264
"serverNoLongerAvailableUnnamed": "The previous server is no longer available",
265
265
"noServerFound": "No server found: invalid or expired link",
266
266
"settingsUtilsThemeName": "Theme",
@@ -320,6 +320,7 @@
320
320
"none": "none",
321
321
"openLog": "Open log",
322
322
"backendProcessError": "The backend shut down unexpectedly",
323
+
"backendErrorMessage": "The backend reported an unexpected error",
323
324
"welcomeTitle": "Welcome to Reboot Launcher",
324
325
"welcomeDescription": "If you have never used a Fortnite game server, or this launcher in particular, please click on take a tour\nPlease don't ask for support on Discord without taking the tour: this helps me prioritize real bugs\nYou can always take the tour again in the Info tab",
325
326
"welcomeAction": "Take the tour",
@@ -363,5 +364,8 @@
363
364
"promptSettingsTabActionLabel": "Done",
364
365
"automaticGameServerDialogContent": "The launcher detected that you are not running a game server, but that your matchmaker is set to your local machine. If you don't want to join another player's server, you should start a game server. This is necessary to be able to play!",
365
366
"automaticGameServerDialogIgnore": "Ignore",
366
-
"automaticGameServerDialogStart": "Start server"
367
+
"automaticGameServerDialogStart": "Start server",
368
+
"gameResetDefaultsName": "Reset",
369
+
"gameResetDefaultsDescription": "Resets the game's settings to their default values",
0 commit comments