fix: use Windows GUI subsystem

This commit is contained in:
2026-07-11 05:20:03 -04:00
parent 8976fba9d0
commit 07b558eb0a
2 changed files with 4 additions and 1 deletions
+2 -1
View File
@@ -104,7 +104,8 @@ Real and verified:
preserves the selected scheme. Verified with real Servo media-query pixels. preserves the selected scheme. Verified with real Servo media-query pixels.
- Cross-platform: download Open/Reveal use per-OS launchers (macOS `open`, - Cross-platform: download Open/Reveal use per-OS launchers (macOS `open`,
Windows `cmd start`/`explorer /select`, Linux `xdg-open`); the command Windows `cmd start`/`explorer /select`, Linux `xdg-open`); the command
overlay closes on Escape. overlay closes on Escape. The Windows app binary uses the GUI PE subsystem,
so release launches do not open a companion console window.
Deferred deliberately (do NOT fake; ship with their subsystem): Deferred deliberately (do NOT fake; ship with their subsystem):
- Updates settings page — returns with a real updater. - Updates settings page — returns with a real updater.
+2
View File
@@ -1,3 +1,5 @@
#![cfg_attr(windows, windows_subsystem = "windows")]
mod brand; mod brand;
mod services; mod services;
mod shell; mod shell;