- Feb 16, 2024
-
-
Rob Swindell authored
-
Rob Swindell authored
This is not a completely unexpected thing to happen during ungraceful termination
-
Rob Swindell authored
-
Rob Swindell authored
DDMsgReader: quotes.txt is now in the correct case for the user's editor. "terminalSupportsUTF8 not defined" error eliminated. See merge request !406
-
Rob Swindell authored
I'm surprised this didn't create a warning somewhere: treating char* as a bool!
-
Rob Swindell authored
-
Rob Swindell authored
Which means that every time textgen was built, it was immediately out of date (and requiring a rebuild).
-
Rob Swindell authored
-
Rob Swindell authored
(doesn't leave a partial UTF-8 sequence at the end of the destination string). This calls memcpy() for every char, which may not be performant, but I didn't (yet) do any profiling. Hence, no premature optimization either.
-
Rob Swindell authored
Tested with Windows Terminal Version: 1.18.10301.0 and all codepoints between 0x100 and 0x1FFFF, this change reduces the width mismatches from > 8000 to 349. The "Zero width" mismatches are probably the most important/glaring and will need to be addressed next (since some terminals don't move the cursor for zero width chars, and some do).
-
Eric Oulashin authored
DDMsgReader: quotes.txt is now in the correct case for the user's editor. "terminalSupportsUTF8 not defined" error eliminated.
-
Rob Swindell authored
(but prefer the proper/configured case, based on config in SCFG). Works around a problem where DDMsgReader always creates QUOTES.TXT (never quotes.txt), but SBBS tries to read in the file with the case it expects. This wouldn't be a problem on case-insensitive file systems (Windows). Resolves the writemsg.cpp error reported by Nelgin
-
Rob Swindell authored
DDLightbarMenu: Something has gone wrong with the display of borders.. Reverting back to what I know was a good version of dd_lightbar_menu.js (none of the recent changes are significant). See merge request !405
-
- Feb 15, 2024
-
-
Eric Oulashin authored
DDLightbarMenu: Something has gone wrong with the display of borders.. Reverting back to what I know was a good version of dd_lightbar_menu.js (none of the recent changes are significant).
-
Deucе authored
ubiquitous now (except for Borland of course, which doesn't count)
-
Deucе authored
long long when compiled with MSVC. Re-enable it.
-
Deucе authored
Apparently, fiddling with them in there "strongly implies" to Coverity that vstatlock needs to be held to access them, and it's good form to have the lock held for the least span possible.
-
Deucе authored
Found by Coverity. If there's actually another thread using the list when the refcount hits zero, you're going to have a bad time regardless of the lock. Coverity has been pointing this out for a while, but we've been ignoring it as a false positive.
-
Deucе authored
-
Rob Swindell authored
-
Deucе authored
-
Deucе authored
-
Deucе authored
-
- Feb 14, 2024
-
-
Rob Swindell authored
-
Rob Swindell authored
Commit 75c5c9e5 was initially to address server termination (sisue #236), but expanded in scope to include server recycling (e.g. due to semaphore/config file touch) and that turns out to not be what most sysops want. If you want an immediate/ungraceful recycle, do a restart (shutdown/stop and then start) instead. Immediate/ungraceful server shutdown/termination is still in effect however. No change to the "server pause" feature either, so combining pause with recycle would be effective to prevent *new* client connections while waiting for existing clients to disconnect and allow a recycle to happen.
-
Rob Swindell authored
Commit d1182efc
-
Rob Swindell authored
-
Rob Swindell authored
(or terminating) the server. This will allow background JS threads to terminate when recycling, so the server doesn't just hang indefinitelyi when recycling. Add more logging in cleanup() when waiting for children threads to terminate. Also, eliminate the global 'terminate' variable, answering the question: Can this be changed to a if(ws_set!=NULL) check instead? Yes, yes it can.
-
Rob Swindell authored
e.g. month and day reversed
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
For easier customization/localization
-
Rob Swindell authored
Updated help text for "Support UTF-8 Encoding" for external editors.
-
Rob Swindell authored
1. Add an 8th line to MSGINF (for SlyEdit): the character set expected (either "CP437", the default, or "UTF-8") based on the SCFG configuration 2. Don't apply "Soft-CR" (0x8D) stripping/expansion for UTF-8 editors
-
Rob Swindell authored
*This* is the way. Oops.
-
Rob Swindell authored
This is the way.
-
Rob Swindell authored
-
Rob Swindell authored
This was the auto/default mode before commit 2ca1e4a0 If you really want the VGA aspect ratio, use the '-v41' option.
-
- Feb 13, 2024
-
-
Rob Swindell authored
DDLightbarMenu: Revert the text item width fill that was committed yesterday, as it seems to write too much in some cases See merge request !404
-
Deucе authored
dirty = true propogates up, dirty = false propogates down.
-