From: Jim Evins Date: Fri, 3 Sep 2010 16:10:08 +0000 (-0400) Subject: New logo and tweaking of about dialog. X-Git-Tag: glabels-2_3_1~208 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=acadb7b8e069be9c8a95502191771b6466ddaedf;p=glabels New logo and tweaking of about dialog. --- diff --git a/data/pixmaps/Makefile.am b/data/pixmaps/Makefile.am index 2cc5495c..f08962d8 100644 --- a/data/pixmaps/Makefile.am +++ b/data/pixmaps/Makefile.am @@ -3,8 +3,7 @@ glabels_pixmapsdir = $(datadir)/$(GLABELS_BRANCH)/pixmaps glabels_pixmaps_DATA = \ - glabels-splash.png \ - glabels-about-logo.png \ + glabels-logo.png \ new-select.png \ new-rotate.png \ new-confirm.png \ diff --git a/data/pixmaps/glabels-about-logo.png b/data/pixmaps/glabels-about-logo.png deleted file mode 100644 index 9997c67e..00000000 Binary files a/data/pixmaps/glabels-about-logo.png and /dev/null differ diff --git a/data/pixmaps/glabels-logo.png b/data/pixmaps/glabels-logo.png new file mode 100644 index 00000000..2cd0f0eb Binary files /dev/null and b/data/pixmaps/glabels-logo.png differ diff --git a/data/pixmaps/glabels-splash.png b/data/pixmaps/glabels-splash.png deleted file mode 100644 index 713cb8a2..00000000 Binary files a/data/pixmaps/glabels-splash.png and /dev/null differ diff --git a/src/ui-commands.c b/src/ui-commands.c index 89203b91..133fec9f 100644 --- a/src/ui-commands.c +++ b/src/ui-commands.c @@ -1133,6 +1133,9 @@ gl_ui_cmd_help_about (GtkAction *action, "Jim Evins", " ", _("Glabels includes contributions from:"), + "Mario Blättermann", + "Robin Stuart", + "Samual Lown", "Frederic Ruaudel", "Wayne Schuller", "Emmanuel Pacaud", @@ -1142,14 +1145,19 @@ gl_ui_cmd_help_about (GtkAction *action, _("or visit http://glabels.org/"), NULL }; + + const gchar *documenters[] = { + "Jim Evins", + "Mario Blättermann", + NULL + }; const gchar *artists[] = { - "Nestor Di", "Jim Evins", NULL }; - - const gchar *copy_text = "Copyright \xc2\xa9 2001-2009 Jim Evins"; + + const gchar *copy_text = "Copyright \xc2\xa9 2001-2010 Jim Evins"; const gchar *about_text = _("A label and business card creation program.\n"); @@ -1182,23 +1190,24 @@ gl_ui_cmd_help_about (GtkAction *action, } else { - pixbuf_filename = g_build_filename (GLABELS_DATA_DIR, "pixmaps", "glabels-splash.png", NULL); + pixbuf_filename = g_build_filename (GLABELS_DATA_DIR, "pixmaps", "glabels-logo.png", NULL); pixbuf = gdk_pixbuf_new_from_file (pixbuf_filename, NULL); g_free (pixbuf_filename); about = gtk_about_dialog_new (); - gtk_about_dialog_set_program_name (GTK_ABOUT_DIALOG(about), _("glabels")); + gtk_window_set_title (GTK_WINDOW(about), _("About glabels")); + gtk_about_dialog_set_program_name (GTK_ABOUT_DIALOG(about), "glabels"); gtk_about_dialog_set_version (GTK_ABOUT_DIALOG(about), VERSION); gtk_about_dialog_set_copyright (GTK_ABOUT_DIALOG(about), copy_text); gtk_about_dialog_set_comments (GTK_ABOUT_DIALOG(about), about_text); gtk_about_dialog_set_website (GTK_ABOUT_DIALOG(about), url); gtk_about_dialog_set_logo (GTK_ABOUT_DIALOG(about), pixbuf); - gtk_about_dialog_set_authors (GTK_ABOUT_DIALOG(about), authors); - gtk_about_dialog_set_artists (GTK_ABOUT_DIALOG(about), artists); - gtk_about_dialog_set_translator_credits (GTK_ABOUT_DIALOG(about), - translator_credits); - gtk_about_dialog_set_license (GTK_ABOUT_DIALOG(about), license); + gtk_about_dialog_set_authors (GTK_ABOUT_DIALOG(about), authors); + gtk_about_dialog_set_documenters (GTK_ABOUT_DIALOG(about), documenters); + gtk_about_dialog_set_artists (GTK_ABOUT_DIALOG(about), artists); + gtk_about_dialog_set_translator_credits (GTK_ABOUT_DIALOG(about), translator_credits); + gtk_about_dialog_set_license (GTK_ABOUT_DIALOG(about), license); gtk_window_set_destroy_with_parent (GTK_WINDOW (about), TRUE);