Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-08-17 | 7.0-beta | Theo de Raadt | |
2021-08-17 | For devices with rechargeable batteries, expose a new boolean sensor | anton | |
indicating the charging state. Thanks to Laurence Tratt <laurie at tratt dot net> for testing. | |||
2021-08-17 | calloc for confirm-before data since the item needs to start NULL. | Nicholas Marriott | |
2021-08-17 | Be more sophisticated about enabling synchronized updates when there is | Nicholas Marriott | |
an overlay and treat it like the active pane (use for commands which move the cursor only). When there is an overlay also use it for all panes and not just the active pane. GitHub issue 2826. | |||
2021-08-17 | Revert previous; this is not how it should work. | Nicholas Marriott | |
2021-08-17 | document 11ac as a valid wireless mode; ok stsp | Jason McIntyre | |
2021-08-17 | Start sync before drawing popup. | Nicholas Marriott | |
2021-08-17 | Set the battery level sensor status to unknown while the battery is | anton | |
charging as some devices reports a level of zero during charging. Prevents certain sensorsd.conf actions from triggering as a battery level of zero would otherwise set the sensor status to critical. Thanks to Laurence Tratt <laurie at tratt dot net> for the report. | |||
2021-08-16 | Remove obsolete pre-release support code about two early versions of 8260. | Kevin Lo | |
No need to access iwx_read_prph and could get the rid of the obsolete comment. See Linux commit 4adfaf9b2de3a04a9ee9adff6e000e8dbb37bed5 ok stsp@ | |||
2021-08-16 | typo in comment | Theo Buehler | |
2021-08-16 | add missing break | Jonathan Gray | |
ok claudio@ | |||
2021-08-16 | Remove redundant SIOCSIFMTU ioctl handler already handlded by ether_ioctl(). | Kevin Lo | |
From Brad | |||
2021-08-15 | Don't check & errx() after each and every invocation of | Kenneth R Westerback | |
string_from_line(). Just errx() inside string_from_line() if getline() fails. Use strcspn() idiom to nuke '\n' returned by getline(). No functional change. | |||
2021-08-14 | Some other missing palette NULL checks, from oss-fuzz. | Nicholas Marriott | |
2021-08-14 | Fix iostat per-device values when in boot time mode ('b'). | Todd C. Miller | |
The values should be displayed as-is and not normalized based on the sleep interval. From Anindya Mukherjee | |||
2021-08-14 | Do not use NULL palette when clearing. | Nicholas Marriott | |
2021-08-14 | print a BAGARG message if -T markdown is requested on man(7) input; | Ingo Schwarze | |
suggested by Michael Stapelberg at debian dot org | |||
2021-08-14 | when talking about non-blocking I/O, .Xr both FIONBIO and O_NONBLOCK | Ingo Schwarze | |
in the most concise way i managed to come up with; suggested by martijn@ and OK millert@ martijn@ | |||
2021-08-14 | Missing argument specifier for -c. | Nicholas Marriott | |
2021-08-14 | Use new val-max-restart: 0 option to stop unwind from trying different | Florian Obser | |
authorities when encountering a validation error. This only helps one particular case of validation errors: When authorities are out of sync and some carry old zones. In all other cases this causes a huge amount of work that will just end in a SERVFAIL because the result will still be bogus. OK sthen | |||
2021-08-14 | Fix "no previous prototype" warning | Florian Obser | |
OK sthen as part of a larger diff | |||
2021-08-14 | sync to unbound 1.13.2 | Florian Obser | |
OK sthen | |||
2021-08-14 | call task_del() from destroy_work_on_stack() | Jonathan Gray | |
prompted by jcs@ reporting a protection fault trap in drm_mode_rmfb_work_fn() while playing a youtube video in firefox on a kaby lake machine. He later saw the same trace on tiger lake. The previous attempt to avoid this situation by changing work flush functions from taskq_barrier() to taskq_del_barrier() resulted in suspend sometimes not working on various intel based thinkpads. The only code we build which calls destroy_work_on_stack() is in drm_framebuffer.c so the scope of this change is more limited. Linux only uses destroy_work_on_stack() for debugging so the workqueue behaviour still doesn't match. This version is confirmed to not break suspend on x260 by sthen@ and x280 by tb@ and still avoids the original problem according to jcs@ | |||
2021-08-13 | Tweak how mouse works on popup: only Meta alone resizes or moves, not | Nicholas Marriott | |
Meta with other modifiers; button 2 on the left or top border opens menu, right or bottom resizes; button 1 on any border moves. | |||
2021-08-13 | Check callback needs to only return 0 (text should be suppressed) if | Nicholas Marriott | |
menu returns 0, otherwise it should check the popup also. | |||
2021-08-13 | merge unbound-1.13.2 / regen configure, ok florian | Stuart Henderson | |
2021-08-13 | import unbound 1.13.2, ok florian@ | Stuart Henderson | |
2021-08-13 | Fill in some other bits on new panes. | Nicholas Marriott | |
2021-08-13 | Add menu options to convert a popup into a pane. | Nicholas Marriott | |
2021-08-13 | Adjust overlay check callback before drawing data from pty. | Nicholas Marriott | |
2021-08-13 | Add a menu when a popup is present (mouse only for now). | Nicholas Marriott | |
2021-08-13 | Add -B flag to remove border from popup. | Nicholas Marriott | |
2021-08-13 | Plug memory leak in an unlikely error path of iwx_umac_scan_v14(). | Stefan Sperling | |
CID 1506261 | |||
2021-08-13 | update usage() to reflect s->step change; | Jason McIntyre | |
2021-08-13 | Make -b, -c, and -b mutually exclusive. | Martijn van Duren | |
Help/Feedback/OK schwarze@, tb@ | |||
2021-08-13 | During line editing, let Ctrl-C discard the current input line and | Ingo Schwarze | |
provide a fresh prompt instead of exiting the program. This aligns behaviour with bc(1), ftp(1), sftp(1), and all the shells. OK naddy@ Both martijn@ and naddy@ point out that this program might profit from signal handling during more of its code, but that would require more code inspection, design work, and testing which i'm not planning to do right now. Consider standard behaviour during line editing as a first step. | |||
2021-08-13 | Simplify an if clause using De Morgan's law. | Theo Buehler | |
Using the fact that since r1.53 prec is always non-negative and that r1.50 added an initialization of use_unif, we can eliminate a couple of lines and make the intention clearer. ok martijn | |||
2021-08-13 | Make sure prec is non-negative before calling getformat() | Theo Buehler | |
If jot is called without arguments, getformat() produces the illegal "%.-1f" format string. __vfprintf() misinterprets the - as a left adjust flag and uses a precision of 0. Set prec = 0 so that we use "%.0f" in this situation. ok martijn | |||
2021-08-13 | Stop using a while loop for code that runs at most once, | Ingo Schwarze | |
and garbage collect an automatic variable that is no longer needed and a comment that was probably contributed by Capt. Obvious. No functional change. OK millert@ martijn@ | |||
2021-08-13 | The s argument isn't used as seed anymore, so increase readability by | Martijn van Duren | |
renaming it to step, which matches the name in the code. OK tb@ | |||
2021-08-13 | Apply de Morgan's rule to shave of 4 LoC. | Martijn van Duren | |
OK tb@ | |||
2021-08-13 | Break message type stuff out into its own header. | Nicholas Marriott | |
2021-08-13 | Change focus to be driven by events rather than walking all panes at end | Nicholas Marriott | |
of event loop, this way the ordering of in and out can be enforced. GitHub issue 2808. | |||
2021-08-13 | Set return code for confirm-before and make command-prompt also block, | Nicholas Marriott | |
GitHub issue 2822. | |||
2021-08-13 | Remove unused ure_stop_task (from Christian Ludwig of genua.de) | gnezdo | |
The ure_stop_task is not scheduled anywhere. Compile tested here. | |||
2021-08-12 | mention that CASignatureAlgorithms accepts +/- similarly to the | Damien Miller | |
other algorithm list directives; ok jmc bz#3335 | |||
2021-08-12 | Make newline a style delimiter as well so they can cross multiple lines | Nicholas Marriott | |
for readability. | |||
2021-08-12 | Now that styles can contain formats, they need to be expanded when | Nicholas Marriott | |
inserted into the status line. | |||
2021-08-12 | Use COLOUR_DEFAULT not hardcoded 8. | Nicholas Marriott | |
2021-08-12 | Evaluate styles with the pane variables. | Nicholas Marriott | |