From: Thomas Thurman Date: Sun, 30 Aug 2009 21:46:50 +0000 (-0400) Subject: fix up credits page X-Git-Url: https://vcs.maemo.org/git/?p=belltower;a=commitdiff_plain;h=cccb8c494d800d777d4dcafbe9721629dcfb9d35 fix up credits page --- diff --git a/TODO b/TODO index c86bf78..ebb8ae0 100644 --- a/TODO +++ b/TODO @@ -1,5 +1,4 @@ * Sharp and flat signs -* Add my name to the credits list -* Switch names in the buttons in the credits list around ("view..." should be subtext) +* Mappings (so "Beds" -> "Bedfordshire") * Download Dove automatically diff --git a/belltower.c b/belltower.c index b7b2dcb..61163cf 100644 --- a/belltower.c +++ b/belltower.c @@ -1245,18 +1245,28 @@ show_credits (GtkButton *source, button = hildon_button_new_with_text (HILDON_SIZE_AUTO_WIDTH | HILDON_SIZE_FINGER_HEIGHT, HILDON_BUTTON_ARRANGEMENT_VERTICAL, - "View the GNU General Public Licence", - "This program is provided under the GPL, with no warranty."); + "Welcome to Belltower. The program is \xc2\xa9 2009 Thomas Thurman.", + "View the program's home page."); g_signal_connect (button, "clicked", G_CALLBACK (show_web_page), - "www.gnu.org/copyleft/gpl.html"); + "http://belltower.garage.maemo.org"); gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), button, TRUE, TRUE, 0); button = hildon_button_new_with_text (HILDON_SIZE_AUTO_WIDTH | HILDON_SIZE_FINGER_HEIGHT, HILDON_BUTTON_ARRANGEMENT_VERTICAL, - "View Dove's Guide for Church Bell Ringers", - "The source of this program's data."); + "This program is provided under the GNU GPL, with no warranty.", + "View the GNU General Public Licence."); + g_signal_connect (button, "clicked", G_CALLBACK (show_web_page), + "http://www.gnu.org/copyleft/gpl.html"); + gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), + button, + TRUE, TRUE, 0); + + button = hildon_button_new_with_text (HILDON_SIZE_AUTO_WIDTH | HILDON_SIZE_FINGER_HEIGHT, + HILDON_BUTTON_ARRANGEMENT_VERTICAL, + "The data comes from Dove's Guide for Church Bell Ringers.", + "View Dove's Guide."); g_signal_connect (button, "clicked", G_CALLBACK (show_web_page), "http://dove.cccbr.org.uk"); gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), @@ -1265,8 +1275,8 @@ show_credits (GtkButton *source, button = hildon_button_new_with_text (HILDON_SIZE_AUTO_WIDTH | HILDON_SIZE_FINGER_HEIGHT, HILDON_BUTTON_ARRANGEMENT_VERTICAL, - "View belfry photograph", - "Image \xc2\xa9 Amanda Slater, cc-by-sa."); + "The belfry image is \xc2\xa9 Amanda Slater, cc-by-sa.", + "View the original photograph."); g_signal_connect (button, "clicked", G_CALLBACK (show_web_page), "http://www.flickr.com/photos/pikerslanefarm/3398769335/"); gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox),