Found in Version is 1.8... was this verified on 1.8 as well, or is it a 1.9a-only issue?
Extra chars sent with some keypresses in Wayland mode
Should be fixed in git now.
Disconnecting (alt-H) in serial port connection hangs and ultimately crashes
This could be done in 1.9a today, putting the file in the per-BBS cache directory. Adding readLine() and writeLine() methods to the File object to make it easier right now.
Actually, if you put that in scripts you would need to manually trigger it, so just:\ import "syncterm" for Hook Hook.onInput(0x0a) { |b| "\r\n" } Then, after you connect, do Ctrl+` and type import CRLF. To use the first one automagically, that script would need to go in scripts/auto/connected
Actually, if you put that in scripts you would need to manually trigger it, so just:\ import "syncterm" for BBS, Hook Hook.onInput(0x0a) { |b| "\r\n" } Then, after you connect, do Ctrl+` and type import CRLF. To use the first one automagically, that script would need to go in scripts/auto/connected
So, I've added the ability for a Wren onInput() hook to return a string that replaces a byte... so you could do this pretty easily now with a wren script that checks the BBS name and if it's one that you want to expand LF with have it return "\r\n". Something like: import "syncterm" for BBS, Hook if (BBS.name == "Dev Board") { Hook.onInput(0x0a) { |b| "\r\n" } } In a "CRLF.wren" file in the script directory would do it. The "stuff" for Wren configuration isn't there yet, that's still a ways out on...