- Feb 12, 2024
-
-
Deucе authored
that we're setting all the values anymore. :(
-
Deucе authored
wrong, do c_cc the stupid (but POSIXly correct) way with a billion supporting.
-
Rob Swindell authored
Since the user we're editing here is not a pointer to the current user, changing the USER_SWAP_DELETE settings before this prompt doesn't prevent the DEL->BS translation from happening. Raw input mode does. Without this change, it would appear the user's backspace key would toggle between sending either ^H or DEL for the backspace key (for terminals that actually send DEL).
-
Deucе authored
-
Rob Swindell authored
-
Rob Swindell authored
SlyEdit readme: Removed extraneous description about UTF-8 support and left it as a simple blurb See merge request !401
-
Deucе authored
-
Deucе authored
-
Eric Oulashin authored
-
Deucе authored
-
Deucе authored
Monster.
-
Deucе authored
This line has always been there and never done anything.
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
This bug caused crashes in the Windows build of sbbs when using the ;spy sysop command with MQTT enabled. Memory that is allocated in one DLL (e.g. sbbs.dll) must be freed in that same DLL (e.g. sbbs.dll, not mosquitto.dll). mosquitto_message_free() here frees the msg pointer, but we didn't allocate it in mosquitto.dll in the first place, so that's wrong. The proper mosquitto function to use in this case is mosquitto_message_free_contents().
-
Rob Swindell authored
SlyEdit: UTF-8 support. Also, new feature: Entering a graphic char with Ctrl-G (Ctrl-G was previously the key for general help, which wasn't much) See merge request !400
-
SlyEdit: UTF-8 support. Also, new feature: Entering a graphic char with Ctrl-G (Ctrl-G was previously the key for general help, which wasn't much)
-
Rob Swindell authored
console.write() converts CP437->UTF-8, so use write_raw() instead since we're already doing the CP437->UTF-8 conversion here. As reported by Keyop.
-
- Feb 11, 2024
-
-
Rob Swindell authored
Debug project was already set this way.
-
Deucе authored
cast all the const buffers before passing them in and rely on runtime crashes to find bugs rather than compile-time errors. Thanks Microsoft. :D
-
Deucе authored
-
Deucе authored
-
Deucе authored
-
Deucе authored
-
Deucе authored
The alternative is to explicitly copy/paste the type everywhere forcing the compiler to do the only thing it could possibly do, and making it painful to change a type later. Honestly, in my opinion, these warnings should just be disabled completely everywhere.
-
Deucе authored
-
Deucе authored
-
Deucе authored
-
Deucе authored
Found by MSVC
-
Rob Swindell authored
-
Deucе authored
Just use the raw value and a comment.
-
Deucе authored
We can't use const protection for the sample buffer because the Win32 API takes non-const buffers. For standard implicit conversions, simply disable the warning where it occurs on purpose. It appears that MSVC builds use the equivilent of -Wconversion (which isn't even part of -Wall).
-
Rob Swindell authored
The case-sensitive/insensitive logic was backwards (-i enabled case-sensitive sorting) The re-sorting by name was always occurring when the -sort option was used. Case-insensitive sorting by numeric properties (e.g. size) didn't work right.
-
Rob Swindell authored
Since it is possible for someone to change the add/import date of a file after it's been added to the filebase, the natural/unsorted order might not actually be the same as "date ascending", so let the sysop/script-author really re-sort by date ascending if that's what they're trying to do. I think this is addresses the issue that Nightfox and Nelgin were describing in #synchronet.
-
Rob Swindell authored
(as a fall back to the full external program name).
-
Rob Swindell authored
... to determine/print the current external progarm being run. This fixes issue #716
-
Rob Swindell authored
Make mqtt_putnodedat() use a 1-based node number, like the other putnodedat() functions. The bug (misuse of mqtt_putnodedat) was actually in js_system.c, but fixed the API to match the common expectation.
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
-