• src/sbbs3/load_cfg.c

    From Rob Swindell (on macOS)@VERT to Git commit to main/sbbs/master on Sun Mar 9 22:57:35 2025
    https://gitlab.synchro.net/main/sbbs/-/commit/7e1189ca981b16ec9335c84e
    Modified Files:
    src/sbbs3/load_cfg.c
    Log Message:
    Don't try to load node.ini if no nodes are configured in main.ini

    But set the error string to hopefully be printed as a warning

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Rob Swindell (on Windows 11)@VERT to Git commit to main/sbbs/master on Thu Mar 27 18:50:18 2025
    https://gitlab.synchro.net/main/sbbs/-/commit/f09df78e24809b7eb797cac7
    Modified Files:
    src/sbbs3/load_cfg.c
    Log Message:
    Better range checking of the configure node paths

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Rob Swindell (on Windows 11)@VERT to Git commit to main/sbbs/master on Wed Apr 2 22:58:19 2025
    https://gitlab.synchro.net/main/sbbs/-/commit/e47530ffd0e039fb304806b5
    Modified Files:
    src/sbbs3/load_cfg.c
    Log Message:
    sys_timezone() no longer modifies the scfg_t.sys_timezone member itself

    ... just the returned copy (when toggling the DST flag).

    This resolve the issue of SCFG->System menu detecting changes by the sysop
    (and prompting to Save Changes when exiting) when no changes were actually made, just that DST had been auto-enabled/disabled based on the date.

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Rob Swindell (on Windows 11)@VERT to Git commit to main/sbbs/master on Fri Aug 8 14:00:10 2025
    https://gitlab.synchro.net/main/sbbs/-/commit/4e60588b9e88e642c4ccfd43
    Modified Files:
    src/sbbs3/scfg/scfgsys.c
    Log Message:
    Setting max_getkey_inactivity to 0 does not disable user inactivity detection

    0 or < 1 is not a "sentinel value" for this setting in sbbs; there is no "Unlimited" value for this setting, so don't report it as such in SCFG->System ->Advanced->Maximum User Inactivity. Setting
  • From Rob Swindell (on Windows 11)@VERT to Git commit to main/sbbs/master on Fri Aug 8 15:12:18 2025
    https://gitlab.synchro.net/main/sbbs/-/commit/4e60588b9e88e642c4ccfd43
    Modified Files:
    src/sbbs3/scfg/scfgsys.c
    Log Message:
    Setting max_getkey_inactivity to 0 does not disable user inactivity detection

    0 or < 1 is not a "sentinel value" for this setting in sbbs; there is no "Unlimited" value for this setting, so don't report it as such in SCFG->System ->Advanced->Maximum User Inactivity. Setting this to 0 would just create a near-immediate user input timeout (and not something a sysop should do).

    This fixes issue #957