[Xfce4-commits] r26568 - xfce4-panel/trunk

Jannis Pohlmann jannis at xfce.org
Mon Jan 14 02:09:44 CET 2008


Author: jannis
Date: 2008-01-14 01:09:43 +0000 (Mon, 14 Jan 2008)
New Revision: 26568

Modified:
   xfce4-panel/trunk/ChangeLog
   xfce4-panel/trunk/configure.in.in
Log:
	* configure.in.in: Fix debugging support for SVN snapshots. Until now
	  the default setting never was applied.
	* libxfce4panel/xfce-panel-plugin-iface.c,
	  panel/panel-properties.c: To prevent panel items from increasing the
	  panel size, set the height of the XfceItembar instead of setting the
	  size specifically for all items.
	* libxfce4panel/xfce-panel-plugin-iface.c: Allow attach_widget to be
	  NULL in call to xfce_panel_plugin_position_widget() and fix up the
	  API documentation. Patch by Diego Ongaro and a few bits from me.
	* plugins/windowlist/windowlist.c: fix for popup menu at pointer
	  position. Another patch by Diego.
	* libxfce4panel/*, docs/API/*: Remove the html and xml directories,
	  those are generated by gtk-doc, 100% symbol coverage and improve
	  the layout of the chapters.
	* plugins/clock/clock-digital.c: Allow markup and center the string.
	* plugins/clock/*: Move the localtime functions into 1 util and allow
	  usage without locatime_r.
	* plugins/clock/clock-lcd.c: Typo, the 8 was test code.
	* plugins/clock/*: Import code.
	* NEWS: update.
	* Configure.in.in: Bump GTK dependency to 2.8.0 and add cairo as
	  new dependency.
	* po/*: Merge new strings.
	* libxfce4panel/xfce-panel-macros.h: Add macros to disable debugging for
	  release builds. 
 

Modified: xfce4-panel/trunk/ChangeLog
===================================================================
--- xfce4-panel/trunk/ChangeLog	2008-01-14 00:47:17 UTC (rev 26567)
+++ xfce4-panel/trunk/ChangeLog	2008-01-14 01:09:43 UTC (rev 26568)
@@ -1,14 +1,19 @@
+2008-01-14 02:08 jannis
+
+	* configure.in.in: Fix debugging support for SVN snapshots. Until now
+	  the default setting never was applied.
+
 2007-10-01 21:21 jasper
 
-        * libxfce4panel/xfce-panel-plugin-iface.c,
-          panel/panel-properties.c: To prevent panel items from increasing the
-          panel size, set the height of the XfceItembar instead of setting the
-          size specifically for all items.
-        * libxfce4panel/xfce-panel-plugin-iface.c: Allow attach_widget to be
-          NULL in call to xfce_panel_plugin_position_widget() and fix up the
-          API documentation. Patch by Diego Ongaro and a few bits from me.
-        * plugins/windowlist/windowlist.c: fix for popup menu at pointer
-          position. Another patch by Diego.
+	* libxfce4panel/xfce-panel-plugin-iface.c,
+	  panel/panel-properties.c: To prevent panel items from increasing the
+	  panel size, set the height of the XfceItembar instead of setting the
+	  size specifically for all items.
+	* libxfce4panel/xfce-panel-plugin-iface.c: Allow attach_widget to be
+	  NULL in call to xfce_panel_plugin_position_widget() and fix up the
+	  API documentation. Patch by Diego Ongaro and a few bits from me.
+	* plugins/windowlist/windowlist.c: fix for popup menu at pointer
+	  position. Another patch by Diego.
 
 2007-09-30 20:14 jasper
 
@@ -38,27 +43,27 @@
 
 2007-07-09 22:45 nick
 
-    	* libxfce4panel/*, docs/API/*: Remove the html and xml directories,
-      	  those are generated by gtk-doc, 100% symbol coverage and improve
-      	  the layout of the chapters.
+	* libxfce4panel/*, docs/API/*: Remove the html and xml directories,
+	  those are generated by gtk-doc, 100% symbol coverage and improve
+	  the layout of the chapters.
 
 2007-07-08 12:00 nick
 
-    	* plugins/clock/clock-digital.c: Allow markup and center the string.
-    	* plugins/clock/*: Move the localtime functions into 1 util and allow
-      	  usage without locatime_r.
+	* plugins/clock/clock-digital.c: Allow markup and center the string.
+	* plugins/clock/*: Move the localtime functions into 1 util and allow
+	  usage without locatime_r.
 
 2007-07-07 10:32 nick
 
-   	* plugins/clock/clock-lcd.c: Typo, the 8 was test code.
+	* plugins/clock/clock-lcd.c: Typo, the 8 was test code.
 
 2007-07-06 10:50 nick
 
-    	* plugins/clock/*: Import code.
-    	* NEWS: update.
-    	* Configure.in.in: Bump GTK dependency to 2.8.0 and add cairo as
-      	  new dependency.
-    	* po/*: Merge new strings.
+	* plugins/clock/*: Import code.
+	* NEWS: update.
+	* Configure.in.in: Bump GTK dependency to 2.8.0 and add cairo as
+	  new dependency.
+	* po/*: Merge new strings.
 
 2007-05-27 10:50 nick
 
@@ -113,8 +118,8 @@
 2007-03-18 15:23 nick
 
 	* libxfce4panel: Add visibility support to reduce the library size a bit.
-        * libxfce4panel/xfce-panel-macros.h: Add macros to disable debugging for
-          release builds.
+	* libxfce4panel/xfce-panel-macros.h: Add macros to disable debugging for
+	  release builds.
 	* Various code cleanups and improvements.
 
 2007-03-18 11:40 nick

Modified: xfce4-panel/trunk/configure.in.in
===================================================================
--- xfce4-panel/trunk/configure.in.in	2008-01-14 00:47:17 UTC (rev 26567)
+++ xfce4-panel/trunk/configure.in.in	2008-01-14 01:09:43 UTC (rev 26568)
@@ -22,7 +22,7 @@
 dnl *******************************************
 dnl *** Debugging support for SVN snapshots ***
 dnl *******************************************
-m4_define([panel_debug_default], [ifelse(panel_version_tag(), [svn], [yes], [minimum])])
+m4_define([panel_debug_default], [ifelse(xfce4_panel_version_tag(), [svn], [yes], [minimum])])
 
 dnl ***************************
 dnl *** Initialize autoconf ***



More information about the Xfce4-commits mailing list