Commit Graph

462 Commits (master)

Author SHA1 Message Date
nick black b6d1137f8e
[NEWS] mention #2687 infinite loop fix 1 year ago
nick black 8dbfe858d9
v3.0.8 2 years ago
nick black 2d7350c9ac
v3.0.7 2 years ago
nick black ceb8cfef0a [NEWS] mention tab support #1233 2 years ago
nick black ffc134e7a3
[NEWS] update for 3.0.7 2 years ago
nick black 810f8694ec
v3.0.6 2 years ago
nick black beea4d62d8
restore nccell_[bf]channel using safe ncchannels_bchannel #2571 2 years ago
nick black 860d06384d
ncchannels_bchannel: operate only on alpha+coloring bits #2571 2 years ago
nick black e33cb62de9
[ncplanes] remove ncplane_set_[bf]channel() #2571 2 years ago
nick black 1cfe1360a4
[NEWS] add 3.0.6 entry 2 years ago
nick black dc845b5dcc
v3.0.5 2 years ago
nick black 72678835f2
[ncpalette] add ncpalette_get() for orthogonality #2565 2 years ago
José Luis Cruz 11e7e9211d
fix typo 2 years ago
nick black b85c1f1dad
[NEWS] mention input changes 2 years ago
nick black 5943d4e256
v3.0.4 2 years ago
nick black 4b49cb4592 add meta modifier handling #2522
Handle Meta modifier in Kitty and XTMODKEYS. Add Meta
indicator to notcurses-input. Update man page. Add
NCKEY_META_{SHIFT, CTRL, ALT, META} constants. Add
"modifiers" field to ncinput struct. Add inline
functions for testing modifiers. Remove special-casing
in Kitty protocol that capitalized all lowercase ASCII
when ctrl was pressed; we don't do this for XTMODKEYS.
2 years ago
nick black 524a2f0a54
mention XTMODKEYS level 2 in NEWS 2 years ago
nick black b4bc770127
v3.0.3 2 years ago
nick black 635da75c3c [quantanal] recover control sequence with ncplane_at_yx() 2 years ago
nick black aa7903b370 implement ncvisual_from_sixel() 2 years ago
nick black bb91c170dd implement sixel_as_rgba() #1724 2 years ago
nick black e0c5cf5838
NCOPTION_SCROLLING, alias NCOPTION_CLI_MODE 2 years ago
nick black 86e09bec49
v3.0.2 2 years ago
nick black 041a083a0f add ncplane_cursor_y()/ncplane_cursor_x() 2 years ago
nick black 5c2b87a89d [NEWS] mention nctree is dynamic now 2 years ago
nick black 1b2e58124c declate nctree_add() and nctree_del() #2458 2 years ago
nick black ba1c79b66e add nccell_load_ucs32 2 years ago
nick black 4c17970ba0
detect and expose default foreground color #2432 2 years ago
nick black 6e42d5c52e
add notcurses_default_background() #2432 2 years ago
nick black 977a4ed966 introduce NCPLANE_OPTIONS_{VSCROLL, AUTOGROW} #2440 2 years ago
nick black b7785d1272 declare ncplane_growtext() 2 years ago
nick black 7bbc669813
v3.0.0 2 years ago
nick black 538dff91ba
[input] provide utf8 form in ncinput 3 years ago
nick black 7a91a2f905 normalize cell initializer names (prefix with NC) 3 years ago
nick black 369602196b
[NEWS] ncstrwidth takeover 3 years ago
nick black d1c9dd93cf
[core] add ncplane_resize_placewithin #1478 3 years ago
nick black b91f150e96
[render] call notcurses_refresh() on sigcont #281 3 years ago
nick black f401f2b4f1
[ncplayer] default to pixel blitting #2340 3 years ago
nick black 4c0e5aa369
[NEWS] update with 2.4.9 release date. on to 3.0.0! 3 years ago
nick black 5ff59ce421
[putstr] take size_t* for sbytes, not int* #2331 3 years ago
nick black b42587a1b9
notcurses_getc -> notcurses_get, absolute deadlines 3 years ago
nick black fe924be5ef
ABI3 changes (#2333)
Long-planned changes for API/ABI3 #1777

* remove old-style notcurses_ rendering functions
* Make notcurses_render() a static inline wrapper around
 ncpile_render(). Remove the deprecated
 notcurses_render_to_file() and ncpile_render_to_file().
* ncstrwidth() becomes static inline wrapper #1777
* remove deprecated ncvisual_subtitle()
* kill ncvisual_inflate(), long deprecated #1777
* remove deprecated palette256 wrappers #1777
* kill ncplane_new() #1777
* remove deprecated renderfp field from notcurses_options #1777
* reorder ncstats fields to match documentation #1777
* kill deprecated style functions #1777
* ncplane_move{top, bottom} become static inline #1777
** ncplane_pixelgeom -> ncplane_pixel_geom() #1777
* ncstyle functions ought return uint16_t #1777 #2200
* ncvisualplane_create: provide new pile functionality #1462
* [heuristics] GNU screen 4x never has rgb
* [BitmapSmoothMove] only WARN in test until sixel supports this #2258
* contour: enable sextants
* interp PoC: clean up ncvisual #2266
* ncselector_options: constify string arguments
* Constify strings in selector/mselector_items
 Use internal types to track items within the
 selector/mselector widgets, rather than pressing the
 user-provided item structs into double-duty. With this
 change, we can constify the strings within those
 user-provided items. Do so, also removing the internal-side
 elements. Update documentation. Closes #2267.
* constify ncmenu_item/_section strings
* constify strings in nctabbed_options
* notcurses-demo FPS graph: back to straight seconds
* remove unused wchar_from_utf8()
* nstrwidth_valid(): properly initialize bytes/width
* [ncneofetch] use GetSystemInfo on Windows
3 years ago
nick black 12e01fdf5c [metric] prefix all defs with NC 3 years ago
nick black 91420af5ce eliminate recursion in ncplane_polyfill_yx #2328 3 years ago
nick black 0231768406 prefix qprefix(), bprefix(), iprefix() with nc- 3 years ago
nick black 83ff2cfe5a unsigned geometries 3 years ago
nick black 0f5aec510a
[mice] support for pure motion events
Deprecate notcurses_mouse_{enable, disable}. Reimplement
them for now as wrappers around notcurses_mice_enable().
New function notcurses_mice_disable() is a static inline
wrapper around notcurses_mice_enable(). The latter
function takes an unsigned bitmask of event types. We
now turn on the "all motion" tracking DECSET if
NCMICE_MOVE_EVENT is requested. Update the documentation,
and kill some obsolete lines. Add the ypx and xpx fields
to ncinput, to indicate pixel offset within a cell. Add
nckey NCKEY_MOTION for button-free motion events. Update
notcurses-input to pass NCMICE_ALL_EVENTS and decode
NCKEY_MOTION. Only emit mouse sequences when connected
to a TTY (or GPM). Closes #2320.

Request RGB XTGETTCAP.

Fix bug in error check in notcurses_render_to_buffer().

Decode multiple XTGETTCAP responses.
3 years ago
nick black 3792dd5592 [mergeplane] 0 means remainder #1696 3 years ago
nick black 37f077a653 normalize lenghts for line-drawing functions #1696 3 years ago
nick black d80884ea48 normalize geometry for ncvisual_from_plane, ncplane_contents, and ncplane_as_rgba() #1696 3 years ago