[Goodies-commits] r6099 - in xfce4-dict/trunk: . src

Enrico Troeger enrico at xfce.org
Fri Nov 14 19:36:35 CET 2008


Author: enrico
Date: 2008-11-14 18:36:35 +0000 (Fri, 14 Nov 2008)
New Revision: 6099

Modified:
   xfce4-dict/trunk/ChangeLog
   xfce4-dict/trunk/configure.in.in
   xfce4-dict/trunk/src/xfce4-dict.c
Log:
Change bugreport address and rewrite the output of '--version'.

Modified: xfce4-dict/trunk/ChangeLog
===================================================================
--- xfce4-dict/trunk/ChangeLog	2008-11-14 17:09:18 UTC (rev 6098)
+++ xfce4-dict/trunk/ChangeLog	2008-11-14 18:36:35 UTC (rev 6099)
@@ -1,3 +1,8 @@
+2008-11-14  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
+
+ * Change bugreport address and rewrite the output of '--version'.
+
+
 2008-11-11  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
 
  * Add a 'Search' menu item to the textview popup menu for quick search

Modified: xfce4-dict/trunk/configure.in.in
===================================================================
--- xfce4-dict/trunk/configure.in.in	2008-11-14 17:09:18 UTC (rev 6098)
+++ xfce4-dict/trunk/configure.in.in	2008-11-14 18:36:35 UTC (rev 6099)
@@ -7,7 +7,7 @@
 m4_define([dict_version], [0.5.0])
 
 dnl init autoconf
-AC_INIT([xfce4-dict], [dict_version], [goodies-dev at xfce.org])
+AC_INIT([xfce4-dict], [dict_version], [http://bugzilla.xfce.org/])
 AC_PREREQ([2.50])
 
 dnl init automake

Modified: xfce4-dict/trunk/src/xfce4-dict.c
===================================================================
--- xfce4-dict/trunk/src/xfce4-dict.c	2008-11-14 17:09:18 UTC (rev 6098)
+++ xfce4-dict/trunk/src/xfce4-dict.c	2008-11-14 18:36:35 UTC (rev 6099)
@@ -139,13 +139,13 @@
 
 	if (show_version)
 	{
-		printf(PACKAGE " " VERSION " ");
-		printf(_("(built on %s with GTK %d.%d.%d, GLib %d.%d.%d)"),
-				__DATE__, GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION,
-				GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION);
-		printf("\n");
+		g_print("%s %s (Xfce %s)\n\n", PACKAGE, PACKAGE_VERSION, xfce_version_string());
+		g_print("%s\n", "Copyright (c) 2006-2008");
+		g_print("\tEnrico Tröger <enrico at xfce.org>\n\n");
+		g_print(_("Please report bugs to <%s>."), PACKAGE_BUGREPORT);
+		g_print("\n");
 
-		exit(0);
+		return EXIT_SUCCESS;
 	}
 
 	flags = get_flags();




More information about the Goodies-commits mailing list