Browse Source

* 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. 
 

(Old svn revision: 26568)
upstream/xfce4-panel-4.10.1
Jannis Pohlmann 15 years ago
parent
commit
aa5a5c6381
  1. 51
      ChangeLog
  2. 2
      configure.in.in

51
ChangeLog

@ -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

2
configure.in.in

@ -22,7 +22,7 @@ m4_define([xfce4_panel_version], [xfce4_panel_version_major().xfce4_panel_versio
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 ***

Loading…
Cancel
Save