mirror of
https://github.com/Auties00/Reboot-Launcher.git
synced 2026-01-13 19:22:22 +01:00
<feat: New release>
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
import 'dart:convert';
|
||||
import 'dart:math';
|
||||
import 'dart:typed_data';
|
||||
|
||||
import 'package:bcrypt/bcrypt.dart';
|
||||
import 'package:pointycastle/export.dart';
|
||||
import 'dart:convert';
|
||||
|
||||
const int _ivLength = 16;
|
||||
const int _keyLength = 32;
|
||||
|
||||
3
gui/lib/src/util/tutorial.dart
Normal file
3
gui/lib/src/util/tutorial.dart
Normal file
@@ -0,0 +1,3 @@
|
||||
import 'package:url_launcher/url_launcher.dart';
|
||||
|
||||
Future<void> openPortTutorial() => launchUrl(Uri.parse("https://github.com/Auties00/reboot_launcher/blob/master/documentation/PortForwarding.md"));
|
||||
@@ -28,7 +28,7 @@ extension GameInstanceWatcher on GameInstance {
|
||||
observerPid = await startBackgroundProcess(
|
||||
executable: _executable,
|
||||
args: [
|
||||
_gameController.uuid,
|
||||
_hostingController.uuid,
|
||||
gamePid.toString(),
|
||||
launcherPid?.toString() ?? "-1",
|
||||
eacPid?.toString() ?? "-1",
|
||||
@@ -50,6 +50,6 @@ extension GameInstanceWatcher on GameInstance {
|
||||
_hostingController.instance.value?.kill();
|
||||
await _supabase.from('hosts')
|
||||
.delete()
|
||||
.match({'id': _gameController.uuid});
|
||||
.match({'id': _hostingController.uuid});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user