Skip to content

Commit

Permalink
Update websocket.md with fix for defCrsrAttr issue
Browse files Browse the repository at this point in the history
Documentation is wrong when it comes to configuring the VTX client.

defCrsrAttr is an array not a number and it prevents the VTX client from connecting.

Ref: 
NuSkooler#500
codewar65/VTX_ClientServer#9
  • Loading branch information
notepid authored Mar 19, 2024
1 parent 4133d16 commit 89a3bce
Showing 1 changed file with 19 additions and 13 deletions.
32 changes: 19 additions & 13 deletions docs/_docs/servers/loginservers/websocket.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,19 +81,25 @@ webserver, and unpack it to a temporary directory.
sysName: "Your Awesome BBS",
wsConnect: "wss://your-hostname.here:8811",
term: "ansi-bbs",
codePage: "CP437",
fontName: "UVGA16",
fontSize: "24px",
crtCols: 80,
crtRows: 25,
crtHistory: 500,
xScale: 1,
initStr: "",
defPageAttr: 0x1010,
defCrsrAttr: 0x0207,
defCellAttr: 0x0007,
telnet: 1,
autoConnect: 0
codePage: "CP437",
fontName: "UVGA16",
fontSize: "24px",
crtCols: 80,
crtRows: 25,
crtHistory: 500,
xScale: 1,
initStr: "",
telnet: 1,
wsProtocol: 'telnet',
wsDataType: 'arraybuffer',
autoConnect: 0,
defPageBorder: 232,
defPageBG: 0x10,
defCrsrFG: 0x07,
defCrsrAttr: ['thick', 'horizontal'],
defCellFG: 0x07,
defCellBG: 0x00,
defCellAttr: []
};
````
Expand Down

0 comments on commit 89a3bce

Please sign in to comment.