• src/sbbs3/js_console.cpp

    From Rob Swindell (on Windows 11)@VERT to Git commit to main/sbbs/master on Tue Feb 17 23:23:48 2026
    https://gitlab.synchro.net/main/sbbs/-/commit/e62994f1451d761620278c03
    Modified Files:
    src/sbbs3/js_console.cpp
    Log Message:
    Fix wrong return type in uselect_items_getter()

    No warning in MSVC, Warning in GCC, error in clang. :-(

    ---
    þ 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 Feb 18 10:36:59 2026
    https://gitlab.synchro.net/main/sbbs/-/commit/a14b0383dcc9a0045cddeac2
    Modified Files:
    src/sbbs3/js_console.cpp
    Log Message:
    Fix new (very small) memory leak when getting console.uselect_title

    Coverity CID 644273

    ---
    þ 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 Feb 18 20:22:45 2026
    https://gitlab.synchro.net/main/sbbs/-/commit/4767109de0b904974c3c8826
    Modified Files:
    src/sbbs3/js_console.cpp
    Log Message:
    Clarify/update JSDOCS for console.uselect() method

    It wasn't clear the title and item needed to be a string (well, at least a non-number).
    Clarify the new properties mentioned were added in v3.21.

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Rob Swindell (on ChromeOS)@VERT to Git commit to main/sbbs/master on Fri Feb 20 00:17:08 2026
    https://gitlab.synchro.net/main/sbbs/-/commit/5487accf56b84b695a73c452
    Modified Files:
    src/sbbs3/js_console.cpp
    Log Message:
    Add JSDOCS descriptions of color_list and uselect_items properties

    ---
    þ 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 Tue Mar 31 21:12:06 2026
    https://gitlab.synchro.net/main/sbbs/-/commit/460361f2350c6acb713a9910
    Modified Files:
    src/sbbs3/js_console.cpp
    Log Message:
    Better argument validation and error reporting from console.gotoxy()

    e.g. console.gotoxy()
    Error: Insufficient Arguments (0 provided, a minimum of 1 expected)

    e.g. console.gotoxy(false)
    Error: console.gotoxy: invalid argument type (expected object or number-pair)

    e.g. console.gotoxy(0)
    Error: Insufficient Arguments (1 provided, a minimum of 2 expected)

    e.g. console.gotoxy({})
    Error: console.gotoxy: object argument 'x' property is an unexpected 'null' or 'undefined' value

    See issue #1107 for details

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net