From ef3809ed25aa2318940c865b0bd6a13bf896b736 Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Tue, 27 Mar 2018 16:53:12 +0300 Subject: [PATCH] Update about dialog. --- hammond-gtk/src/headerbar.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/hammond-gtk/src/headerbar.rs b/hammond-gtk/src/headerbar.rs index 3b5bd50..ba9f55f 100644 --- a/hammond-gtk/src/headerbar.rs +++ b/hammond-gtk/src/headerbar.rs @@ -226,19 +226,20 @@ fn about_dialog(window: >k::Window) { "James Wykeham-Martin", "Jordan Petridis", "Julian Sparber", + "Rowan Lewis", ]; let dialog = gtk::AboutDialog::new(); // Waiting for a logo. // dialog.set_logo_icon_name("org.gnome.Hammond"); 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_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.3"); + dialog.set_version("0.3.1"); dialog.set_program_name("Hammond"); // TODO: Need a wiki page first. // dialog.set_website("https://wiki.gnome.org/Design/Apps/Potential/Podcasts");