mirror of
https://github.com/Auties00/Reboot-Launcher.git
synced 2026-01-12 19:02:21 +01:00
Refactored GUI
This commit is contained in:
@@ -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:
|
||||
|
||||
9
gui/dependencies/README.md
Normal file
9
gui/dependencies/README.md
Normal 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.
Binary file not shown.
BIN
gui/dependencies/dlls/sinum.dll
Normal file
BIN
gui/dependencies/dlls/sinum.dll
Normal file
Binary file not shown.
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user