• src/sbbs3/scfg/scfg.c

    From Rob Swindell (on Windows 11)@VERT to Git commit to main/sbbs/master on Fri May 3 19:37:52 2024
    https://gitlab.synchro.net/main/sbbs/-/commit/c1847394828b08393e5d6f17
    Modified Files:
    src/sbbs3/scfg/scfg.c
    Log Message:
    Re-assign the dirnum and subnum fields after sorting dirs or subs

    The dirnum and subnum are used for the next/previous (left and right) arrow
    nav through sub-boards and directories. For message groups or file libs that are configured to auto-sort the sub-boards or directory list, when importing
    an unsorted list, the dirnum and subnum values would then be wrong after the qsort() at the end of the import thus making the left/right nav thing broken (jump to other groups/libs and such).

    This fixes that.

    Could I have fixed this by passing an index value to the next/prev_dirnum()
    and _subnum() functions and returning the next/previous index value instead of relying on the subnum/dirnum elemment to be correct? Maybe. <shrug>
    Do I like second guessing myself? Not really.

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Rob Swindell (on ChromeOS)@VERT to Git commit to main/sbbs/master on Mon May 13 22:50:27 2024
    https://gitlab.synchro.net/main/sbbs/-/commit/834c21eb95ffd488fbcf4ff4
    Modified Files:
    src/sbbs3/scfg/scfg.c
    Log Message:
    Allow SCFG ciolib and uifc parameters to be read from ctrl/scfg.ini

    If a sysop wants to override the default user interface/console I/O library behavior of SCFG without using command-line arguments, they can create a ctrl/scfg.ini file with the following optional [section] keys:

    [uifc]
    mode (advanced uses, e.g. disabling mouse support)
    height (in lines)
    insert (keyboard insert mode, not overwrite)
    esc_delay (ESC-key delay)

    [ciolib]
    mode (advanced uses)
    scaling (fractional values, e.g. 1.5, supported)
    height (in pixels)
    width (in pixels)

    Command-line arguments take precedence over scfg.ini settings (if set).

    The scfg.ini file is read *before* parsing command-line args, so if a ctrl directory is specified on the command-line (e.g. rather than via environment variable), the scfg.ini file won't be read from that specified location but rather the default (/sbbs/ctrl) or the SBBSCTRL env var value.

    Another attempt to make Nelgin happy and close out issue #749, though no, this doesn't auto-save the current parameters (you'll have to create/edit the scfg.ini file by hand).

    ---
    þ 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 May 15 19:15:04 2024
    https://gitlab.synchro.net/main/sbbs/-/commit/3bcd89b864fa03a3989a4101
    Modified Files:
    src/sbbs3/scfg/scfg.c
    Log Message:
    Overhaul scfg.ini keys

    All keys are now in the root/global section and they are now:

    video_mode (default: 42)
    uifc_mode (default: 0)
    ciolib_mode (default: 0)
    scaling (default: 0)
    lines (default: 25)
    insert (default: false)
    esc_delay (default: 25)

    ---
    þ 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 Sat May 25 15:19:06 2024
    https://gitlab.synchro.net/main/sbbs/-/commit/86730e2a9fdbb08ef9c4101a
    Modified Files:
    src/sbbs3/scfg/scfg.c
    Log Message:
    Use new read_uifc_ini() to scfg.ini or (if it doesn't exist), uifc.ini

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From rswindell@VERT to CVS commit on Sat Mar 14 20:58:13 2020
    src/sbbs3/scfg scfg.c 1.106 1.107
    Update of /cvsroot/sbbs/src/sbbs3/scfg
    In directory cvs:/tmp/cvs-serv32187

    Modified Files:
    scfg.c
    Log Message:
    Use puts() rather tha uifc.msg() if uifc hasn't been initialized.
    When importing an area list using the -import=<filename> option, if any
    error occurred, scfg would segfault while trying to display the error
    message because it was trying to use uifc.msg() which was a NULL pointer.



    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From rswindell@VERT to CVS commit on Tue Mar 24 20:27:45 2020
    src/sbbs3/scfg scfg.c 1.108 1.109
    Update of /cvsroot/sbbs/src/sbbs3/scfg
    In directory cvs:/tmp/cvs-serv13675

    Modified Files:
    scfg.c
    Log Message:
    Enter text file section internal codes in upper case
    (in the same vein as internal codes are entered in the rest of SCFG).


    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From rswindell@VERT to CVS commit on Tue Mar 24 20:46:16 2020
    src/sbbs3/scfg scfg.c 1.109 1.110
    Update of /cvsroot/sbbs/src/sbbs3/scfg
    In directory cvs:/tmp/cvs-serv18111

    Modified Files:
    scfg.c
    Log Message:
    Command shell internal codes should be entered in ALL CAPS TOO!


    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From rswindell@VERT to CVS commit on Tue Mar 24 20:53:34 2020
    src/sbbs3/scfg scfg.c 1.110 1.111
    Update of /cvsroot/sbbs/src/sbbs3/scfg
    In directory cvs:/tmp/cvs-serv19875

    Modified Files:
    scfg.c
    Log Message:
    Move Internal Code up (above Access Requirements) in the Command Shell
    and Text Section configuration menus to be consistent with other areas of
    SCFG.
    Don't default a new text section name to "ANSI Artwork" any more.


    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From rswindell@VERT to CVS commit on Tue Mar 31 13:23:21 2020
    src/sbbs3/scfg scfg.c 1.112 1.113
    Update of /cvsroot/sbbs/src/sbbs3/scfg
    In directory cvs:/tmp/cvs-serv2006

    Modified Files:
    scfg.c
    Log Message:
    Fix off-by-one in -faddr argument value parsing.


    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From rswindell@VERT to CVS commit on Fri Apr 3 13:50:40 2020
    src/sbbs3/scfg scfg.c 1.113 1.114
    Update of /cvsroot/sbbs/src/sbbs3/scfg
    In directory cvs:/tmp/cvs-serv13663

    Modified Files:
    scfg.c
    Log Message:
    Remove some useless cruft that appears to be leftover from the time when help files were external to the executable (to conserve that precious 640KB of RAM!) Some more use of SAFEPRINTF for good mesaure.


    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From rswindell@VERT to CVS commit on Tue Apr 7 13:31:15 2020
    src/sbbs3/scfg scfg.c 1.115 1.116
    Update of /cvsroot/sbbs/src/sbbs3/scfg
    In directory cvs:/home/rswindell/sbbs/src/sbbs3/scfg

    Modified Files:
    scfg.c
    Log Message:
    Eliminate unused variable: exepath (moreo cruft from external help files)



    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From rswindell@VERT to CVS commit on Sun Apr 12 11:28:36 2020
    src/sbbs3/scfg scfg.c 1.116 1.117
    Update of /cvsroot/sbbs/src/sbbs3/scfg
    In directory cvs:/home/rswindell/sbbs/src/sbbs3/scfg

    Modified Files:
    scfg.c
    Log Message:
    Added support for -iI to force curses ASCII mode.



    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From rswindell@VERT to CVS commit on Sun Aug 16 17:48:43 2020
    src/sbbs3/scfg scfg.c 1.117 1.118
    Update of /cvsroot/sbbs/src/sbbs3/scfg
    In directory cvs:/home/rswindell/sbbs.cvssync/src/sbbs3/scfg

    Modified Files:
    scfg.c
    Log Message:
    Merge from gitlab master branch (experiment).



    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Rob Swindell@VERT to Git commit to sbbs/master on Thu Sep 17 15:33:17 2020
    https://gitlab.synchro.net/sbbs/sbbs/-/commit/c1136cddc4f532b89a9d9f3d
    Modified Files:
    src/sbbs3/scfg/scfg.c
    Log Message:
    Added missing/better online help on Command Shells.

    ---
    ï¿­ Synchronet ï¿­ Vertrauen ï¿­ Home of Synchronet ï¿­ [vert/cvs/bbs].synchro.net
  • From Rob Swindell@VERT to Git commit to main/sbbs/master on Tue Dec 1 21:17:48 2020
    https://gitlab.synchro.net/main/sbbs/-/commit/62364efc6971545919e953e6
    Modified Files:
    src/sbbs3/scfg/scfg.c
    Log Message:
    Document the -insert option... finally.

    It enables the keyboard insert mode by default (for Nelgin).

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Rob Swindell@VERT to Git commit to main/sbbs/master on Thu Dec 17 01:09:00 2020
    https://gitlab.synchro.net/main/sbbs/-/commit/f632d40707b8b91f2175cbad
    Modified Files:
    src/sbbs3/scfg/scfg.c
    Log Message:
    Print the Synchronet REVISION (e.g. 318c) and Git info on stdout

    Uses the git_branch and git_hash files created in sbbs3 (first).

    ---
    þ 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 Nov 1 17:16:04 2024
    https://gitlab.synchro.net/main/sbbs/-/commit/cf33ffcf7a1e4b27b601625c
    Modified Files:
    src/sbbs3/scfg/scfg.c
    Log Message:
    The wizard progress bar is wider now (more pages), so need to adjust position

    to not overwrite help "screen" borders

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Rob Swindell (on ChromeOS)@VERT to Git commit to main/sbbs/master on Sun Dec 22 15:40:10 2024
    https://gitlab.synchro.net/main/sbbs/-/commit/c8d9d95c19cac4f2fd113abc
    Modified Files:
    src/sbbs3/scfg/scfg.c
    Log Message:
    When using -f (force save), don't write sbbs.ini contents to xtrn.ini

    Bug

    ---
    þ 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 Jan 1 15:08:34 2025
    https://gitlab.synchro.net/main/sbbs/-/commit/59fe82a21dcaace5f5a22f9a
    Modified Files:
    src/sbbs3/scfg/scfg.c
    Log Message:
    Add additional key/combinatino help text

    Many sysops probably don't realize these keys do special stuff.

    ---
    þ 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 Jan 1 15:08:34 2025
    https://gitlab.synchro.net/main/sbbs/-/commit/5fc601a83d4cc30fefe7aaa9
    Modified Files:
    src/sbbs3/scfg/scfg.c
    Log Message:
    Beautification/adjustment of the key/combo help

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Deucе@VERT to Git commit to main/sbbs/master on Mon Jan 6 13:47:10 2025
    https://gitlab.synchro.net/main/sbbs/-/commit/6dccd65657f2f6fbff03a8f1
    Modified Files:
    src/sbbs3/scfg/scfg.c
    Log Message:
    When we set the title, grab the length and use it.

    Since "FreeBSD" is longer than "Win32" or "Linux", we can't use
    a fixed position/length here or the version number will get chopped
    off.

    ---
    ï¿­ Synchronet ï¿­ Vertrauen ï¿­ Home of Synchronet ï¿­ [vert/cvs/bbs].synchro.net
  • From Deucе@VERT to Git commit to main/sbbs/master on Mon Jan 6 16:40:06 2025
    https://gitlab.synchro.net/main/sbbs/-/commit/c9220e83f6b490623e42a89f
    Modified Files:
    src/sbbs3/scfg/scfg.c
    Log Message:
    Check UIFC_XF_QUIT when asking to exit

    ---
    ï¿­ Synchronet ï¿­ Vertrauen ï¿­ Home of Synchronet ï¿­ [vert/cvs/bbs].synchro.net
  • From Deucе@VERT to Git commit to main/sbbs/master on Tue Jan 7 00:48:50 2025
    https://gitlab.synchro.net/main/sbbs/-/commit/985865eb2321ae4f5958ddfa
    Modified Files:
    src/sbbs3/scfg/scfg.c
    Log Message:
    Use the new thing to make "Save Changes?" things ATEXIT.

    If ESC is pressed, clears the UIFC_XF_QUIT and aborts the exit.
    Otherwise, continues exiting.

    Not sure if there's anywhere else that needs the ATEXIT change to
    avoid infinite exit loopage.

    ---
    ï¿­ Synchronet ï¿­ Vertrauen ï¿­ Home of Synchronet ï¿­ [vert/cvs/bbs].synchro.net