summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-08-177.0-betaTheo de Raadt
2021-08-17For devices with rechargeable batteries, expose a new boolean sensoranton
indicating the charging state. Thanks to Laurence Tratt <laurie at tratt dot net> for testing.
2021-08-17calloc for confirm-before data since the item needs to start NULL.Nicholas Marriott
2021-08-17Be more sophisticated about enabling synchronized updates when there isNicholas 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-17Revert previous; this is not how it should work.Nicholas Marriott
2021-08-17document 11ac as a valid wireless mode; ok stspJason McIntyre
2021-08-17Start sync before drawing popup.Nicholas Marriott
2021-08-17Set the battery level sensor status to unknown while the battery isanton
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-16Remove 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-16typo in commentTheo Buehler
2021-08-16add missing breakJonathan Gray
ok claudio@
2021-08-16Remove redundant SIOCSIFMTU ioctl handler already handlded by ether_ioctl().Kevin Lo
From Brad
2021-08-15Don't check & errx() after each and every invocation ofKenneth 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-14Some other missing palette NULL checks, from oss-fuzz.Nicholas Marriott
2021-08-14Fix 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-14Do not use NULL palette when clearing.Nicholas Marriott
2021-08-14print a BAGARG message if -T markdown is requested on man(7) input;Ingo Schwarze
suggested by Michael Stapelberg at debian dot org
2021-08-14when talking about non-blocking I/O, .Xr both FIONBIO and O_NONBLOCKIngo Schwarze
in the most concise way i managed to come up with; suggested by martijn@ and OK millert@ martijn@
2021-08-14Missing argument specifier for -c.Nicholas Marriott
2021-08-14Use new val-max-restart: 0 option to stop unwind from trying differentFlorian 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-14Fix "no previous prototype" warningFlorian Obser
OK sthen as part of a larger diff
2021-08-14sync to unbound 1.13.2Florian Obser
OK sthen
2021-08-14call 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-13Tweak how mouse works on popup: only Meta alone resizes or moves, notNicholas 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-13Check callback needs to only return 0 (text should be suppressed) ifNicholas Marriott
menu returns 0, otherwise it should check the popup also.
2021-08-13merge unbound-1.13.2 / regen configure, ok florianStuart Henderson
2021-08-13import unbound 1.13.2, ok florian@Stuart Henderson
2021-08-13Fill in some other bits on new panes.Nicholas Marriott
2021-08-13Add menu options to convert a popup into a pane.Nicholas Marriott
2021-08-13Adjust overlay check callback before drawing data from pty.Nicholas Marriott
2021-08-13Add a menu when a popup is present (mouse only for now).Nicholas Marriott
2021-08-13Add -B flag to remove border from popup.Nicholas Marriott
2021-08-13Plug memory leak in an unlikely error path of iwx_umac_scan_v14().Stefan Sperling
CID 1506261
2021-08-13update usage() to reflect s->step change;Jason McIntyre
2021-08-13Make -b, -c, and -b mutually exclusive.Martijn van Duren
Help/Feedback/OK schwarze@, tb@
2021-08-13During line editing, let Ctrl-C discard the current input line andIngo 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-13Simplify 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-13Make 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-13Stop 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-13The s argument isn't used as seed anymore, so increase readability byMartijn van Duren
renaming it to step, which matches the name in the code. OK tb@
2021-08-13Apply de Morgan's rule to shave of 4 LoC.Martijn van Duren
OK tb@
2021-08-13Break message type stuff out into its own header.Nicholas Marriott
2021-08-13Change focus to be driven by events rather than walking all panes at endNicholas Marriott
of event loop, this way the ordering of in and out can be enforced. GitHub issue 2808.
2021-08-13Set return code for confirm-before and make command-prompt also block,Nicholas Marriott
GitHub issue 2822.
2021-08-13Remove unused ure_stop_task (from Christian Ludwig of genua.de)gnezdo
The ure_stop_task is not scheduled anywhere. Compile tested here.
2021-08-12mention that CASignatureAlgorithms accepts +/- similarly to theDamien Miller
other algorithm list directives; ok jmc bz#3335
2021-08-12Make newline a style delimiter as well so they can cross multiple linesNicholas Marriott
for readability.
2021-08-12Now that styles can contain formats, they need to be expanded whenNicholas Marriott
inserted into the status line.
2021-08-12Use COLOUR_DEFAULT not hardcoded 8.Nicholas Marriott
2021-08-12Evaluate styles with the pane variables.Nicholas Marriott