Changelog:
r43601 | gpz | 2023-03-28 16:01:01 +0000 (Tue, 28 Mar 2023) | 1 line
fix scrolling in the monitor on macos, patch by Oskar Linde
------------------------------------------------------------------------
r43599 | rhialto | 2023-03-28 09:52:09 +0000 (Tue, 28 Mar 2023) | 19 lines
Add or correct (unsigned char) casts to ctype arguments.
from the ctype(3) manual on NetBSD (which is nice enough to give us compiler
warnings when passing a char argument to these macros):
CAVEATS
The argument of these functions is of type int, but only a very
restricted subset of values are actually valid. The argument must either
be the value of the macro EOF (which has a negative value), or must be a
non-negative value within the range representable as unsigned char.
Passing invalid values leads to undefined behavior.
Values of type char or signed char must first be cast to unsigned char,
to ensure that the values are within the correct range. Casting a
negative-valued char or signed char directly to int will produce a
negative-valued int, which will be outside the range of allowed values
(unless it happens to be equal to EOF, but even that would not give the
desired result).
------------------------------------------------------------------------
r43598 | compyx | 2023-03-28 07:41:50 +0000 (Tue, 28 Mar 2023) | 5 lines
Gtk3: Mark `ACTION_SETTINGS_SAVE` finished after saving settings
Fixes bug #1854.
------------------------------------------------------------------------
r43597 | dqh | 2023-03-28 04:09:09 +0000 (Tue, 28 Mar 2023) | 1 line
Attempt to make macOS bindist script work with multiple platypus versions
------------------------------------------------------------------------
r43596 | dqh | 2023-03-28 04:08:24 +0000 (Tue, 28 Mar 2023) | 1 line
fixed GNU sed assumption
------------------------------------------------------------------------