- Dec 01, 2020
-
-
Rob Swindell authored
cmdstr() is often called for non-executable command-lines (e.g. for @include: file name/path arguments), so don't default to native unless a mode value was specified. Hopefully addresses issue reported by bobrob without breaking anything else (again).
-
Rob Swindell authored
This reverts commit 1597e9a9.
-
- Nov 30, 2020
-
-
Rob Swindell authored
Always check the command-line for a '*' or '?' prefix and compare the executed filename against the native program list. For DOSEMU magic drive/path name command-line specifier substitution, but only when invoking DOS programs. Reported by bobrob via IRC.
-
Rob Swindell authored
xmodem_cancel() would return an error if putcom() failed, *before* setting the "cancelled" [sic] flag. xmodem_cancel() in response to the receipt of a remote cancel request (^X character).
-
Rob Swindell authored
Safe-string handling in C/C++.
-
Rob Swindell authored
Bug fix for net type when forwarding messages to internet email or fidonet netmail See merge request !43
-
When forwarding a message, it now correctly sets sets the to_net_type property in the message header to FidoNet or internet for those types of message destinations
-
- Nov 29, 2020
-
-
Rob Swindell authored
This can be used to defeat the automatic inclusion of the sbbs3 "setcap" build target when building on Linux. This should address issue #175.
-
Rob Swindell authored
-
Rob Swindell authored
Update game.js - the game is showing 2 pauses when exiting. This code is not... See merge request !46
-
Rob Swindell authored
Don't do the DOSEMU drive-letter dance for xtrn startup directory if the xtrn's command line is implicitly native (e.g. Baja or JS). Also, recognize Baja command-lines as native in cmdstr() - for %n, %!, etc. DOSemu expansion hack.
-
Rob Swindell authored
-
Rob Swindell authored
If a node's configuration can't be loaded (e.g. nodeX/node.cnf is missing), fall-back and load the "first node" (e.g. Node1) configuration. On recent *nix installs (since the migration to Git), the node2+/node.cnf files were not copied/created, so let's solve that soon-to-be-FAQ now.
-
Rob Swindell authored
This resolves the issue of node2+/node.cnf file missing.
-
Rob Swindell authored
Update README.txt - website defunct See merge request !44
-
Rob Swindell authored
Update sysop.doc - cvs is gone, and these files haven't changed in a long time... See merge request !42
-
Rob Swindell authored
Fixes issue introduced in last commit to this file (the each-node-has-its-own-config-in-memory enhancement) that would prevent users from logging in because their time was reduced for an upcoming event that had already run. The change assumes the event thread is running (its the thing that reads the event last-run info from time.dab). Thanks to mlong for the report.
-
Kayz authored
Update game.js - the game is showing 2 pauses when exiting. This code is not even needed since you can set "pause after execution" in scfg. Now if that is enabled, there is only one pause shown. And if not enabled, there is no forced wait/press a key. Seems it would benefit sysops who want it either way.
-
Kayz authored
-
Kayz authored
Update sysop.doc - cvs is gone, and these files haven't changed in a long time so its really not needed in the instructions
-
Rob Swindell authored
... between all nodes of a instance sbbs instance. That's now no longer true.
-
Rob Swindell authored
Previously, all nodes shared the same copy of the configuration in memory. This prevented any node from seeing an updated configuration until all nodes were offline or waiting for connection and could be recycled. Now, no recycling of the server is needed for a node to load a new config. A node in-use *still* cannot reload configuration until the user disconnects, but all you have to do is logon to another unused node and you (or that user) will get an updated configuration. Bots or server recycling problems will no longer prevent the sysop or user from getting a current configuration when connecting to any node. This is one of those instances of giving the sysop what he wants rather than what he asked for. I should've done this a long time ago, but the idea just occurred to me. You're welcome. :-)
-
Rob Swindell authored
Let UIFC do the truncation as necessary to fit windows/forms, when applicable. Thanks for jc and nelgin for pointing this out via IRC.
-
Rob Swindell authored
The name length is limited to 25 chars, so we don't need a 50-char wide menu here.
-
- Nov 28, 2020
-
-
Rob Swindell authored
Thanks for pointing that out mlong.
-
Rob Swindell authored
(emulating the syslog date/timestamp format). Makes debugging file transfer issues easier.
-
Rob Swindell authored
And a couple of minor cosmetic adjustments.
-
Rob Swindell authored
misspellings in jsdocs See merge request !40
-
-
Deucе authored
Basically, try to scare away people who won't file bug reports.
-
Rob Swindell authored
-
Rob Swindell authored
More logging details (e.g. subpacket byte progress). Identify XON and XOFF by name (e.g. when purging receive buffer). Some variable naming and comment improvements.
-
Rob Swindell authored
Also, zmodem_send_raw() was saving the "last sent" char, even if it wasn't successfully sent. Eliminated the "errors" mode of zmodem_recv_header_raw() since was no longer used. Eliminated zmodem_recv_header_and_check() since it's no longer used. Some debug-log fix-ups (e.g. with progress/offset).
-
Rob Swindell authored
-
Rob Swindell authored
only when the errored data subpacket was a ZCRCW (waiting for ZACK). To resolve a non-streaming failure to recover after CRC error issue.
-
Rob Swindell authored
-
Rob Swindell authored
... like the last commit that did this, but do in the other 2 places where stderr output is logged as log messages. Also, include the extended program name in the stderr log messages, making it easier to find the output you're looking for.
-
Rob Swindell authored
... based on the configuration setting. Also, prompt for upper or lowercase after setting the editor information file type, so no "door drop file" needs to be selected to change the case of the editor information file. - reported by mlong
-
- Nov 27, 2020
-
-
Rob Swindell authored
Makes easier trace/debugging of issues (e.g. matching up with sending side logs). No functional change.
-
Rob Swindell authored
__FUNCTION__ cannot be used a string literal in GCC.
-