From b8963b463ecc6ae721ef29592ac4b739d5d402fa Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sun, 29 Jun 2025 13:54:17 +0700 Subject: [PATCH] Fix Windows CI and minor display tweak --- qt/launcher/src/main.rs | 1 + qt/launcher/src/platform/windows.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/qt/launcher/src/main.rs b/qt/launcher/src/main.rs index 64c0a5776..396b7b0ba 100644 --- a/qt/launcher/src/main.rs +++ b/qt/launcher/src/main.rs @@ -160,6 +160,7 @@ fn run() -> Result<()> { } else { // on Windows/macOS, the user needs to close the terminal/console // currently, but ideas on how we can avoid this would be good! + println!(); println!("Anki will start shortly."); println!("\x1B[1mYou can close this window.\x1B[0m\n"); } diff --git a/qt/launcher/src/platform/windows.rs b/qt/launcher/src/platform/windows.rs index ae22b8907..8a64de9c2 100644 --- a/qt/launcher/src/platform/windows.rs +++ b/qt/launcher/src/platform/windows.rs @@ -100,7 +100,7 @@ pub fn finalize_uninstall() { return; } Err(e) => { - println!("Failed to launch uninstaller: {}", e); + println!("Failed to launch uninstaller: {e}"); println!("You can manually run: {}", path.display()); } }