From e23ea0cf005605b3d7d4f8f04198682444bc057a Mon Sep 17 00:00:00 2001 From: Late Night Defender Date: Thu, 24 Oct 2024 01:28:32 +0700 Subject: [PATCH] Update About Window --- src/application.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/application.rs b/src/application.rs index 467fcdc..d266180 100644 --- a/src/application.rs +++ b/src/application.rs @@ -97,14 +97,14 @@ impl BoostcontrollerApplication { fn show_about(&self) { let window = self.active_window().unwrap(); let about = adw::AboutDialog::builder() - .application_name("boostcontroller") + .application_name("Boost Controller") .application_icon("org.techtransthai.BoostController") - .developer_name("Late Night Defender") + .developer_name("TechTransThai") .version(VERSION) - .developers(vec!["Late Night Defender"]) + .developers(vec!["TechTransThai"]) // Translators: Replace "translator-credits" with your name/username, and optionally an email or URL. .translator_credits(&gettext("translator-credits")) - .copyright("© 2024 Late Night Defender") + .copyright("© 2024 TechTransThai") .build(); about.present(Some(&window));