Compare commits

..

No commits in common. "f023b5be116c0b996c1e072ef397f963a1c56ba5" and "72424fb148d16ceee42a63d62ff674d6bd6724e5" have entirely different histories.

2 changed files with 8 additions and 4 deletions

View file

@ -97,14 +97,14 @@ impl BoostcontrollerApplication {
fn show_about(&self) { fn show_about(&self) {
let window = self.active_window().unwrap(); let window = self.active_window().unwrap();
let about = adw::AboutDialog::builder() let about = adw::AboutDialog::builder()
.application_name("Boost Controller") .application_name("boostcontroller")
.application_icon("org.techtransthai.BoostController") .application_icon("org.techtransthai.BoostController")
.developer_name("TechTransThai") .developer_name("Late Night Defender")
.version(VERSION) .version(VERSION)
.developers(vec!["TechTransThai"]) .developers(vec!["Late Night Defender"])
// Translators: Replace "translator-credits" with your name/username, and optionally an email or URL. // Translators: Replace "translator-credits" with your name/username, and optionally an email or URL.
.translator_credits(&gettext("translator-credits")) .translator_credits(&gettext("translator-credits"))
.copyright("© 2024 TechTransThai") .copyright("© 2024 Late Night Defender")
.build(); .build();
about.present(Some(&window)); about.present(Some(&window));

View file

@ -33,6 +33,10 @@
</template> </template>
<menu id="primary_menu"> <menu id="primary_menu">
<section> <section>
<item>
<attribute name="label" translatable="yes">_Preferences</attribute>
<attribute name="action">app.preferences</attribute>
</item>
<item> <item>
<attribute name="label" translatable="yes">_Keyboard Shortcuts</attribute> <attribute name="label" translatable="yes">_Keyboard Shortcuts</attribute>
<attribute name="action">win.show-help-overlay</attribute> <attribute name="action">win.show-help-overlay</attribute>