Update about dialog.

This commit is contained in:
Jordan Petridis 2018-03-27 16:53:12 +03:00
parent f5ddb7107e
commit ef3809ed25
No known key found for this signature in database
GPG Key ID: CEABAD9F5683B9A6

View File

@ -226,19 +226,20 @@ fn about_dialog(window: &gtk::Window) {
"James Wykeham-Martin", "James Wykeham-Martin",
"Jordan Petridis", "Jordan Petridis",
"Julian Sparber", "Julian Sparber",
"Rowan Lewis",
]; ];
let dialog = gtk::AboutDialog::new(); let dialog = gtk::AboutDialog::new();
// Waiting for a logo. // Waiting for a logo.
// dialog.set_logo_icon_name("org.gnome.Hammond"); // dialog.set_logo_icon_name("org.gnome.Hammond");
dialog.set_logo_icon_name("multimedia-player"); dialog.set_logo_icon_name("multimedia-player");
dialog.set_comments("A Podcast Client for the GNOME Desktop."); dialog.set_comments("Podcast Client for the GNOME Desktop.");
dialog.set_copyright("© 2017, 2018 Jordan Petridis"); dialog.set_copyright("© 2017, 2018 Jordan Petridis");
dialog.set_license_type(gtk::License::Gpl30); dialog.set_license_type(gtk::License::Gpl30);
dialog.set_modal(true); dialog.set_modal(true);
// TODO: make it show it fetches the commit hash from which it was built // TODO: make it show it fetches the commit hash from which it was built
// and the version number is kept in sync automaticly // and the version number is kept in sync automaticly
dialog.set_version("0.3"); dialog.set_version("0.3.1");
dialog.set_program_name("Hammond"); dialog.set_program_name("Hammond");
// TODO: Need a wiki page first. // TODO: Need a wiki page first.
// dialog.set_website("https://wiki.gnome.org/Design/Apps/Potential/Podcasts"); // dialog.set_website("https://wiki.gnome.org/Design/Apps/Potential/Podcasts");