This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project wmaker-crm.git.
The branch, next has been updated
via 416f5986856040881f4fef59c1170833f049e37f (commit)
via 1f905694f3417c7d4ac62495c6ca042970c20b2a (commit)
from 7c5277527d95d0bfad43798a6880a6344909af91 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://repo.or.cz/w/wmaker-crm.git/commit/416f5986856040881f4fef59c1170833f049e37f
commit 416f5986856040881f4fef59c1170833f049e37f
Author: David Maciejak <[email protected]>
Date: Fri Sep 19 11:47:36 2014 +0700
util: create custom GNUSTEP dir if needed
This patch is creating the missing custom GNUSTEP dir.
Patch found on vinelinux.org as WindowMaker-0.95.6-GSDIR.patch.
diff --git a/util/wmaker.inst.in b/util/wmaker.inst.in
index 632c112c..ad2a9a84 100644
--- a/util/wmaker.inst.in
+++ b/util/wmaker.inst.in
@@ -111,8 +111,12 @@ if test "x$GNUSTEP_USER_ROOT" = "x"; then
else
GSDIR="$GNUSTEP_USER_ROOT"
if [ ! -d "$GSDIR" ]; then
+ # in this case, and in this case only, mkdir needs -p option
+ mkdir -p $GSDIR || {
echo "Directory specified in GNUSTEP_USER_ROOT environment
variable does not exist"
exit 1
+ }
+ chmod +rwx $GSDIR || exit 1
fi
cd "$GSDIR"
cd ..
http://repo.or.cz/w/wmaker-crm.git/commit/1f905694f3417c7d4ac62495c6ca042970c20b2a
commit 1f905694f3417c7d4ac62495c6ca042970c20b2a
Author: David Maciejak <[email protected]>
Date: Fri Sep 19 11:51:08 2014 +0700
wmaker: add clip mouse wheel action to change workspace
This patch is adding mouse wheel action on clip to switch from
one workspace to another. It's a modified version of the vinelinux.org
(WindowMaker-0.95.6-wheel.diff) which was setting the action on the entire
dock.
diff --git a/src/dock.c b/src/dock.c
index e8372807..21f34ad6 100644
--- a/src/dock.c
+++ b/src/dock.c
@@ -4020,6 +4020,10 @@ static void iconMouseDown(WObjDescriptor *desc, XEvent
*event)
if (!btn->launching && (!btn->running || (event->xbutton.state
& ControlMask)))
launchDockedApplication(btn, True);
+ } else if (event->xbutton.button == Button4 && dock->type == WM_CLIP) {
+ wWorkspaceRelativeChange(scr, 1);
+ } else if (event->xbutton.button == Button5 && dock->type == WM_CLIP) {
+ wWorkspaceRelativeChange(scr, -1);
}
}
-----------------------------------------------------------------------
Summary of changes:
src/dock.c | 4 ++++
util/wmaker.inst.in | 4 ++++
2 files changed, 8 insertions(+), 0 deletions(-)
repo.or.cz automatic notification. Contact project admin [email protected]
if you want to unsubscribe, or site admin [email protected] if you receive
no reply.
--
wmaker-crm.git ("The Window Maker window manager")
--
To unsubscribe, send mail to [email protected].