Skip to content

Commit

Permalink
10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Auties00 committed Dec 9, 2024
1 parent e3f7a1d commit 2046cb1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions gui/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ Future<void> _initWindow() async {
}else {
await windowManager.setAlignment(Alignment.center);
}
await windowManager.setPreventClose(true);

if(isWin11) {
await Window.setEffect(
Expand Down
3 changes: 3 additions & 0 deletions gui/lib/src/page/implementation/home_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,9 @@ class _HomePageState extends State<HomePage> with WindowListener, AutomaticKeepA
await _hostingController.discardServer();
}catch(error) {
log("[HOSTING] Cannot discard server: $error");
}finally {
// Force closing because the backend might be running, but we want the process to exit
exit(0);
}
}

Expand Down
2 changes: 1 addition & 1 deletion gui/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: reboot_launcher
description: Graphical User Interface for Project Reboot
version: "10.0.0"
version: "10.0.1"

publish_to: 'none'

Expand Down

0 comments on commit 2046cb1

Please sign in to comment.