cwm (7.1-1)
[PTS] [DDPO]
COMMITS: VCS has seen 18 commits since the debian/6.7-1 tag
- Git: https://github.com/jamesmcdonald/cwm.git
-
- Branch: debian
- Path: debian/changelog
- Repo size: 434176
- Browser: https://github.com/jamesmcdonald/cwm
- Last scan: 2024-10-12 16:01:03+00
- Next scan: 2024-10-13 16:45:00+00
- Debian changelog in Git:
cwm (7.1-1) unstable; urgency=medium
* Import upstream 7.1 sources
* Update packaging for 7.1
* Update standards version to 4.6.1.0
-- James McDonald <james@jamesmcdonald.com> Mon, 18 Jul 2022 13:30:22 +0200
- This branch is 18 commits ahead of tag debian/6.7-1
- Git log:
commit d5ec5b18c4a5ec5b8df6287d645855ba5188cb2c
Author: James McDonald <james@jamesmcdonald.com>
Date: Mon Jul 18 14:30:23 2022 +0200
Fix lintian issues and update standards version
commit 1892fa5ef9e1ee4cfe906aff5b6d774e629f8e30
Author: James McDonald <james@jamesmcdonald.com>
Date: Mon Jul 18 13:38:56 2022 +0200
Update changelog
commit b94375e8541f4048f51f1e745f9ad4a9e8634706
Author: James McDonald <james@jamesmcdonald.com>
Date: Mon Jul 18 13:38:40 2022 +0200
Update patches for 7.1
commit a729020cdeb3ef2ca19243ccc69fec0227abc5ae
Author: James McDonald <james@jamesmcdonald.com>
Date: Mon Jul 18 13:08:54 2022 +0200
Restore changelog to 6.6-2 changelog
commit 0c907d64b8c34dc26ea526635607f2ca1e6fa6ab
Merge: 2298fb9 c55191f
Author: James McDonald <james@jamesmcdonald.com>
Date: Mon Jul 18 13:03:11 2022 +0200
Merge branch 'linux' into debian
commit c55191fdc5a92fd003c5789bbb27dcbb1ff32b1b
Author: Leah Neukirchen <leah@vuxu.org>
Date: Sat Apr 30 17:11:23 2022 +0200
README: update
commit 7af3a7b8b6966d7c3b0a2fb2fcdb6be314bfd7c1
Merge: 35b0da9 4e73ce5
Author: okan <okan>
Date: Sun Feb 27 14:59:55 2022 +0000
cvsimport
* refs/heads/master:
cycling fix: when no client is active, warp pointer to last active; from Walter Alejandro Iglesias.
whitespace
Fix spelling of some unused MWM hints; from Sean C. Farley.
Add group-last command that shows only the previously active group; ok okan
Allow bare numbers for key and mouse bindings; taken from similar support in other parse.y's; from Leon Fischer <lfischer@airmail.cc>.
sync parse.y changes from base; ok naddy@
Do not attempt to grab keys without a keycode; this incidentally allows XF86 keys support.
commit 4e73ce533c98c54a83fa24c71105bbb1b40a0803
Author: okan <okan>
Date: Sun Feb 27 14:59:55 2022 +0000
cycling fix: when no client is active, warp pointer to last active;
from Walter Alejandro Iglesias.
commit 496bcc879de1186e62bac6fbeff531dbdc9e871c
Author: okan <okan>
Date: Sat Feb 26 15:19:18 2022 +0000
whitespace
commit 5e5221d82d1d0c8679329e5bfb5a913e1b543a29
Author: okan <okan>
Date: Sat Feb 26 15:03:42 2022 +0000
Fix spelling of some unused MWM hints; from Sean C. Farley.
While here, flesh out the rest of the MWM hints.
commit 7c22b36a230ea740a0fe2b9d089f3b3340dc182b
Author: op <op>
Date: Thu Jan 27 18:45:10 2022 +0000
Add group-last command that shows only the previously active group; ok okan
commit 81a08ddb896dacfe2c7b2e9cad43a8f623fadd24
Author: okan <okan>
Date: Fri Dec 24 16:00:47 2021 +0000
Allow bare numbers for key and mouse bindings; taken from similar
support in other parse.y's; from Leon Fischer <lfischer@airmail.cc>.
commit 35b0da9202fbfd83662a0649313b5c4b8cb97f5e
Author: Leah Neukirchen <leah@vuxu.org>
Date: Tue Nov 30 16:43:16 2021 +0100
Makefile: use implicit rule for yacc
Closes #15.
commit a9eeb04606b8002d41b2ad5bc715ec7253f2e77a
Author: okan <okan>
Date: Mon Nov 22 00:51:54 2021 +0000
sync parse.y changes from base; ok naddy@
original from naddy@:
> Don't declare variables as "unsigned char *" that are passed to
> functions that take "char *" arguments. Where such chars are
> assigned to int or passed to ctype functions, explicitly cast them
> to unsigned char.
>
> For OpenBSD's clang, -Wpointer-sign has been disabled by default,
> but when the parse.y code was built elsewhere, the compiler would
> complain.
>
> With help from millert@
> ok benno@ deraadt@
commit 055b84f4d47e05031ba03044dfa111d28e52a31d
Author: okan <okan>
Date: Fri Nov 19 19:13:14 2021 +0000
Do not attempt to grab keys without a keycode; this incidentally allows
XF86 keys support.
found and fix by Luis Henriques <henrix@camandro.org>
commit ce65ff30c7ad249349ccc657565cdbf34c29fa61
Author: Leah Neukirchen <leah@vuxu.org>
Date: Fri May 21 10:12:43 2021 +0200
README: update IRC channel
commit d46f34f01eba56f989af90e277fc0c673ad3684f
Author: kn <kn>
Date: Thu Apr 22 10:02:55 2021 +0000
Keep pointer within window on maximize/fullscreen toggle
Spawn a window, maximize it in any way, move the cursor to a window border
that is not on the screen's edge and unmaximize again: While the window
goes back the cursor stays at the screen's edge, i.e. focus is lost to the
underlaying window.
Moving, resizing, tiling or snapping windows in any way always moves the
cursor along iff needed, e.g. using MS-[hjkl] to move a small window from
the center to the edge keeps the cursor within window borders -- no matter
what you do with the keyboard, focus stays on that window.
Make CM-f, CM-m, CM-equal and CMS-equal (default bindings) for toggling
full-screen mode, maximization, vertical maximization and horizontal
maximization of the current window drag the cursor along if needed as well.
OK okan kmos dv
commit f24dd4751770e387ab39c2c64d7c52bed533ed7e
Merge: 9fb725f d46f34f
Author: kn <kn>
Date: Thu Apr 22 10:02:55 2021 +0000
cvsimport
* refs/heads/master:
Keep pointer within window on maximize/fullscreen toggle