Skip to content

Commit

Permalink
Update README with more 1.1.0 changes, and let's tag a release.
Browse files Browse the repository at this point in the history
  • Loading branch information
nsf committed Aug 21, 2016
1 parent 07f0ed7 commit aba3448
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions README.rst
Expand Up @@ -32,7 +32,7 @@ libraries. If you want to install a shared library or static library alone, use
the following as an install command::

./waf install --targets=termbox_shared --destdir=PREFIX (shared library)

or::

./waf install --targets=termbox_static --destdir=PREFIX (static library)
Expand All @@ -59,17 +59,17 @@ Termbox's interface only consists of 12 functions::

tb_init() // initialization
tb_shutdown() // shutdown

tb_width() // width of the terminal screen
tb_height() // height of the terminal screen

tb_clear() // clear buffer
tb_present() // sync internal buffer with terminal

tb_put_cell()
tb_change_cell()
tb_blit() // drawing functions

tb_select_input_mode() // change input mode
tb_peek_event() // peek a keyboard event
tb_poll_event() // wait for a keyboard event
Expand Down Expand Up @@ -105,13 +105,21 @@ and questions to me: no.smile.face@gmail.com.
CHANGES
=======

v1.1.0 (not released yet):
v1.1.0:

- API: tb_width() and tb_height() are guaranteed to be negative if the termbox
wasn't initialized.
- API: Output mode switching is now possible, adds 256-color and grayscale color
modes.
- API: Better tb_blit() function. Thanks, Gunnar Zötl <gz@tset.de>.
- API: New tb_cell_buffer() function for direct back buffer access.
- API: Add new init function variants which allow using arbitrary file
descriptor as a terminal.
- Improvements in input handling code.
- Calling tb_shutdown() twice is detected and results in abort() to discourage
doing so.
- Mouse event handling is ported from termbox-go.
- Paint demo port from termbox-go to demonstrate mouse handling capabilities.
- Bug fixes in code and documentation.

v1.0.0:
Expand Down

0 comments on commit aba3448

Please sign in to comment.