Refactored GUI

This commit is contained in:
Alessandro Autiero
2025-08-11 22:53:11 +01:00
parent c9ed6a5af3
commit d53a577f0b
6 changed files with 11 additions and 7 deletions

View File

@@ -19,11 +19,6 @@ const String kRebootBelowS20DownloadUrl =
const String kRebootAboveS20DownloadUrl =
"https://nightly.link/Milxnor/Project-Reboot-3.0/workflows/msbuild/master/RebootS20.zip";
const String _kRebootBelowS20FallbackDownloadUrl =
"https://github.com/Auties00/reboot_launcher/raw/master/gui/dependencies/dlls/RebootFallback.zip";
const String _kRebootAboveS20FallbackDownloadUrl =
"https://github.com/Auties00/reboot_launcher/raw/master/gui/dependencies/dlls/RebootS20Fallback.zip";
const String kStopBuildDownloadSignal = "kill";
final int _ariaPort = 6800;
@@ -487,7 +482,7 @@ Future<bool> downloadDependency(GameDll dll, String outputPath) async {
case GameDll.console:
name = "console.dll";
case GameDll.auth:
name = "cobalt.dll";
name = "sinum.dll";
case GameDll.memoryLeak:
name = "memory.dll";
case GameDll.gameServer:

View File

@@ -0,0 +1,9 @@
# Dependencies
This folder contains DLLs the launcher needs to wor.
- cobalt.dll - old auth redirect
- console.dll - unlocks Unreal Engine console
- memory.dll - prevents memory leaks in some Fortnite versions (this is caused by a Fortnite bug)
- sinum.dll - new auth redirect
- starfall.dll - another auth redirect
- VC_redist.x64.exe - latest version of Visual C++ Redistributable

Binary file not shown.

View File

@@ -206,7 +206,7 @@ class DllController extends GetxController {
case GameDll.console:
return "${dllsDirectory.path}\\console.dll";
case GameDll.auth:
return "${dllsDirectory.path}\\cobalt.dll";
return "${dllsDirectory.path}\\sinum.dll";
case GameDll.gameServer:
return "${dllsDirectory.path}\\reboot.dll";
case GameDll.memoryLeak: