tcell-term v0.10.0
- Preserve the environment of the start command
- Buffer events before sending to host
tcell-term v0.9.0
- Improve panic handling
- Fix CSI REP handling
- Fix broken test
tcell-term v0.8.0
- Fixes a bug when handling CUP with only one param
v0.7.1
Fix a bug where calling Close if the terminal didn't start would cause a
panic
tcell-term v0.7.0
v0.7.0 is a complete rewrite of tcell-term. Notably, the parser was
rewritten to match the standard state diagram on vt100.net.
Additionally, the implementation was rewritten to better facilitate
testing. The library now "passes" all Alacritty reference tests
available, save for one (which is intentionally not implemented).
- Rewrite parser
- Rewrite implementation
- Remove WidgetWatcher interface implementation in favor of
Attach/Detach
- Improve key handling
- Improve mouse support
- Improve redraw messaging (don't send a message every 8ms!)
tcell-term v0.6.0
- Send BEL event when bell is rang
tcell-term v0.5.0
- Fix leaking go routines
- Fix panic when on sequence \x1b[0G
- Accept a smaller interface for View using an internal implementation
v0.4.0
- Always set TERM=xterm-256 for better compatibility
- Fix some RGB parsing sequences
- Fix splitting of UTF8 bytes causing render issues