mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-06 03:20:26 +00:00
a77774f4dc
Resolves #410. notcurses_at_yx() accepted a cell*, but the gcluster of this cell was always set to 0. The EGC is instead a heap-allocated copy, returned as the primary return value. This is due to the absence of an egcpool to bind against. Existing callers can be converted thus: * instead of passing cell 'c', pass &(c)->attrword, &(c)->channels * either initialize 'c' with CELL_TRIVIAL_INITIALIZER, or set its gcluster field to 0 following the call I've updated all calls from tests/demos, updated the docs, and updated the C++ and Python wrappers. |
||
---|---|---|
.. | ||
src/notcurses | ||
LICENSE.txt | ||
README.md | ||
setup.cfg | ||
setup.py |
notcurses
Python bindings for the C [https://github.com/dankamongmen/notcurses notcurses] library. notcurses is a library for building complex, vibrant textual user interfaces (TUIs) on modern terminal emulators.
by nick black (nickblack@linux.com)
for more information, see my wiki.