bump version
This commit is contained in:
parent
fe59f32c6d
commit
268c13867d
2 changed files with 8 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
||||||
AC_PREREQ([2.54])
|
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
|
AM_INIT_AUTOMAKE
|
||||||
AC_CONFIG_SRCDIR([openbox/openbox.c])
|
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
|
dnl
|
||||||
OB_MAJOR_VERSION=3
|
OB_MAJOR_VERSION=3
|
||||||
OB_MINOR_VERSION=4
|
OB_MINOR_VERSION=4
|
||||||
OB_MICRO_VERSION=13
|
OB_MICRO_VERSION=14
|
||||||
OB_INTERFACE_AGE=0
|
OB_INTERFACE_AGE=1
|
||||||
OB_BINARY_AGE=1
|
OB_BINARY_AGE=2
|
||||||
OB_VERSION=$OB_MAJOR_VERSION.$OB_MINOR_VERSION
|
OB_VERSION=$OB_MAJOR_VERSION.$OB_MINOR_VERSION
|
||||||
|
|
||||||
AC_SUBST(OB_MAJOR_VERSION)
|
AC_SUBST(OB_MAJOR_VERSION)
|
||||||
|
|
|
@ -723,6 +723,7 @@ static void event_handle_root(XEvent *e)
|
||||||
} else if (msgtype == prop_atoms.net_showing_desktop) {
|
} else if (msgtype == prop_atoms.net_showing_desktop) {
|
||||||
screen_show_desktop(e->xclient.data.l[0] != 0, NULL);
|
screen_show_desktop(e->xclient.data.l[0] != 0, NULL);
|
||||||
} else if (msgtype == prop_atoms.ob_control) {
|
} 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)
|
if (e->xclient.data.l[0] == 1)
|
||||||
ob_reconfigure();
|
ob_reconfigure();
|
||||||
else if (e->xclient.data.l[0] == 2)
|
else if (e->xclient.data.l[0] == 2)
|
||||||
|
@ -730,8 +731,10 @@ static void event_handle_root(XEvent *e)
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case PropertyNotify:
|
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();
|
screen_update_desktop_names();
|
||||||
|
}
|
||||||
else if (e->xproperty.atom == prop_atoms.net_desktop_layout)
|
else if (e->xproperty.atom == prop_atoms.net_desktop_layout)
|
||||||
screen_update_layout();
|
screen_update_layout();
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue