Changelog:
r43947 | compyx | 2023-06-04 08:23:09 +0000 (Sun, 04 Jun 2023) | 9 lines
Update doxygen runner script
Update included/excluded directories and files:
* Add subdirectories for petcat and cartconv in `src/tools/` so `petcat.c` and
`cartconv.c` actually get parsed
* Add `cart` subdirectories for cbm2 and plus4
* Add missing subdirectories in `src/arch/shared/`
* Remove ffmpeg, lame, x264 from subdirectories of `src/lib`, add linenoise-ng
------------------------------------------------------------------------
r43946 | compyx | 2023-06-03 15:28:48 +0000 (Sat, 03 Jun 2023) | 2 lines
genkeysymtable.awk: Replace \s with [ <tab>] so Moses' awk can understand it
------------------------------------------------------------------------
r43945 | pottendo | 2023-06-03 12:35:37 +0000 (Sat, 03 Jun 2023) | 3 lines
Handle default server properly. Added URL sanity check and log in case
something is invalid.
------------------------------------------------------------------------
r43944 | compyx | 2023-06-03 06:03:57 +0000 (Sat, 03 Jun 2023) | 8 lines
UI actions: change registered action handlers mapping into "sparse" array
Instead of using a growing array on the heap for registered actions, use a
static array indexible by action ID. For a little more memory use we gain speed
for action mapping lookups, just a simple index by action ID. Any action that
doesn't have a registered handler will simply have its mapping's `handler` set
to `NULL`.
------------------------------------------------------------------------
r43943 | compyx | 2023-06-02 13:42:08 +0000 (Fri, 02 Jun 2023) | 5 lines
Hotkeys: add Doxygen docblocks to function prototypes in the `uiapi.h` header
Also remove the prototypes for `ui_hotkeys_init()`, that is declared in the
`uihotkeys.h` header.
------------------------------------------------------------------------