diff --git a/ChangeLog b/ChangeLog index d9ce132575..09d15ed79a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-01-12 Sven Neumann + + * app/about.h (GIMP_COPYRIGHT): updated copyright. + + * app/main.c: use application name as summary in the help output. + 2007-01-12 Sven Neumann * plug-ins/common/mail.c: use the base64 encoder from glib. diff --git a/app/about.h b/app/about.h index 83a9dc1cf5..c28d85bff2 100644 --- a/app/about.h +++ b/app/about.h @@ -27,7 +27,7 @@ _("GNU Image Manipulation Program") #define GIMP_COPYRIGHT \ - _("Copyright © 1995-2006\n" \ + _("Copyright © 1995-2007\n" \ "Spencer Kimball, Peter Mattis and the GIMP Development Team") #define GIMP_LICENSE \ diff --git a/app/main.c b/app/main.c index 5926365b51..7b3c7fd4f9 100644 --- a/app/main.c +++ b/app/main.c @@ -290,6 +290,8 @@ main (int argc, #endif context = g_option_context_new (_("[FILE|URI...]")); + g_option_context_set_summary (context, GIMP_NAME); + g_option_context_add_main_entries (context, main_entries, GETTEXT_PACKAGE); app_libs_init (context, no_interface);