Skip to content
Snippets Groups Projects
  1. Sep 13, 2020
  2. Sep 12, 2020
    • Rob Swindell's avatar
      Don't allow invalid netmail-forwarding addresses · 3eb83ec5
      Rob Swindell authored
      Don't prompt a new user to forward email to their netmail address if they
      provided an invalid netmail address (not supported by the system).
      
      If a sysop has an invalid netmail address setup for forwarding, don't try to
      forward email (or new user feedback) to that address.
      
      Re-ordered the new user terminal questions a little bit (ask for the backspace
      key first, to get earlier manual PETSCII detection). I'm not sure why I was
      enabling AUTOTERM along with PETSCII before. Removed that as PETSCII cannot
      be auto-detected.
      3eb83ec5
    • Rob Swindell's avatar
      Improve startup w/Config Wizard reliability · e1a79a56
      Rob Swindell authored
      I noticed on one particular system that Canceling or Completing
      the configuration wizard on a fresh install, sbbsctrl.exe would
      just shut down (no error dialog or anything, likely a crash of
      some kind). Instrumenting StartupTimerTick() didn't reveal anything
      useful (it ran to completion).
      
      By changing the method of launching the Configuration Wizard,
      I was able to eliminate this observed problem. Now, the StartupTimer
      runs twice on a fresh install (just once for a normal startup),
      and the second run of the StartupTimerTick starts the configuration
      wizard.
      
      I also reverted to the previous behavior of dynamically creating
      and destroying the wizard for each use. There's just too much state
      information to restore if the config wizard is run a second time.
      
      Also, removed a bunch of old Registry settings readings (v3.10/11
      upgrade support) and commented out code.
      e1a79a56
    • Rob Swindell's avatar
      Update Id keyword. Not sure why. · e1534a74
      Rob Swindell authored
      e1534a74
    • Rob Swindell's avatar
      Resolve GCC warnings. · a40ca56d
      Rob Swindell authored
      a40ca56d
    • Rob Swindell's avatar
      Add install and symlinks targets · ae302832
      Rob Swindell authored
      ae302832
  3. Sep 11, 2020
  4. Sep 10, 2020
  5. Sep 09, 2020
    • Rob Swindell's avatar
      Replace fcopy with CopyFile (Win32 API function) on Windows. · 2b892eae
      Rob Swindell authored
      Thanks to Wilfred van Velzen (2:280/464) for the tip. CopyFile() reduced
      the 1GB file copy test (from and to CIFS/SMB) duration from 37 seconds
      to 5 seconds with very low CPU utilization!
      Created a wrapper for non-Windows OSes in xpdev/dirwrap. This is where
      non-Windows-OS-specific optimized versions may appear in the future,
      but for now it's just the previous fcopy() implementation (using a 256KB
      stack buffer). sbbs doesn't actually copy files very often, so this
      isn't as big of a deal as one might assume. The JavaScript global
      method: file_copy() also benefits from these improvements, so any
      scripts that use it (e.g. tickit.js) will also benefit. binkit.js has
      its own file-copy logic (using a 2MB buffer), so no change there.
      2b892eae
    • Rob Swindell's avatar
      Improve file copy (fcopy()) performance by more than an order of magnitude. · ee44592a
      Rob Swindell authored
      Using a 256KB read buffer for copying files (rather than one byte at a time).
      Apparently calling fread() is not the same as a bunch of calls to fgetc()
      after all. Or maybe it was the many calls to fputc() being replaced with
      fwrite(). Or maybe it was both. Anyway, decreased the time to copy a 1GB
      file from and to a Samba share over a Gb Ethernet network from 13 minutes
      to less than a minute. This matters when sbbs is backing up your data/mail
      base and the files are big. The mail base is locked while being backed up
      and the longer it takes to back up, the longer the mail base is locked and
      no mail can be received, read or sent during that time.
      ee44592a
    • Rob Swindell's avatar
      Spinning cursor over the hardware cursor - disabled. · a0d1e8d1
      Rob Swindell authored
      Define SPINNING_CURSOR_OVER_HARDWARE_CURSOR to enable this experimental
      feature. I'm not sure I like it better than the way the spinning cursor
      has been displayed for decades (to the left of the hardware cursor).
      a0d1e8d1
    • Rob Swindell's avatar
      Don't require a key-press when exiting a UIFC app run in ANSI mode on Win32 · 1a95772d
      Rob Swindell authored
      Breaking into a debugger, I found the task was hung in:
      _lock_file(stdin) called from common_flush_all(), so the stream was locked.
      Simply unlocking it resolves the problem.
      
      This bug has been around forever and was annoying but non-serious (just
      required the user/sysop to hit ENTER). So happy it's now fixed.
      1a95772d
  6. Sep 08, 2020
  7. Sep 07, 2020
  8. Sep 06, 2020
  9. Sep 05, 2020
  10. Sep 04, 2020
Loading