• src/conio/cterm.c

    From rswindell@VERT to CVS commit on Thu Oct 26 18:42:46 2017
    src/conio cterm.c 1.155 1.156
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv14176

    Modified Files:
    cterm.c
    Log Message:
    Added range checks when initializing textinfo.screenwidth and screeheight (don't wrap around if value is > 255) - presumably these textinfo struct members were left as unsigned chars (8-bits) to preserve compatiblity with legacy conio apps, but I'm not sure. Perhaps we could increase these to
    at least 16-bit integers or bigger in the future, in which case these range checks would need to be removed or replaced.


    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From rswindell@VERT to CVS commit on Wed Jan 24 01:48:40 2018
    src/conio cterm.c 1.158 1.159
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv13109

    Modified Files:
    cterm.c
    Log Message:
    ...and I put the first-available-font-slot in front of the version number. Fixed.


    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Tue Jan 30 20:26:01 2018
    src/conio cterm.c 1.164 1.165
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv9785

    Modified Files:
    cterm.c
    Log Message:
    Don't indent left-aligned stuff.



    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From rswindell@VERT to CVS commit on Wed Jan 31 07:42:10 2018
    src/conio cterm.c 1.168 1.169
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv22548

    Modified Files:
    cterm.c
    Log Message:
    Fix Query Extended State information request (CSI=...n), broken in rev 1.162: no responses were being sent for a couple of different reasons (misplaced break and erroneous check of strcmp result).


    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Wed Jan 31 13:28:44 2018
    src/conio cterm.c 1.169 1.170
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv2173

    Modified Files:
    cterm.c
    Log Message:
    Fix SOS temrination handling




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Wed Jan 31 20:35:12 2018
    src/conio cterm.c 1.170 1.171
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv22332

    Modified Files:
    cterm.c
    Log Message:
    Major overhaul of ANSI parsing...

    Instead of each control function having separate code to parse sequences,
    use shared code which splits it into a structure and parses parameters.

    This fixes all sorts of ANSI bugs with leading zeros, default values, etc.

    Not all sequences have been updated yet, but I'll plug away at this slowly.

    Now, instead of a couple sequences having broken parsing, and them all being broken in different ways, all sequences can be broken in the same way all at once.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Wed Jan 31 23:24:48 2018
    src/conio cterm.c 1.171 1.172
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv9896

    Modified Files:
    cterm.c
    Log Message:
    Use common parsing code for all the things.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Wed Jan 31 23:37:55 2018
    src/conio cterm.c 1.172 1.173
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv11278

    Modified Files:
    cterm.c
    Log Message:
    "Fix" warnings.



    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Wed Jan 31 23:54:00 2018
    src/conio cterm.c 1.173 1.174
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv13062

    Modified Files:
    cterm.c
    Log Message:
    Create a function to check a sequence for legality and delete SO MUCH copy pasta.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Thu Feb 1 00:02:20 2018
    src/conio cterm.c 1.174 1.175
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv14011

    Modified Files:
    cterm.c
    Log Message:
    Parameter strings not starting with <, =, >, or ? can not contain any of those characters.



    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Thu Feb 1 00:30:35 2018
    src/conio cterm.c 1.175 1.176
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv27808

    Modified Files:
    cterm.c
    Log Message:
    Add case and comment for all standard sequences.
    Also, delineate standard from non-standard.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Thu Feb 1 21:58:05 2018
    src/conio cterm.c 1.178 1.179
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv20001

    Modified Files:
    cterm.c
    Log Message:
    Initial support for XTerm 256-color mode.

    You can now use CSI [ 38 ; 5 ; X m to set the foreground colour, and
    CSI [ 48 ; 5 ; X m to set the background colour from the palette and use
    any of the 256 standard colours, any of the 16 Commodore 64 colours (start
    at 256), or the two Atari colors (after the C64 colours). In addition,
    you can use the palette redefinition commands to extend the palette past
    those entries.

    NOTE: Since this is only CTerm so far, using SyncTERM and UIFC features
    will lose the palette blocks for the characters, and they will revert to
    their current 16-color value. Further, I haven't testing how this interacts with alternat fonts, blinking, etc yet.

    But it looks cool!



    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Fri Feb 2 00:10:44 2018
    src/conio cterm.c 1.181 1.182
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv17109

    Modified Files:
    cterm.c
    Log Message:
    Fix out-of-bounds write in sequence parsing.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Fri Feb 2 03:46:59 2018
    src/conio cterm.c 1.182 1.183
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv14194

    Modified Files:
    cterm.c
    Log Message:
    Initial Sixel support...

    List of known problems:
    1) Does not support different aspect ratios. This is simple.
    2) The VT-340 programmers manual says the default is to set all pixels,
    but all the sample Sixel files I've found don't specify that and expect
    zero bits to not be written. For now, we just never set the background
    colour until we figure out what's up with that.
    3) Line lengths don't seem to match up... maybe repeat is broken?
    4) Sixel graphics will not cause scrolling... the bottom will be chopped off
    if it reaches the bottom of the terminal.
    5) Sixel graphics do not scroll... they sit where they were drawn until
    overwritten by text boxes. They should scroll with the text.
    6) The background clear thing in the raster attribute command isn't supported.
    I want to figure out what's up with background and set all pixels before
    I work on this.
    7) Instead of parsing as it's read, it gets all the data in a string, then
    parses the string... this is wasteful.



    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Fri Feb 2 03:48:27 2018
    src/conio cterm.c 1.183 1.184
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv14987

    Modified Files:
    cterm.c
    Log Message:
    Yep, it was repeat... graphics look good now.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Fri Feb 2 07:06:49 2018
    src/conio cterm.c 1.185 1.186
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv2048

    Modified Files:
    cterm.c
    Log Message:
    Fix up cursor position after Sixels, and hide cursor while drawing.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Fri Feb 2 07:41:04 2018
    src/conio cterm.c 1.186 1.187
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv5502

    Modified Files:
    cterm.c
    Log Message:
    Fix up the rest of the Sixel stuff... only three minor issues remain:

    1) Instead of parsing as it's read, it gets all the data in a string, then
    parses the string... this is wasteful. This is the toughest one to fix.
    2) The background clear thing in the raster attribute command doesn't
    work if the image scrolls. Somthing Must Be Done.
    3) No save/restore pixel data, so menus and scrollback break images.
    This one is fairly straightforward to fix.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Fri Feb 2 19:27:19 2018
    src/conio cterm.c 1.187 1.188
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv1499

    Modified Files:
    cterm.c
    Log Message:
    Only draw the background on the first pass of a sixel line... this seems to
    be what is ment/expected.



    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Mon Feb 5 03:58:19 2018
    src/conio cterm.c 1.192 1.193
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv27231

    Modified Files:
    cterm.c
    Log Message:
    Set the height/width of the pixel buffer when erasing the sixel background.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Mon Feb 5 07:01:40 2018
    src/conio cterm.c 1.194 1.195
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv16762

    Modified Files:
    cterm.c
    Log Message:
    Make the mask big enough... should fix random memory clobbers and crashes
    in sixel stuff.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From rswindell@VERT to CVS commit on Wed Feb 7 03:56:08 2018
    src/conio cterm.c 1.197 1.198
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv7475

    Modified Files:
    cterm.c
    Log Message:
    Added support for querying the current font/char dimenions (height;width)
    with: CSI=3n
    Replaced a couple \e's and %c with \x1b's.



    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Wed Feb 7 06:40:04 2018
    src/conio cterm.c 1.198 1.199
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv22708

    Modified Files:
    cterm.c
    Log Message:
    Shift the palette up during cterm_write() operations... this prevents
    palette stuff from messing with the display.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Wed Feb 7 20:29:06 2018
    src/conio cterm.c 1.199 1.200
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv27695

    Modified Files:
    cterm.c
    Log Message:
    Take BGBRIGHT and NOBRIGHT video flags into account when updating the 32-bit colour. In general, this should work as exepected, except if you use XTerm 256-colour extensions to set the colour to the current standard one, then adjust the appropriate flag, the colour will change. I don't know if that's expected or not to be honest.

    Anyway, this fixes rendering of tcf - 22 - amidala.XB



    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Thu Feb 8 18:54:03 2018
    src/conio cterm.c 1.202 1.203
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv23078

    Modified Files:
    cterm.c
    Log Message:
    Fix scrollback foreground and background colours.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Thu Feb 8 19:27:33 2018
    src/conio cterm.c 1.204 1.205
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv26521

    Modified Files:
    cterm.c
    Log Message:
    Fix some errors in last commit



    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Fri Feb 9 01:52:15 2018
    src/conio cterm.c 1.206 1.207
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv2225

    Modified Files:
    cterm.c
    Log Message:
    Add CSI < Ps c command to query extended device attributes.

    Sixel support, loadable fonts, etc.



    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Fri Feb 9 03:28:40 2018
    src/conio cterm.c 1.208 1.209
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv15347

    Modified Files:
    cterm.c
    Log Message:
    Remove unused stuff.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Fri Feb 9 03:47:26 2018
    src/conio cterm.c 1.209 1.210
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv17614

    Modified Files:
    cterm.c
    Log Message:
    We can get the mode from cio_api.mode directly.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Fri Feb 9 20:30:33 2018
    src/conio cterm.c 1.211 1.212
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv32071

    Modified Files:
    cterm.c
    Log Message:
    Ye olde bugs in last commit commit.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Sat Feb 10 01:56:36 2018
    src/conio cterm.c 1.213 1.214
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv1256

    Modified Files:
    cterm.c
    Log Message:
    Fix CSI 7 m... how long has THAT been broken?




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From Noisome@VERT/DIGI52 to deuce on Sat Feb 10 05:36:42 2018
    src/conio cterm.c 1.211 1.212
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv32071

    Modified Files:
    cterm.c
    Log Message:
    Ye olde bugs in last commit commit.


    Having a heck of a time compiling after this commit:

    ...
    make -C ../../smblib lib
    make[2]: Entering directory '/home/noisome/sbbs/src/smblib'
    make[2]: Nothing to be done for 'lib'.
    make[2]: Leaving directory '/home/noisome/sbbs/src/smblib'
    Linking gcc.linux.armv7l.exe.release/umonitor ../../conio/gcc.linux.armv7l.lib.release/libciolib_mt.a(cterm.o): In function `cterm_write': cterm.c:(.text+0x59c6): undefined reference to `b64_decode' collect2: error: ld returned 1 exit status
    GNUmakefile:29: recipe for target 'gcc.linux.armv7l.exe.release/umonitor' failed make[1]: *** [gcc.linux.armv7l.exe.release/umonitor] Error 1
    make[1]: Leaving directory '/home/noisome/sbbs/src/sbbs3/umonitor' GNUmakefile:155: recipe for target 'umonitor' failed
    make: *** [umonitor] Error 2

    Looks like its not finding the base64.h/c in the necessary spots.

    ---
    ■ Synchronet ■ Digital 52 BBS - digital52.com
  • From deuce@VERT to CVS commit on Sat Feb 10 06:24:46 2018
    src/conio cterm.c 1.214 1.215
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv11834

    Modified Files:
    cterm.c
    Log Message:
    We need to use pputtext() when clearing due to possiblity of 256-colour background



    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From Digital Man@VERT to Noisome on Sat Feb 10 20:30:48 2018
    Re: Re: src/conio/cterm.c
    By: Noisome to deuce on Sat Feb 10 2018 12:36 am

    src/conio cterm.c 1.211 1.212
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv32071

    Modified Files:
    cterm.c
    Log Message:
    Ye olde bugs in last commit commit.


    Having a heck of a time compiling after this commit:

    ...
    make -C ../../smblib lib
    make[2]: Entering directory '/home/noisome/sbbs/src/smblib'
    make[2]: Nothing to be done for 'lib'.
    make[2]: Leaving directory '/home/noisome/sbbs/src/smblib'
    Linking gcc.linux.armv7l.exe.release/umonitor ../../conio/gcc.linux.armv7l.lib.release/libciolib_mt.a(cterm.o): In function `cterm_write': cterm.c:(.text+0x59c6): undefined reference to `b64_decode' collect2: error: ld returned 1 exit status

    Looks like its not finding the base64.h/c in the necessary spots.

    Correct. It was moved from sbbs3 to smblib a while ago. If you just do "make clean all" that should fix ya up.

    digital man

    This Is Spinal Tap quote #39:
    Airport Security Officer: Do you have any artificial plates or limbs?
    Norco, CA WX: 63.0°F, 63.0% humidity, 3 mph ESE wind, 0.00 inches rain/24hrs

    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From John McCoy@VERT to Digital Man on Sun Feb 11 23:48:58 2018
    On 02/10/18, Digital Man said the following...

    Linking gcc.linux.armv7l.exe.release/umonitor ../../conio/gcc.linux.armv7l.lib.release/libciolib_mt.a(cterm.o): In function `cterm_write': cterm.c:(.text+0x59c6): undefined reference to `b64_decode' collect2: error: ld returned 1 exit status
    Looks like its not finding the base64.h/c in the necessary spots.

    Correct. It was moved from sbbs3 to smblib a while ago. If you just do "make clean all" that should fix ya up.

    I just tried a completely fresh start from CVS and got the same thing:

    Linking gcc.linux.x64.exe.release/umonitor ../../conio/gcc.linux.x64.lib.release/libciolib_mt.a(cterm.o): In function `cterm_write':
    cterm.c:(.text+0x6615): undefined reference to `b64_decode'
    collect2: error: ld returned 1 exit status
    make[1]: *** [GNUmakefile:30: gcc.linux.x64.exe.release/umonitor] Error 1 make[1]: Leaving directory '/sbbs/src/sbbs3/umonitor'
    make: *** [GNUmakefile:155: umonitor] Error 2

    I looked at the command line the makefile is issuing where this fails: $(QUIET)$(CC) $(LDFLAGS) $(OBJS) -o $@ $(SMBLIB_LIBS) $(UIFC-MT_LIBS) $(CIOLIB-MT_LIBS) $(XPDEV-MT_LIBS)

    Since ciolib uses b64_decode from smblib in cterm.c, it should come before smblib in the list in order for the linker to know it needs to grab b64_decode from smblib when it comes across it. After changing the order, umonitor now links.

    Syncview also fails to link with the same error but doesn't have smblib in its list of libraries at all. Adding smblib after ciolib in that makefile allows
    it to link as well.

    --- Mystic BBS v1.12 A38 2018/01/01 (Linux/64)
    * Origin: Subcarrier BBS (1:249/400)
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From Digital Man@VERT to John McCoy on Mon Feb 12 03:17:45 2018
    Re: Re: src/conio/cterm.c
    By: John McCoy to Digital Man on Sun Feb 11 2018 06:48 pm

    On 02/10/18, Digital Man said the following...

    Linking gcc.linux.armv7l.exe.release/umonitor ../../conio/gcc.linux.armv7l.lib.release/libciolib_mt.a(cterm.o): In function `cterm_write': cterm.c:(.text+0x59c6): undefined reference to `b64_decode' collect2: error: ld returned 1 exit status
    Looks like its not finding the base64.h/c in the necessary spots.

    Correct. It was moved from sbbs3 to smblib a while ago. If you just do "make clean all" that should fix ya up.

    I just tried a completely fresh start from CVS and got the same thing:

    Linking gcc.linux.x64.exe.release/umonitor ../../conio/gcc.linux.x64.lib.release/libciolib_mt.a(cterm.o): In function `cterm_write':
    cterm.c:(.text+0x6615): undefined reference to `b64_decode'
    collect2: error: ld returned 1 exit status
    make[1]: *** [GNUmakefile:30: gcc.linux.x64.exe.release/umonitor] Error 1 make[1]: Leaving directory '/sbbs/src/sbbs3/umonitor'
    make: *** [GNUmakefile:155: umonitor] Error 2

    I looked at the command line the makefile is issuing where this fails: $(QUIET)$(CC) $(LDFLAGS) $(OBJS) -o $@ $(SMBLIB_LIBS) $(UIFC-MT_LIBS) $(CIOLIB-MT_LIBS) $(XPDEV-MT_LIBS)

    Since ciolib uses b64_decode from smblib in cterm.c, it should come before smblib in the list in order for the linker to know it needs to grab b64_decode from smblib when it comes across it. After changing the order, umonitor now links.

    Syncview also fails to link with the same error but doesn't have smblib in its list of libraries at all. Adding smblib after ciolib in that makefile allows
    it to link as well.

    Thanks and appreciate the analysis as well.

    digital man

    Synchronet/BBS Terminology Definition #31:
    ISDN = Integrated Services Digital Network
    Norco, CA WX: 54.5°F, 74.0% humidity, 0 mph SW wind, 0.00 inches rain/24hrs

    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Mon Feb 12 04:51:58 2018
    src/conio cterm.c 1.218 1.219
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv29577

    Modified Files:
    cterm.c
    Log Message:
    Fix replace_font() call using legacy font loading.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Mon Feb 12 06:06:52 2018
    src/conio cterm.c 1.219 1.220
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv4972

    Modified Files:
    cterm.c
    Log Message:
    Limit string sizes to 512MB This puts a cap of on the max asset size of 384MB




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Mon Feb 12 06:11:04 2018
    src/conio cterm.c 1.220 1.221
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv5475

    Modified Files:
    cterm.c
    Log Message:
    Some SOS handling cleanup.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Mon Feb 12 18:53:25 2018
    src/conio cterm.c 1.222 1.223
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv24649

    Modified Files:
    cterm.c
    Log Message:
    First pass at supporting all the XTerm 38/48m sequences, specifically:

    CSI 38 : 5 : X m
    CSI 38 ; 5 : X m
    CSI 38 ; 5 ; X m
    CSI 38 : 2 : Z : R : G : B m
    CSI 38 : 2 : R : G : B m
    CSI 38 ; 2 : Z : R : G : B m
    CSI 38 ; 2 : R : G : B m
    CSI 38 ; 2 ; R ; G ; B m

    X = palette slot
    Z = colour space identifier (ignored)
    R/G/B = Reg/Green/Blue values




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Wed Feb 14 18:21:22 2018
    src/conio cterm.c 1.226 1.227
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv17287

    Modified Files:
    cterm.c
    Log Message:
    Fix font loading... since setfont return value was inverted, check the
    inverted value.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Tue Feb 20 16:11:52 2018
    src/conio cterm.c 1.227 1.228
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv21054

    Modified Files:
    cterm.c
    Log Message:
    Fix memory leak handling SOS.
    -- coverity




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Tue Feb 20 16:13:47 2018
    src/conio cterm.c 1.228 1.229
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv21242

    Modified Files:
    cterm.c
    Log Message:
    Fix error handling unsupported 'n' FB sequences.
    --coverity



    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Tue Feb 20 16:34:17 2018
    src/conio cterm.c 1.229 1.230
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv23357

    Modified Files:
    cterm.c
    Log Message:
    Coverity likes arrays to be passed to functions using arrays.
    --coverity



    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Tue Feb 20 16:37:20 2018
    src/conio cterm.c 1.230 1.231
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv23626

    Modified Files:
    cterm.c
    Log Message:
    If we can't get the vmode, don't do sixel stuff.
    --coverity



    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Tue Feb 20 16:39:55 2018
    src/conio cterm.c 1.231 1.232
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv23946

    Modified Files:
    cterm.c
    Log Message:
    More vmode value testing... all impossible.
    --coverity



    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Tue Feb 20 16:43:39 2018
    src/conio cterm.c 1.232 1.233
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv24284

    Modified Files:
    cterm.c
    Log Message:
    No no, that's how how you test something...




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Tue Feb 20 16:45:41 2018
    src/conio cterm.c 1.233 1.234
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv24544

    Modified Files:
    cterm.c
    Log Message:
    More vmode == -1 tests.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Tue Feb 20 18:16:15 2018
    src/conio cterm.c 1.234 1.235
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv3706

    Modified Files:
    cterm.c
    Log Message:
    Some bugs found by Coverity
    Thanks Coverity!



    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Tue Feb 20 18:36:24 2018
    src/conio cterm.c 1.235 1.236
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv5905

    Modified Files:
    cterm.c
    Log Message:
    Another bug
    Thanks Coverity



    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Fri Mar 9 02:34:05 2018
    src/conio cterm.c 1.236 1.237
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv10803

    Modified Files:
    cterm.c
    Log Message:
    "fix" "issue" found by scan-build.
    Not impressed yet. :-)



    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Fri Mar 9 03:13:55 2018
    src/conio cterm.c 1.237 1.238
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv15373

    Modified Files:
    cterm.c
    Log Message:
    Fix potential NULL dereference on illegal strings commands.
    Found by scan-build.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Fri Mar 9 03:20:36 2018
    src/conio cterm.c 1.238 1.239
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv16211

    Modified Files:
    cterm.c
    Log Message:
    Fix use of uninitialized value when more than 16 bits of colour channel information are specified in an xterm rgb: color definition.
    Found by scan-build.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Fri Mar 9 03:55:40 2018
    src/conio cterm.c 1.239 1.240
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv20366

    Modified Files:
    cterm.c
    Log Message:
    Fix various useless assignments.
    Thanks scan-build!




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Sun Mar 25 01:27:17 2018
    src/conio cterm.c 1.240 1.241
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv23263

    Modified Files:
    cterm.c
    Log Message:
    Fix a large number of errors involving re-using an in-use index variable as
    a temp variable. Mostly impacting the setting of video flags.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Wed Apr 18 03:33:16 2018
    src/conio cterm.c 1.241 1.242
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv3482

    Modified Files:
    cterm.c
    Log Message:
    Copy the current font one into the CTerm altfont array during cterm_init()

    This should fix the issue with non-CP437 fonts reported by Kirkman.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From Kirkman@VERT/GUARDIAN to deuce on Wed Apr 18 14:25:07 2018
    Re: src/conio/cterm.c
    By: deuce to CVS commit on Tue Apr 17 2018 11:33 pm

    Copy the current font one into the CTerm altfont array during cterm_init() This should fix the issue with non-CP437 fonts reported by Kirkman.

    It's definitely much better than it was yesterday but I'm still seeing some character glitches in game title screens.

    There's a separate problem (which is what led me to compare 1.0 with 1.1b in the first place) where background colors don't get reset. Both versions have this problem. I'll send you screenshots for reference.

    --Josh

    ////--------------------------------------------------
    BiC -=- http://breakintochat.com -=- bbs wiki and blog

    ---
    ■ Synchronet
  • From deuce@VERT to CVS commit on Sun Oct 21 01:55:45 2018
    src/conio cterm.c 1.242 1.243
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv9250

    Modified Files:
    cterm.c
    Log Message:
    Translate C128 colour codes to CGA palette.
    This may mess up colour hacks in other places, but should fix C128 colours
    in the terminal.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Sun Oct 21 01:59:12 2018
    src/conio cterm.c 1.243 1.244
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv9744

    Modified Files:
    cterm.c
    Log Message:
    Add missing brace.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From rswindell@VERT to CVS commit on Sun Oct 21 04:33:56 2018
    src/conio cterm.c 1.244 1.245
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv29846

    Modified Files:
    cterm.c
    Log Message:
    Bug-fix for PETSCII modes: disable reverse video upon carriage-return (13). Should this also be done for 141 (shift-CR)? I'd love to know where you
    found the document which inspired the comment ("disabled reverse") - but
    the code just wasn't doing it and it was apparent when viewing PETSCII
    art and comparing the behavior with other emulators.



    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Tue Jul 9 19:17:57 2019
    src/conio cterm.c 1.246 1.247
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv21320

    Modified Files:
    cterm.c
    Log Message:
    Implement DECRQSS for SCR.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Tue Jul 9 20:35:24 2019
    src/conio cterm.c 1.248 1.249
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv30728

    Modified Files:
    cterm.c
    Log Message:
    Fix sub-parameter parsing and extended color DECRPSS.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Wed Jul 10 16:46:42 2019
    src/conio cterm.c 1.250 1.251
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv6048/conio

    Modified Files:
    cterm.c
    Log Message:
    Various minor issues found by Coverity.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Thu Jul 11 16:03:21 2019
    src/conio cterm.c 1.251 1.252
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv2820

    Modified Files:
    cterm.c
    Log Message:
    Fix vaious issues with saving extended colour codes.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Fri Jul 12 19:35:24 2019
    src/conio cterm.c 1.255 1.256
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv15348

    Modified Files:
    cterm.c
    Log Message:
    Fix error handling.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Sat Apr 11 09:34:30 2020
    src/conio cterm.c 1.262 1.263
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv1072

    Modified Files:
    cterm.c
    Log Message:
    Remove todo comment.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Sat Apr 11 09:51:23 2020
    src/conio cterm.c 1.263 1.264
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv3506

    Modified Files:
    cterm.c
    Log Message:
    Actually convert the y axis in coord_conv_xy().




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Sat Apr 11 10:36:35 2020
    src/conio cterm.c 1.264 1.265
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv17340

    Modified Files:
    cterm.c
    Log Message:
    "Implement" Character Position Backward




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Sat Apr 11 13:33:04 2020
    src/conio cterm.c 1.267 1.268
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv30709

    Modified Files:
    cterm.c
    Log Message:
    Clean up sixel position init.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Mon Apr 13 15:26:38 2020
    src/conio cterm.c 1.271 1.272
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv22895

    Modified Files:
    cterm.c
    Log Message:
    Fix nF sequence detection.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Mon Apr 13 19:04:36 2020
    src/conio cterm.c 1.272 1.273
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv30339

    Modified Files:
    cterm.c
    Log Message:
    Parse all valid sequences (which means suppressing them if not handled)
    Various sixel fixes for sixel scroll mode.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Tue Apr 14 09:03:39 2020
    src/conio cterm.c 1.273 1.274
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv2628

    Modified Files:
    cterm.c
    Log Message:
    Some bugs introduced by the sane coordinate changes...
    Found by Coverity.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Tue Apr 14 10:41:04 2020
    src/conio cterm.c 1.274 1.275
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv24745

    Modified Files:
    cterm.c
    Log Message:
    Remove unneeded assignments.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Wed Apr 15 14:46:50 2020
    src/conio cterm.c 1.276 1.277
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv31933

    Modified Files:
    cterm.c
    Log Message:
    Fix *z parameter parsing.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Wed Apr 15 15:35:31 2020
    src/conio cterm.c 1.277 1.278
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv6761

    Modified Files:
    cterm.c
    Log Message:
    Fix ATASCII newline handling, broken in coord update




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Thu Apr 16 21:45:07 2020
    src/conio cterm.c 1.279 1.280
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv19154

    Modified Files:
    cterm.c
    Log Message:
    Fix PETSCII bug introduced a few days ago.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Tue Apr 21 13:16:00 2020
    src/conio cterm.c 1.281 1.282
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv7421

    Modified Files:
    cterm.c
    Log Message:
    Work around what appears to be semaphores racing with mutexes on Win32.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Wed Apr 22 20:24:03 2020
    src/conio cterm.c 1.282 1.283
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv22426

    Modified Files:
    cterm.c
    Log Message:
    Fix dellines()




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Fri Apr 24 17:48:39 2020
    src/conio cterm.c 1.284 1.285
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv26509

    Modified Files:
    cterm.c
    Log Message:
    Fix CSI E and CSI F (were not going to column 1)




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Fri Apr 24 22:59:28 2020
    src/conio cterm.c 1.286 1.287
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv9646

    Modified Files:
    cterm.c
    Log Message:
    Don't allow TAB to move to the next line.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From Nightfox@VERT/DIGDIST to deuce on Sat Apr 25 02:41:34 2020
    Re: src/conio/cterm.c
    By: deuce to CVS commit on Fri Apr 24 2020 06:59 pm

    Don't allow TAB to move to the next line.

    I'll move to the next line with whatever soft drink I choose!

    Nightfox

    ---
    ■ Synchronet ■ Digital Distortion: digitaldistortionbbs.com
  • From deuce@VERT to CVS commit on Sat Apr 25 05:21:30 2020
    src/conio cterm.c 1.288 1.289
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv31127

    Modified Files:
    cterm.c
    Log Message:
    Fix macro space query.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Tue Apr 28 06:51:40 2020
    src/conio cterm.c 1.292 1.293
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv18827

    Modified Files:
    cterm.c
    Log Message:
    Fix off-by-one in shift which caused a crash.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Tue Apr 28 14:12:41 2020
    src/conio cterm.c 1.293 1.294
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv13592

    Modified Files:
    cterm.c
    Log Message:
    Fix pixel-based checksum calculation.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Tue Apr 28 17:23:42 2020
    src/conio cterm.c 1.295 1.296
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv17465

    Modified Files:
    cterm.c
    Log Message:
    DECCKSR is documented incorrectly on the XTerm website. It's always
    DSR Pn ! ~ x x x x ST




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Tue Apr 28 17:45:07 2020
    src/conio cterm.c 1.296 1.297
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv20742

    Modified Files:
    cterm.c
    Log Message:
    Fix out-of-bounds read in do_backtab().




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Tue Apr 28 18:29:47 2020
    src/conio cterm.c 1.297 1.298
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv27756

    Modified Files:
    cterm.c
    Log Message:
    DECCKSR specifies upper-case hex digits.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Wed Apr 29 06:20:56 2020
    src/conio cterm.c 1.298 1.299
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv4975

    Modified Files:
    cterm.c
    Log Message:
    Fix tab handling code.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Wed Apr 29 07:47:09 2020
    src/conio cterm.c 1.299 1.300
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv20042

    Modified Files:
    cterm.c
    Log Message:
    memmove() for overlapping memory.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Wed Apr 29 08:24:35 2020
    src/conio cterm.c 1.300 1.301
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv28348

    Modified Files:
    cterm.c
    Log Message:
    Better cleanup of cterm sessions.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Wed Apr 29 17:54:30 2020
    src/conio cterm.c 1.301 1.302
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv27998

    Modified Files:
    cterm.c
    Log Message:
    Add separate term clreol()
    Reset mouse state on terminal reset




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Wed Apr 29 18:29:01 2020
    src/conio cterm.c 1.302 1.303
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv2295

    Modified Files:
    cterm.c
    Log Message:
    Fix autowrap disable.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Wed Apr 29 20:16:16 2020
    src/conio cterm.c 1.303 1.304
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv22913

    Modified Files:
    cterm.c
    Log Message:
    Apply CSI t colours immediately.
    Fixes issue with Pablo 24-bit colour ANSIs.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Thu Apr 30 15:18:21 2020
    src/conio cterm.c 1.304 1.305
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv30126

    Modified Files:
    cterm.c
    Log Message:
    Ensure cterm->strbuf is always NUL terminated (no functional change)




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Sat May 2 00:20:27 2020
    src/conio cterm.c 1.306 1.307
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv16795

    Modified Files:
    cterm.c
    Log Message:
    Don't use a shadow palette unless CONIO_OPT_EXTENDED_PALETTE is set.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Sat May 2 07:22:06 2020
    src/conio cterm.c 1.308 1.309
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv12727

    Modified Files:
    cterm.c
    Log Message:
    Fix bug in last commit that resulted in C64 colours being broken for outputs with extended palettes.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Sun May 3 02:00:04 2020
    src/conio cterm.c 1.309 1.310
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv23943

    Modified Files:
    cterm.c
    Log Message:
    Fix C128 40-column colour mapping. The palette was changed to match C64,
    but the mapping wasn't.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Sun May 3 04:26:30 2020
    src/conio cterm.c 1.310 1.311
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv18057

    Modified Files:
    cterm.c
    Log Message:
    Fix weird font reset issue in PETSCII emulation.



    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From deuce@VERT to CVS commit on Sun May 3 04:56:15 2020
    src/conio cterm.c 1.311 1.312
    Update of /cvsroot/sbbs/src/conio
    In directory cvs:/tmp/cvs-serv23370

    Modified Files:
    cterm.c
    Log Message:
    Fix the last fix so it's fixed.




    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From Deucе@VERT to Git commit to main/sbbs/master on Sat Mar 13 11:26:13 2021
    https://gitlab.synchro.net/main/sbbs/-/commit/ec06a1687a66ddd48fd6aa38
    Modified Files:
    src/conio/cterm.c
    Log Message:
    Fix issue with ATASCII delete/insert character.

    Before the Unicode support was added, displaying a NUL would clear
    the cell, but now it is translated. For ATASCII, this results in
    a heart character being displayed instead of an empty cell when
    inserting or deleting characters.

    Fixes bug #28 on Sourceforge.

    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From Deucе@VERT to Git commit to main/sbbs/master on Sat Mar 20 11:48:38 2021
    https://gitlab.synchro.net/main/sbbs/-/commit/2f33ee734bc31462d7ce4e7f
    Modified Files:
    src/conio/cterm.c
    Log Message:
    Fix error on scroll with left/right margins

    Scrolling would clear the line to the end of the screen, not the
    end of the scrolling region.

    Sorry echicken.

    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From Deucе@VERT to Git commit to main/sbbs/master on Sat Mar 20 12:22:05 2021
    https://gitlab.synchro.net/main/sbbs/-/commit/5abc5cdae5f652cf7a478b44
    Modified Files:
    src/conio/cterm.c
    Log Message:
    Ensure cleared block in in scrolling region

    Do not clear at the current X/Y on scroll (derp)

    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From Deucе@VERT to Git commit to main/sbbs/master on Fri Feb 25 10:54:50 2022
    https://gitlab.synchro.net/main/sbbs/-/commit/37cdd991af1c54c30752bcc6
    Modified Files:
    src/conio/cterm.c
    Log Message:
    Add a UINT64_MAX hack for VS 2022

    Not sure why this isn't defined from inttypes.h, but blah.

    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From Deucе@VERT to Git commit to main/sbbs/master on Wed Oct 12 11:05:11 2022
    https://gitlab.synchro.net/main/sbbs/-/commit/bb233b89b205ae98af9eacb6
    Modified Files:
    src/conio/cterm.c
    Log Message:
    Continue fixing a coverity issue.

    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From Deucе@VERT to Git commit to main/sbbs/master on Thu Dec 22 23:35:08 2022
    https://gitlab.synchro.net/main/sbbs/-/commit/1e9dcf477a5de94298f9bb74
    Modified Files:
    src/conio/cterm.c
    Log Message:
    Clamp sixel repeat to 0x7fff per specification.

    This is the issue behind CVE-2022-24130 in xterm.
    Reported against SyncTERM by Autumn Lamonte (Thanks!)
    Discussion here: https://gitlab.com/klamonte/jexer/-/issues/105

    Closes SyncTERM bug 79.

    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From Deucе@VERT to Git commit to main/sbbs/master on Mon May 15 11:48:25 2023
    https://gitlab.synchro.net/main/sbbs/-/commit/5c12fc2e5c7362a36fd68c23
    Modified Files:
    src/conio/cterm.c
    Log Message:
    Fix memory leak and uninitialized acces in sixel graphics.

    Properly initialize sixel mask width/height.
    Free sx_mask->bits when finished.

    These were broken by the PPM feature commit 4975b41

    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From Deucе@VERT to Git commit to main/sbbs/master on Wed May 31 13:27:51 2023
    https://gitlab.synchro.net/main/sbbs/-/commit/cda7525d78b0948996c19561
    Modified Files:
    src/conio/cterm.c
    Log Message:
    Fix off-by-one in delete lines

    Previously, delete lines would erase the line above the current one.
    This was visible in vim which makes extensive use of delete line
    to scroll.

    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From Deucе@VERT to Git commit to main/sbbs/master on Fri Jun 9 11:24:59 2023
    https://gitlab.synchro.net/main/sbbs/-/commit/e5c75c3a8268961c2552edb9
    Modified Files:
    src/conio/cterm.c
    Log Message:
    Add comments to hopefully shut up Coverity

    ---
    ■ 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 Jun 26 20:24:21 2023
    https://gitlab.synchro.net/main/sbbs/-/commit/80379e9161895f4241bc30f3
    Modified Files:
    src/conio/cterm.c
    Log Message:
    Fix warning: ‘end’ may be used uninitialized in this function

    Fix multiple warning: ignoring return value of ‘asprintf’
    declared with attribute ‘warn_unused_result’

    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From Deucе@VERT to Git commit to main/sbbs/master on Wed Jun 28 10:01:38 2023
    https://gitlab.synchro.net/main/sbbs/-/commit/1181333075e9674aad79ff3e
    Modified Files:
    src/conio/cterm.c
    Log Message:
    Fix for 80379e916

    The commit just the zero-length behaviour from uninitialized use
    with possible undefined behaviour to guaranteed undefined behaviour.

    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From Deucе@VERT to Git commit to main/sbbs/master on Sat Feb 10 22:28:17 2024
    https://gitlab.synchro.net/main/sbbs/-/commit/2f436df7f1606aa07ca81b1a
    Modified Files:
    src/conio/cterm.c
    Log Message:
    Fix macro recusion protection for macros 32-63.

    Found by MSVC

    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From Deucе@VERT to Git commit to main/sbbs/master on Sun Feb 11 13:43:18 2024
    https://gitlab.synchro.net/main/sbbs/-/commit/6621c97c34e6e1f193e45bb3
    Modified Files:
    src/conio/cterm.c
    Log Message:
    Disable MSVC warnings 4244 and 4267.

    The alternative is to explicitly copy/paste the type everywhere
    forcing the compiler to do the only thing it could possibly do,
    and making it painful to change a type later.

    Honestly, in my opinion, these warnings should just be disabled
    completely everywhere.

    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From Deucе@VERT to Git commit to main/sbbs/master on Sun Feb 18 17:38:55 2024
    https://gitlab.synchro.net/main/sbbs/-/commit/21c6201278ed7f0b9ee5f45e
    Modified Files:
    src/conio/cterm.c
    Log Message:
    Fix doorway mode.

    CSI=255h was not entering doorway mode anymore.

    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From Deucе@VERT to Git commit to main/sbbs/master on Thu Feb 22 06:50:40 2024
    https://gitlab.synchro.net/main/sbbs/-/commit/dc2b586763a0c4a1be105efa
    Modified Files:
    src/conio/cterm.c
    Log Message:
    Use default instead of enum value in warning suppression.

    This will hopefully keep both Coverity and compilers happy.

    ---
    ■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net
  • From Deucе@VERT to Git commit to main/sbbs/master on Thu Mar 28 06:28:53 2024
    https://gitlab.synchro.net/main/sbbs/-/commit/28bfe4a1424f57bb6abf2f8a
    Modified Files:
    src/conio/cterm.c
    Log Message:
    When ANSI Music is enabled, CSI M with parameters is still delete line

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