Files
cyph3rasi 7c185c9b36 Hide secondary windows until the login UI is painted, open external links in the default browser, and add signed Githop auto-updates
Hop-State: A_06FPJAAEMY0VXGY9S90PE90
Hop-Proposal: R_06FPJA9RY0ZAWJ1K0K760W8
Hop-Task: T_06FPJ5688NFG8VWKSFCTZEG
Hop-Attempt: AT_06FPJ5688M08V2K0PEFVQX0
2026-07-15 21:22:22 -07:00

17 lines
416 B
Rust

fn main() {
tauri_build::try_build(tauri_build::Attributes::new().app_manifest(
tauri_build::AppManifest::new().commands(&[
"connect",
"login",
"register",
"logout",
"has_web_session",
"open_web_app",
"open_login_window",
"open_external_url",
"reveal_window",
]),
))
.unwrap();
}