- Nov 03, 2024
-
-
DDMsgReader: When changing sub-boards, now supports cycling through sort options via [ and ] (for nelgin). Also, new scrolling window for help text for changing sub-boards.
-
Rob Swindell authored
(these options follow the password by one or more spaces) I implemented these based on AreaFix v1.10 User's Guide, at Ragnarok's suggestion/request. I didn't test them, so looking forward to getting some test results. The -L and -Q options are functionally identically to the %LIST and %QUERY AreaManager commands, while -R ads a little efficiency by combining +areatag (add) and %RESCAN <areatag> requests in a single command.
-
Rob Swindell authored
Apparently AreaFix and other area managers assume password never have spaces in them, so they can support additional arguments following the password in the AreaFix request. This change also now disallows setting AreaManager passwords with spaces in them. I don't yet support any of the additional AreaFix request options (e.g. -L, -R, -Q), but am considering it. A bunch of sprintf() -> snprintf() conversions are included in this commit (better string buffer security, probably eliminate a Coverity issue or two).
-
- Nov 02, 2024
-
-
Rob Swindell authored
Lowered the intensity of the green '3' (happier on my red-green colorblindness). Result looks more like the original Windows versions of this game.
-
Rob Swindell authored
ddfilelister: Clear the console line counter before any searching, etc., to prevent screen pauses. This should help with issue #806 See merge request !468
-
Eric Oulashin authored
ddfilelister: Clear the console line counter before any searching, etc., to prevent screen pauses. This should help with issue #806
-
Rob Swindell authored
This build rule needed to be defined *after* objects.mk and rules.mk are included.
-
Rob Swindell authored
Also if the help screen is exactly the right number of lines where auto-pause didn't leave any unviewed lines, don't pause twice.
-
Deucе authored
Changing "stuff" on a line will now propogate to the right appropriately. Next up is double-height characters... hopefully.
-
Deucе authored
-
Deucе authored
Basic Prestel support based on the "Prestel Terminal Specification" Issue 2 by the Post Office. Known issues: Modifying an existing line does not update the row after it. Double height is not supported. Keyboard mapping kinda sucks (looking at you #/Return). Concealed is always shown. Remote programming sequences aren't supported. There appears to be something wrong with the End of the Line title and menu screens, but maybe nelgin did them wrong.
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
Supporting the deletion of ranges of lines (e.g. 10-20 rather than one line at a time) was a big ommission for a long time.
-
Rob Swindell authored
-
Rob Swindell authored
... if you're deleting more than one string, this is much more efficient. Note we do some pointer compares (in strListFastRemove) *after* we've freed them in strListFastDelete(). I don't suspect this to be an issue, but it does seem suspect.
-
- Nov 01, 2024
-
-
Rob Swindell authored
... integer sign extension at fault here. Also, add examples to Numeric vs. Verbal short date selection dialog. Update some related help text.
-
Rob Swindell authored
For cases where we want to the verbal short date output, regardless of sysop preference/configuration.
-
Rob Swindell authored
-
Rob Swindell authored
to not overwrite help "screen" borders
-
Rob Swindell authored
DDFileLister: Made 'view file' from the xfer menu actually work when used as a loadable module (FL_VIEW). Updated extended information view for files. See merge request !467
-
DDFileLister: Made 'view file' from the xfer menu actually work when used as a loadable module (FL_VIEW). Updated extended information view for files.
-
- Oct 31, 2024
-
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
This allows us to use dstrtounix() for MM/DD/YY dates regardless of the system configuration (sysop/locale preference). This fixes issue with QWK route.dat file and door.sys (expiration date) parsing where the date is/has-to-be in MM/DD/YY format, always.
-
Rob Swindell authored
... using @-code
-
Rob Swindell authored
ddfilelister: Fix for issue #806 - When scanning files, don't pause for user input between directories. See merge request !466
-
ddfilelister: Fix for issue #806 - When scanning files, don't pause for user input between directories.
-
- Oct 30, 2024
-
-
Deucе authored
RIPtel reset to the font configured by the user, not the current font. Do the same here.
-
Deucе authored
It appears v3 kept the font through a RIP_RESET_WINDOWS command
-
Rob Swindell authored
Fix new date editing bug in user editor: we must use the numeric format for dates when creating strings to be edited.
-
Rob Swindell authored
No need to use time32_t for this.
-
Rob Swindell authored
"01/00/00" would get parsed/converted back to Jan-1-2000 (usually), which is usually not what we want.
-
Rob Swindell authored
Stripped trailing whitespace
-
Rob Swindell authored
... and friends For Gamgee
-
- Oct 29, 2024
-
-
Deucе authored
-
Rob Swindell authored
To solve problem of adding some kind of prefix/tag to a user alias when connecting to a door server. e.g. ?rlogin server -s [TAG] -s %a Hopefully you don't need/want a space separating the string elements, as that's not really doable with this solution.
-
Deucе authored
If telnet binary mode is enabled (the new default), and a CR and LF come in on separate recv() calls, the RIP parser would stop at the CR, and pass the LF back to the ANSI parser. Ah, dura-bbs.net, always pushing the limits.
-
Rob Swindell authored
We want to not expand tilde to attributes when there are any attribute codes in the mnemonics string. The existene of a non-attribute ctrl-a code should not have prevented the tilde expansion. Fix for issue #805 reported by Nelgin (thank you)
-