diff options
author | Nick Schermer <nick@xfce.org> | 2011-01-30 17:27:54 +0100 |
---|---|---|
committer | Nick Schermer <nick@xfce.org> | 2011-01-30 17:28:17 +0100 |
commit | e8b5b84371bc9f5f5f09f8665b9bf3855b618387 (patch) | |
tree | ea59ec0d5449c4a6291b4b52b9f77be8b83a2fa4 | |
parent | ee0924e491cb5eb17851fde5763d60d888d712fd (diff) |
Updates for release.xfce4-panel-4.8.1
-rw-r--r-- | NEWS | 27 | ||||
-rw-r--r-- | configure.ac.in | 4 |
2 files changed, 29 insertions, 2 deletions
@@ -1,3 +1,30 @@ +4.8.1 +===== +- Make the panels sticky for some window managers (bug #7130). +- Fix assert when storing property values in xfconf (bug #7117). +- Migrate monitor information (bug #7135). +- Cache launcher menu tooltip pixbuf (bug #7146). +- Reverse menu item insert order (bug #7102). +- Set and restore a unique role name for windows (bug #7094). +- Don't return a critical on a NULL dbus session. +- Allocate 1x1 requests offscreen in the systray (bug #7143 and #7057). +- Popup window menu under cursor on window button group menus. +- Directly start the panel on the correct screen (bug #7161). +- Move the panel menu to the correct screen (bug #7203). +- Fix dragging panels to another screen. +- Open plugin dialogs on same screen as plugin. +- Sync hidden window and panel screen. +- Show launcher add dialog on the same screen as parent. +- Fix autohide direction based on orientation and edge. +- Deactivate menu button if loading menu failed. +- Don't double expose the panel's child widget (bug #6872). +- Remove unneeded check (bug #7149). +- Don't disappear when wm restarts with compositing (bug #7194). +- Properly update the plugin background when moving to other panel. +- Unset visible event window in 4.6 plugins. +- Various small code cleanups and improved debug messages. +- Translation updates (eu, fr, ja, lt, sv). + 4.8.0 ===== - Restart tray allocation if number of rows overflows (bug #7055). diff --git a/configure.ac.in b/configure.ac.in index 9529bd26..8bee5ce0 100644 --- a/configure.ac.in +++ b/configure.ac.in @@ -12,10 +12,10 @@ m4_define([libxfce4panel_verinfo], [3:0:0]) dnl current:revision:age m4_define([libxfce4panel_version_api], [1.0]) m4_define([xfce4_panel_version_major], [4]) m4_define([xfce4_panel_version_minor], [8]) -m4_define([xfce4_panel_version_micro], [0]) +m4_define([xfce4_panel_version_micro], [1]) m4_define([xfce4_panel_version_nano], []) dnl leave this empty to have no nano version m4_define([xfce4_panel_version_build], [@REVISION@]) -m4_define([xfce4_panel_version_tag], [git]) +m4_define([xfce4_panel_version_tag], []) m4_define([xfce4_panel_version], [xfce4_panel_version_major().xfce4_panel_version_minor().xfce4_panel_version_micro()ifelse(xfce4_panel_version_nano(), [], [], [.xfce4_panel_version_nano()])ifelse(xfce4_panel_version_tag(), [git], [xfce4_panel_version_tag()-xfce4_panel_version_build()], [xfce4_panel_version_tag()])]) dnl ******************************************* |