bump version

This commit is contained in:
Dana Jansens 2007-06-07 22:40:46 +00:00
parent fe59f32c6d
commit 268c13867d
2 changed files with 8 additions and 5 deletions

View file

@ -1,5 +1,5 @@
AC_PREREQ([2.54])
AC_INIT([openbox], [3.4.0], [http://bugzilla.icculus.org])
AC_INIT([openbox], [3.4.1], [http://bugzilla.icculus.org])
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([openbox/openbox.c])
@ -15,9 +15,9 @@ dnl if MAJOR or MINOR version changes, be sure to change AC_INIT above to match
dnl
OB_MAJOR_VERSION=3
OB_MINOR_VERSION=4
OB_MICRO_VERSION=13
OB_INTERFACE_AGE=0
OB_BINARY_AGE=1
OB_MICRO_VERSION=14
OB_INTERFACE_AGE=1
OB_BINARY_AGE=2
OB_VERSION=$OB_MAJOR_VERSION.$OB_MINOR_VERSION
AC_SUBST(OB_MAJOR_VERSION)

View file

@ -723,6 +723,7 @@ static void event_handle_root(XEvent *e)
} else if (msgtype == prop_atoms.net_showing_desktop) {
screen_show_desktop(e->xclient.data.l[0] != 0, NULL);
} else if (msgtype == prop_atoms.ob_control) {
ob_debug("OB_CONTROL: %d\n", e->xclient.data.l[0]);
if (e->xclient.data.l[0] == 1)
ob_reconfigure();
else if (e->xclient.data.l[0] == 2)
@ -730,8 +731,10 @@ static void event_handle_root(XEvent *e)
}
break;
case PropertyNotify:
if (e->xproperty.atom == prop_atoms.net_desktop_names)
if (e->xproperty.atom == prop_atoms.net_desktop_names) {
ob_debug("UPDATE DESKTOP NAMES\n");
screen_update_desktop_names();
}
else if (e->xproperty.atom == prop_atoms.net_desktop_layout)
screen_update_layout();
break;