From cfbff7f35cfa654c5d466be0a521e0faeef3802c Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Thu, 20 Nov 2025 13:46:01 -0300 Subject: [PATCH] Update branding to General Bots for log and title --- src/main.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index cdc3ce32b..f6481bb9e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -471,7 +471,7 @@ async fn main() -> std::io::Result<()> { // Give the server thread a moment to start std::thread::sleep(std::time::Duration::from_millis(500)); - info!("Launching Tauri desktop application..."); + info!("Launching General Bots desktop application..."); // Run Tauri on main thread (GUI requires main thread) let tauri_app = tauri::Builder::default() @@ -482,6 +482,7 @@ async fn main() -> std::io::Result<()> { "main", tauri::WebviewUrl::App("index.html".into()), ) + .title("General Bots") .build() { Ok(_window) => Ok(()), @@ -493,7 +494,7 @@ async fn main() -> std::io::Result<()> { } }) .build(tauri::generate_context!()) - .expect("error while running tauri application"); + .expect("error while running Desktop application"); tauri_app.run(|_app_handle, event| match event { tauri::RunEvent::ExitRequested { api, .. } => {