Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-08-23 | Allow auto controls to be set back to auto mode explicitly. | Marcus Glocker | |
From Laurence Tratt <laurie (at) tratt (dot) net> | |||
2020-08-16 | Update to xkbcomp 1.4.3 | Matthieu Herrb | |
2020-08-11 | Allow the combination of '-dc' options, reset and display control values. | Marcus Glocker | |
Reported by Laurence Tratt. | |||
2020-08-09 | Remove braces for single line control statement. | Marcus Glocker | |
2020-08-09 | If a control supports auto mode and this is active, print 'auto' with -c | Marcus Glocker | |
instead of printing the last set numeric value. Initial diff from Laurence Tratt with some enhancements added. | |||
2020-08-05 | Don't compare a pointer to a null character constant but to NULL. | Marcus Glocker | |
With best regards from clang 10. | |||
2020-08-05 | Add the ability to set and display video control values directly on the | Marcus Glocker | |
CLI. Initial diff from Laurence Tratt with some enhancements/changes added. ok mpi@ | |||
2020-07-17 | Add white balance temperature control through 'w/W' keys. | Marcus Glocker | |
From Laurence Tratt. ok matthieu@ | |||
2020-07-04 | Start xconsole after setting the background. | Matthieu Herrb | |
Fixes an issue that causes xconsole to crash reported and fix tested by Joe Gidi. Thanks. | |||
2020-07-01 | Initialize v4l2_requestbuffers for better libv4l compatibility | Ingo Feinerer | |
The VIDIOC_REQBUFS ioctl requires a v4l2_requestbuffers struct with the members count, type, and memory. In the past only count was set as the uvideo(4) kernel driver, via uvideo_reqbufs(), is ignoring both struct members type and memory (pointed out by mpi@). However, using video(1) with libv4l (LD_PRELOAD=/usr/local/lib/v4l2convert.so video) yields "mmap: Invalid argument" as libv4l inspects the type and memory struct members and fails if memory != V4L2_MEMORY_MMAP. Full initialization fixes libv4l usage which allows us to view video encodings not directly supported by video(1), e.g., MJPEG, as libv4l can convert encodings on the fly. OK mglocker@ | |||
2020-06-28 | Provide a lower contrast root weave as default background. | Matthieu Herrb | |
2020-06-28 | A darker login widget, providing better contrast. | Matthieu Herrb | |
liked by many. | |||
2020-06-18 | Don't compare with string literals | Jonathan Gray | |
From Dimitry Andric e200d0d41ef3158ea717206c1490e499a0c07f1b in xkbcomp git fixes build with clang 10 | |||
2020-05-16 | Update to xkbprint 1.0.5 | Matthieu Herrb | |
2020-05-16 | missed README->README.md transition in 1.5.1 update. | Matthieu Herrb | |
2020-05-16 | Update to xrandr 1.5.1 | Matthieu Herrb | |
2020-04-25 | Fixed memory leak in xu_get_strprop. | Tobias Stoeckmann | |
If a client calls XSetTextProperty for a window to clear all its properties, then allocated memory within libX11 is not freed. OK okan@ | |||
2020-04-16 | Prevent out of boundary write with configuration files in which too many | Tobias Stoeckmann | |
quoted arguments are stored for other window managers. The quotation handling happens within the while loop without checking if the "end" limit has been already reached. If this happens, the final NULL assignment leads to an out of boundary write on stack. OK okan@ | |||
2020-04-16 | Allow configuring a percentage window size of the master window during | Okan Demirmen | |
htile/vtile actions. From Uwe Werler, with a few manpage tweaks. | |||
2020-04-01 | sort architectures list | Matthieu Herrb | |
2020-04-01 | Set the VT to be used by the X server on arm64 too. ok phessler@ | Matthieu Herrb | |
2020-03-24 | zap stray tabs | Okan Demirmen | |
2020-03-24 | Instead of using _NET_ACTIVE_WINDOW on restart, use the pointer location | Okan Demirmen | |
to determine what client to set active. Reduces a round trip for every window. | |||
2020-03-23 | Add support for SIGINT/SIGTERM. | Okan Demirmen | |
2020-03-20 | Simplify conditional construct. | Tim van der Molen | |
OK okan@ | |||
2020-03-20 | Trim event_mask to those that the root window actually needs. | Okan Demirmen | |
2020-03-20 | No need to lookup current client early; move to right before it is | Okan Demirmen | |
needed. | |||
2020-03-16 | Recommit 1.259, but now with TAILQ_FOREACH_SAFE. | Tim van der Molen | |
From and OK okan@ Original commit message: Plug two memory leaks. Also get rid of a variable that is no longer necessary. OK okan@ | |||
2020-03-14 | Revert previous. Causes a crash as reported by Tom Murphy. | Tim van der Molen | |
2020-03-13 | Simplify list markup. | Tim van der Molen | |
OK okan@ schwarze@ | |||
2020-03-13 | Plug two memory leaks. Also get rid of a variable that is no longer | Tim van der Molen | |
necessary. OK okan@ | |||
2020-02-28 | Remove ColormaskChange from event-mask since there's no event handler. | Okan Demirmen | |
2020-02-27 | Unrelated style fixes, consistency changes and sorting, appropriate | Okan Demirmen | |
dosage/removal of wrappers, simplification of name queue, client cycle joins other kb/mb bound functions. | |||
2020-02-07 | Allow the 'empty' group clients to be window-{h,v}tile'd. | Okan Demirmen | |
Behaviour (or lack there of) noticed by Raf Czlonka. | |||
2020-02-03 | Map ('5') and allow mod5mask (altgr) as a modifier. | Okan Demirmen | |
From Artturi Alm (though changed from 'm' to '5') | |||
2020-01-22 | add, then use, xvasprintf, checking for appropriate return. | Okan Demirmen | |
2020-01-21 | Ensure the pointer stays within client bounds after a window 'snap' (to edge). | Okan Demirmen | |
reported by Stefan Hagen. | |||
2020-01-20 | Disable the print-immediate and print-on-error functions in xterm. | Matthieu Herrb | |
They a causing a pledge violation when called, and we can live without them. ok millert, also discussed with deraadt@ | |||
2020-01-18 | Disable PASTE64, TCAP_FKEYS and TCAP_QUERY explicitly. | Matthieu Herrb | |
They got enabled in previous xterm update but we don't want those. PASTE64 issue and patch by deraadt@, discussed also with nicm@ | |||
2020-01-14 | Update to fonttosfnt 1.1.0 | Matthieu Herrb | |
2020-01-14 | Update to viewres 1.0.6 | Matthieu Herrb | |
2020-01-14 | Update to xhost 1.0.8 | Matthieu Herrb | |
2020-01-14 | Update to xauth 1.1 | Matthieu Herrb | |
2019-12-29 | Update to xterm 351. tested and ok solene@ jca@ | Matthieu Herrb | |
2019-12-24 | Update to xrdb 1.2.0 | Matthieu Herrb | |
2019-12-04 | xenodm uses the libc authentication layer incorrectly. | Theo de Raadt | |
fix by markus or millert Reported by Qualys | |||
2019-12-03 | disable opengl and mesa functionality | Theo de Raadt | |
from matthieu, ok jsg | |||
2019-11-06 | Tested a Logitech Webcam C930e which has 17 frame sizes but video(1) only | Marcus Glocker | |
supports 16 today. Bump the array to 32 which makes 1920x1080 work on this device as well. OK deraadt | |||
2019-10-19 | Remove references to xman(1). Noticed by Alfred Morgan, thanks. | Matthieu Herrb | |
2019-08-15 | Remove apps unlinked from the build several months ago. | Matthieu Herrb | |