Thomas Perl
Thomas Perl
As for the actual topic of this issue: A configuration setting with "default double-click action" is probably a good idea (while still defaulting to the toggling of shownotes, so that...
How the translation part works: 1. Run `make messages` to extract translatable strings from source files to `po/messages.pot` and update `.po` files (the actual translation files) from `messages.pot` (the template)...
Or something like this (again, untested): ``` cpp uint32_t remaining = vtxcnt; uint32_t run = min(remaining, 0xffff); remaining -= run; GX_Begin(GX_POINTS, GX_VTXFMT0, run); for (...) { for (...) { GX_Position3f32(i,...
If there's a HTTP status code, you can use the command watcher with a URL like this: curl -s -I https://example.org | head -n1
One quick and pragmatic way to do this would be to write a small script that generates the `urls.yaml` from a "template" that you specified like above. This way, you...
The message seems to come from here: https://github.com/SuperIlu/DOjS/blob/edeb86736d0bca42da78122b3df5052ad036c232/src/DOjS.c#L888 Since the `run.bat` doesn't specify a script file, and `JSBOOT.ZIP` exists, and `main.js` in there is the file that should get picked...
I was able to reproduce the issue with DOSBox by making the files read-only (e.g. `chmod -w *` in macOS / Linux). DOSBox says: ``` Warning: file ./JSBOOT.ZIP exists and...
Further digging shows: https://github.com/SuperIlu/DOjS/blob/ee98b9e019ae5c03d02e54c71c2dee66637c6eb0/3rdparty/zip/src/zip.c#L800 ..which calls `mz_zip_reader_init_file_v2_rpb()`: https://github.com/SuperIlu/DOjS/blob/ee98b9e019ae5c03d02e54c71c2dee66637c6eb0/3rdparty/zip/src/miniz.h#L5983 ..and that calls `fopen()` like this: ``` pFile = MZ_FOPEN(pFilename, "r+b"); ``` The `r+` mode opens it in read/write mode, which makes...
This is now ready for review :partying_face:
> Does this require a new gpodder.net database file? > > ``` > File "/usr/lib/python3.10/site-packages/minidb.py", line 203, in _ensure_schema > raise TypeError('Column {} is {}, but expected {}'.format(name, next(dbtype for...