47 lines
1.6 KiB
Rust
47 lines
1.6 KiB
Rust
use app::APP_ID;
|
|
use gtk;
|
|
use gtk::prelude::*;
|
|
|
|
use i18n::i18n;
|
|
|
|
// Totally copied it from fractal.
|
|
// https://gitlab.gnome.org/danigm/fractal/blob/503e311e22b9d7540089d735b92af8e8f93560c5/fractal-gtk/src/app.rs#L1883-1912
|
|
/// Given a `window` create and attach an `gtk::AboutDialog` to it.
|
|
pub(crate) fn about_dialog(window: >k::ApplicationWindow) {
|
|
// Feel free to add yourself if you contribured.
|
|
let authors = &[
|
|
"Carlos Soriano",
|
|
"Constantin Nickel",
|
|
"Gabriele Musco",
|
|
"Ivan Augusto",
|
|
"James Wykeham-Martin",
|
|
"Jordan Petridis",
|
|
"Julian Sparber",
|
|
"Rowan Lewis",
|
|
"Zander Brown",
|
|
];
|
|
|
|
let dialog = gtk::AboutDialog::new();
|
|
dialog.set_logo_icon_name(APP_ID);
|
|
dialog.set_comments(i18n("Podcast Client for the GNOME Desktop.").as_str());
|
|
dialog.set_copyright(i18n("© 2017, 2018 Jordan Petridis").as_str());
|
|
dialog.set_license_type(gtk::License::Gpl30);
|
|
dialog.set_modal(true);
|
|
// TODO: make it show it fetches the commit hash from which it was built
|
|
// and the version number is kept in sync automaticly
|
|
dialog.set_version("0.4.4");
|
|
dialog.set_program_name(&i18n("Podcasts"));
|
|
// TODO: Need a wiki page first.
|
|
// dialog.set_website("https://wiki.gnome.org/Design/Apps/Potential/Podcasts");
|
|
// dialog.set_website_label("Learn more about GNOME Podcasts");
|
|
dialog.set_transient_for(window);
|
|
|
|
dialog.set_artists(&["Tobias Bernard", "Sam Hewitt"]);
|
|
dialog.set_authors(authors);
|
|
dialog.set_translator_credits(i18n("translator-credits").as_str());
|
|
|
|
dialog.connect_response(|dlg, _| dlg.destroy());
|
|
|
|
dialog.show();
|
|
}
|