commit afb93e5a856d96e46f090ba1fd0a099d270a8522 parent 1c6c3e7c3c64ded0bb28a75507c8855296eaede1 Author: MTRNord <mtrnord1@gmail.com> Date: Mon, 11 Nov 2024 22:05:11 +0100 Fix desktop file and about page Diffstat:
| M | data/dev.nordgedanken.heic2jpg.desktop.in.in | | | 1 | - |
| M | src/modals/about.rs | | | 14 | +++++--------- |
2 files changed, 5 insertions(+), 10 deletions(-)
diff --git a/data/dev.nordgedanken.heic2jpg.desktop.in.in b/data/dev.nordgedanken.heic2jpg.desktop.in.in @@ -10,5 +10,4 @@ Keywords=Gnome;GTK; # TRANSLATORS: Do NOT translate or transliterate this text (this is an icon file name)! Icon=@icon@ StartupNotify=true -DBusActivatable=true X-GNOME-UsesNotifications=true diff --git a/src/modals/about.rs b/src/modals/about.rs @@ -15,17 +15,13 @@ impl SimpleComponent for AboutDialog { fn init_root() -> Self::Root { adw::AboutWindow::builder() .application_icon(APP_ID) - // Insert your license of choice here - // .license_type(gtk::License::MitX11) - // Insert your website here - // .website("https://gitlab.gnome.org/bilelmoussaoui/heic2jpg/") - // Insert your Issues page - // .issue_url("https://gitlab.gnome.org/World/Rust/heic2jpg/-/issues") - // Insert your application name here - .application_name("Relm4-template") + .license_type(gtk::License::Agpl30) + .website("https://github.com/MTRNord/heic2jpg") + .issue_url("https://github.com/MTRNord/heic2jpg/issues") + .application_name("Heic2JPG") .version(VERSION) .translator_credits("translator-credits") - .copyright("© 2023 MTRNord") + .copyright("© 2024 MTRNord") .developers(vec!["MTRNord"]) .designers(vec!["MTRNord"]) .hide_on_close(true)