all repos — openbox @ 268c13867de4d2524aba020a27487d3092b10cfe

openbox fork - make it a bit more like ryudo

bump version
Dana Jansens danakj@orodu.net
commit

268c13867de4d2524aba020a27487d3092b10cfe

parent

fe59f32c6d66404313ca4879717f7c9bd7dbcf90

2 files changed, 8 insertions(+), 5 deletions(-)

jump to
M configure.acconfigure.ac

@@ -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)
M openbox/event.copenbox/event.c

@@ -723,6 +723,7 @@ screen_set_num_desktops(d);

} 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 @@ ob_restart();

} 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;