Skip to content

Tags: stefanhaller/tcell

Tags

v2.6.1

Toggle v2.6.1's commit message
[SQUASHED] focus-events

v2.6.0

Toggle v2.6.0's commit message
minor style fixup

v2.5.4

Toggle v2.5.4's commit message
Fix status badges (broken by shields.io)

v2.5.3

Toggle v2.5.3's commit message
minor markup fixes

v2.5.2

Toggle v2.5.2's commit message
Better handling for monochrome.

We will automatically select an inverse video mode if we cannot
find any colors at all.  This should help some fallbacks.

v2.5.1

Toggle v2.5.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Send AttrOff when clearing the screen (gdamore#523)

In tcell v2.4, the following calls would reset the screen
to its default color:

1. SetContent() to change the bg color to maroon.
2. Clear()
3. Show()

In tcell v2.5, the behavior changed to clear the screen
to the last-used style passed to SetContent.

This happens because commit 62f5502 set the dirty flag
to false for all cells, on the assumption that sending
ti.Clear would clear the cells anyway. Unlike the drawCell
calls triggered by the dirty flag, however, clearScreen
does not send AttrOff. This causes the screen to clear
to the last-used background color.

v2.5.0

Toggle v2.5.0's commit message
fixes gdamore#509 style disappears

v2.4.0

Toggle v2.4.0's commit message
Fix links to tslocum's packages. Add link to tutorial from readme.

v2.3.11

Toggle v2.3.11's commit message
Wait for output to drain.

Hopefully this fixes unpredicatable output when the program is stopping.

v2.3.10

Toggle v2.3.10's commit message
Add a stdin version of Tty, and handle unset terminal sizes sanely.