• PCBoard shell bug

    From Thomas McCaffery@1:103/705 to GitLab issue in main/sbbs on Mon Jun 15 12:13:32 2026
    open https://gitlab.synchro.net/main/sbbs/-/issues/1164

    This line will not print @codes

    `if (!console.yesno("\r\n\x01b\x01hUse \x01c@LASTNEW@\x01b for new file scan date")) {`

    Proposed fix:

    `var last; if (bbs.new_file_time == 0) last = "Never"; else last = strftime("%a %b %d %Y %H:%M:%S", bbs.new_file_time);`

    `if (!console.yesno("\r\nUse " + last + " for new file scan date/time")) { var val = bbs.get_newscantime(bbs.new_file_time); if (val !== null) bbs.new_file_time = val; }`
    --- SBBSecho 3.37-Linux
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Rob Swindell@1:103/705 to GitLab note in main/sbbs on Mon Jun 15 13:14:08 2026
    https://gitlab.synchro.net/main/sbbs/-/issues/1164#note_9387

    Or use: `system.timestr(bbs.new_file_time)` or `bbs.atcode("LASTNEW")` instead. --- SBBSecho 3.37-Linux
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)