nick black
6105913d06
[planes] add NCPLANE_OPTION_VERALIGNED #1465
2021-03-26 04:18:15 -04:00
nick black
828cce634a
[capabilites] remove redundant notcurses_canpixel()
2021-03-25 20:41:02 -04:00
nick black
852b0ad0ec
[NEWS] mention nctabbed for 2.2.4
2021-03-25 16:44:22 -04:00
nick black
f8b68947f3
[NEWS] mention NCVISUAL_OPTION_HORALIGNED #1443
2021-03-24 05:22:15 -04:00
nick black
33d408b4a3
[sixel] call sprite_sixel_init at proper time #1436
2021-03-22 07:30:17 -04:00
nick black
a6548fbcc8
[ncvisual] refuse to blit bitmaps to standard plane
2021-03-22 03:43:18 -04:00
nick black
f35e2eb982
notcurses_visual.3: link to sixel/kitty
2021-03-08 23:31:27 -05:00
nick black
bc84987af5
v2.2.3
2021-03-08 07:10:50 -05:00
nick black
4a203ef0a9
direct mode: optimize out redundant SETAF, nice
2021-02-28 09:08:47 -05:00
nick black
49ce0d1c57
mention SIGCONT along with SIGWINCH
2021-02-28 04:26:00 -05:00
nick black
100a89291b
hide cell_{b,f}channel(), cell_set_{b,f}channel()
2021-02-27 19:03:42 -05:00
nick black
6c7c9be6d2
require explicit check for pixel support
...
Add `notcurses_check_pixel_support()` and
`ncdirect_check_pixel_support()` per #1367 . Removes
NCOPTION_VERIFY_SIXEL, again per #1367 . Adds
`free_terminfo_cache()`, and calls it from both
`notcurses_stop_minimal()` and `ncdirect_stop()`.
Update all documentation. Closes #1371 and #1367 .
2021-02-27 19:03:42 -05:00
nick black
e782287142
add NCBLIT_PIXEL to NEWS
2021-02-27 19:03:42 -05:00
nick black
fe8abbecc5
NEWS: mention nctree for 2.2.3
2021-02-24 22:23:01 -05:00
nick black
2221120543
add SIGILL to documented fatal signals #1357
2021-02-21 23:22:37 -05:00
nick black
c10f5a40ce
v2.2.2
2021-02-18 07:07:26 -05:00
nick black
1df9d85f28
Lock accesses to notcurses_stats #1139
...
notcurses_stats() and notcurses_stats_reset() now take the
new statlock member, as do stat modifications from render,
raster, writeout, resize, plane creation, and plane
destruction. Add nonnull attributes to stats API. Initialize
and destroy statlock as part of notcurses struct. Update
documentation. Free pilelock on error paths. Closes #1139 .
2021-02-18 01:37:30 -05:00
nick black
1b1e0b88be
ncplane_qrcode: drop blitter argument, update docs
2021-02-15 03:34:14 -05:00
nick black
be4a9154a8
v2.2.1
2021-02-09 19:34:03 -05:00
nick black
3cdf7160de
v2.2.0
2021-02-08 09:35:34 -05:00
nick black
6b126f4049
add notcurses_canbraille() capability test
2021-02-07 18:31:31 -05:00
nick black
54ca2249df
v2.1.8
2021-02-03 08:34:49 -05:00
nick black
b3569b6aef
Initialize Readline on demand
...
Eliminate NCDIRECT_OPTION_NO_READLINE (it was only introduced in
Notcurses 2.1.6). Add a new function, ncdirect_readline(). Upon
first call to this function, initialize libreadline. Destroy
libreadline in ncdirect_stop() iff we initialized it. Add
hilodirect guessing game PoC from #1325 . Rename
notcurses_directmode.3 to notcurses_direct.3. Closes #1326 .
2021-02-03 00:18:10 -05:00
nick black
2491b693ba
Add missing channel_set_palindex()
...
Implement channels_set_fg_palindex() and channels_set_bg_palindex()
in terms of channel_set_palindex(). Add missing entries to
notcurses_channels.3 man page. Use uint32_t in place of unsigned
when dealing with channels in notcurses.h.
2021-02-02 20:36:59 -05:00
nick black
7eafcfe598
rename notcurses-tetris -> nctetris
2021-01-21 03:51:12 -05:00
nick black
121f10a9c5
v2.1.7
2021-01-21 03:21:31 -05:00
nick black
57271d09ce
v2.1.6
2021-01-21 02:44:00 -05:00
nick black
45c389a709
document *_core_init() #1301
2021-01-19 23:09:22 -05:00
nick black
1631818784
rename notcurses-view to ncplayer #1299
2021-01-18 14:22:54 -05:00
Nick Black
9112185657
Split up notcurses/notcurses-core ( #1297 )
...
Extract `libnotcurses-core` from `libnotcurses`. The former contains everything except multimedia code. The latter contains multimedia stuff (a wrapper around FFmpeg or OIIO). If built with `-DUSE_MULTIMEDIA=none`, there will not be any `libnotcurses.so` generated. `libnotcurses.so` uses library constructors/destructors to insert its implementation into the `ncvisual` stack at runtime. Users linking `-lnotcurses` will get the full implementation; users linking `-lnotcurses-core` only will get the stack less multimedia code.
The upshot of this is that someone can compile/install only `libnotcurses-core`, and a program linked against it will work just fine. This eliminates the need to install the full (large) dependency stack of the multimedia code unless necessary. This will hopefully be useful for e.g. installers etc. Closes #339 .
2021-01-18 14:10:04 -05:00
nick black
3ecdde74d0
v2.1.5
2021-01-15 05:14:07 -05:00
nick black
1108ebb5b6
Fix up some subtle pile issues
...
ncplane_destroy() needs to call ncplane_reparent_family(), not
ncplane_reparent() as it was doing (closes #1291 ). ->absy and
->absx actually are absolute; return them directly for an O(1)
ncplane_abs_yx() (down from O(N), huzzah). Add some unit tests
related to destroying and reparenting (#1286 ). Add ncplane_abs_y()
and ncplane_abs_x(), document them, etc.
2021-01-15 00:32:55 -05:00
nick black
1c0a623b8b
document new function ncplane_abs_yx() #1286
2021-01-14 23:06:43 -05:00
nick black
0a165a9de8
paint: solve for egc following colors #1068
2021-01-10 11:21:56 -05:00
nick black
68b340e3c8
ncdirect: prep readline for use #1120
2021-01-08 07:28:24 -05:00
nick black
15386d57ce
nontrivial stacking unit test #1068
2021-01-08 04:59:24 -05:00
nick black
e617acecc7
v2.1.4
2021-01-03 19:55:32 -05:00
nick black
998cf02f34
add NCDIRECT_NO_QUIT_SIGHANDLERS #1271
2021-01-02 23:18:28 -05:00
nick black
70b74a749b
v2.1.3
2020-12-31 02:57:16 -05:00
nick black
f1253560ad
ncdirect: set_ on rgb functions #1261
2020-12-28 13:52:58 -05:00
nick black
76d8e2dfce
ncdirect_{fg, bg}_default() -> ncdirect_set_{fg, bg}_default() #1261
2020-12-28 13:38:05 -05:00
nick black
638dde7657
remove unnecessary args from ncdirect_raster_frame() #1248
2020-12-28 02:41:22 -05:00
nick black
1d8fcbb5e4
ncdirect: styles{set, on, off} -> _styles #1247
2020-12-28 02:21:37 -05:00
nick black
55d563b646
v2.1.2
2020-12-26 02:53:40 -05:00
nick black
4d8efcab82
Progress towards NCBLIT_3x2 by default
...
Add a new member 'sextants' to the terminfo cache (both
notcurses and ncvisual contain one of these, and both
initialize it the same way -- interrogate_terminfo()).
Add a new function, 'notcurses_media_defblitter()', and
deprecate 'ncvisual_default_blitter()' (the latter didn't
receive enough information to return NCBLIT_3x2). Update
all callers. Add new *internal* function rgba_default_blitter(),
so this logic can be freely changed in the future. If
sextants are available, and we're scaling, return NCBLIT_3x2.
Once we detect sextant availability, we'll have sexblitter
as a default -- stay tuned! #1114
2020-12-25 17:05:31 -05:00
nick black
e1b1654d1e
NEWS: mention ncdirect image render split
2020-12-21 19:51:22 -05:00
nick black
248dd1fff2
add dynamic linesig control #1228
2020-12-20 20:16:08 -05:00
nick black
d6d5757b1d
v2.1.1
2020-12-16 17:42:06 -05:00
nick black
d56ea8b5e7
progbar: remove egcs options
2020-12-13 09:12:08 -05:00
nick black
6edafd1f84
v2.1.0
2020-12-13 03:04:23 -05:00
nick black
fd2acde1b1
rename cell->nccell, keep alias #1200
2020-12-13 00:49:37 -05:00
nick black
8497ee1877
v2.0.12
2020-12-12 06:42:47 -05:00
nick black
5fc0577529
NEWS: mention ncplane_resize_maximize()
2020-12-10 07:44:31 -05:00
nick black
eb485cda21
v2.0.11
2020-12-09 00:34:37 -05:00
nick black
a3220b8a73
add ncplane_descendant_p(), unit test it #1192
2020-12-09 00:18:47 -05:00
nick black
361a253aea
v2.0.10
2020-12-06 13:22:26 -05:00
nick black
6fb5c1e512
Fill out some API holes, improve some comments
...
- Disambiguate the docs for ncplane_erase()
- Add ncpile_top(), ncpile_bottom()
- Refuse attempts to modify the standard plane's resizecb
- Copy alignment and resizecb in ncplane_dup()
- Add cell_load_egc32()
2020-12-03 01:02:16 -05:00
nick black
8083b46e3b
v2.0.9
2020-12-01 04:37:37 -05:00
nick black
2a45620cd6
v2.0.8
2020-11-27 16:49:56 -05:00
nick black
e3b2c91999
add NOTCURSES_VERSION_COMPARABLE #1131
2020-11-27 16:13:44 -05:00
nick black
202e3535d5
document new NCSTYLE_STRUCK #1138
2020-11-25 20:04:14 -05:00
nick black
fd97aa844c
implement ncpile_{render, rasterize}() 🦀 🦀 #1135
2020-11-25 19:19:31 -05:00
nick black
b2516d8534
Declare ncpile_render() and ncpile_rasterize() #1135
2020-11-25 19:19:31 -05:00
nick black
aa5b881e84
NEWS: purge empty sections
2020-11-25 19:19:31 -05:00
nick black
a2c35735d1
finish out NEWS for multipiles #1078
2020-11-25 19:19:31 -05:00
nick black
740dc2497d
NEWS: mention integer version defines
2020-11-24 04:19:47 -05:00
nick black
b6e5b60374
ncpile_create() not NCPLANE_OPTION_NEWPILE #1078
2020-11-23 22:58:05 -05:00
nick black
b747af2ae8
drop NCPLANE_OPTION_NEWPILE #1078
2020-11-23 22:58:05 -05:00
nick black
0da6a8c44b
add NCPLANE_OPTION_NEWPILE #1078
2020-11-23 22:58:05 -05:00
nick black
73b2f1bf19
v2.0.7
2020-11-22 00:22:11 -05:00
nick black
acdcf9e41f
v2.0.6
2020-11-21 23:35:24 -05:00
nick black
537caa2173
v2.0.5
2020-11-21 22:29:02 -05:00
nick black
65ed8c0d86
undeprecate ncplane_new(); why break running code?
2020-11-21 22:26:49 -05:00
nick black
c0cb5c7ff9
add ncplane_resizecb() #1124
2020-11-18 08:00:02 -05:00
nick black
6084105c68
add ncplane_set_resizecb() #1124
2020-11-18 07:49:22 -05:00
nick black
a92e5d97e0
don't threaten to remove ncplane_new() #1115
2020-11-17 23:42:36 -05:00
nick black
61baabe9a1
eagle, HUD: use default blitter
2020-11-17 23:42:36 -05:00
nick black
eef6df8c0a
death to horiz #1115
2020-11-17 23:42:36 -05:00
nick black
a9fbe41f2b
document the New Way
2020-11-17 23:42:36 -05:00
nick black
7622cefc3a
v2.0.4
2020-11-10 10:50:30 -05:00
nick black
0d31a03be9
v2.0.3
2020-11-09 13:45:59 -05:00
nick black
8a81d06b4b
ncreader: implement reamining shortcuts #983
2020-11-07 05:52:12 -05:00
nick black
1b1d727169
ncreader: support ctrl-a and ctrl-e #983
2020-11-07 05:39:26 -05:00
nick black
4203c2402f
notcurses-demo: improve usage() for 25 demos #736
2020-10-29 18:15:42 -04:00
nick black
7ad0ed2cc2
blitters don't count transparent cells against written count
2020-10-29 18:15:42 -04:00
nick black
8189d21709
v2.0.2
2020-10-25 10:10:50 -04:00
nick black
b35c680f48
add LoopVideo unit test #1066
2020-10-21 00:47:21 -04:00
nick black
8919d6fe70
ncvisual_rewind
2020-10-21 00:47:21 -04:00
nick black
a4546c86e3
v2.0.1
2020-10-19 03:15:32 -04:00
nick black
0b825c619e
add notcurses_stddim_yx_const()
2020-10-19 01:38:25 -04:00
nick black
34442f263f
demo: let ncmenu handle section shortcuts #1058
2020-10-15 07:46:32 -04:00
nick black
3229fa53b3
add ncinput_equal_p() predicate #1059
2020-10-15 03:14:19 -04:00
nick black
6623fc92a0
ncmenu_item_set_status: man page, NEWS, python, c++ #1057
2020-10-15 03:03:43 -04:00
nick black
65974aeb0b
v2.0.0
2020-10-12 12:33:21 -04:00
nick black
fbd3d7fc7f
add 2.0.0 release notes
2020-10-10 21:05:13 -04:00
nick black
8c9611d085
v1.7.6
2020-10-09 20:07:01 -04:00
nick black
4493ac3fa2
note putwc -> putwch in NEWS
2020-10-07 19:59:49 -04:00
nick black
d101d2d2d9
add ncdirect_init() inhibit cbreak flag #1049
2020-10-07 07:43:50 -04:00
nick black
c6c157a5ad
notcurses_stats_alloc() everywhere
2020-10-07 04:24:10 -04:00
nick black
f9e2c7863b
add notcurses_stats_alloc #1043
2020-10-06 23:33:28 -04:00
nick black
b4f1065f69
declare notcurses_render_to_buffer() #214
2020-10-04 11:43:25 -04:00
nick black
222861de13
add ncstats to USAGE.md
2020-10-04 10:04:02 -04:00
nick black
20a49d053d
v1.7.5
2020-09-29 13:12:17 -04:00
nick black
683217ef07
normalize style setters #1034
2020-09-29 13:09:44 -04:00
nick black
c236b65266
name standard plane 'std'
2020-09-28 07:08:17 -04:00
nick black
a591e11c96
retain nctablet_ncplane() as deprecated alias
2020-09-28 07:08:17 -04:00
nick black
20bf1ae2d4
nctablet_ncplane() -> nctablet_plane()
2020-09-27 16:46:39 -04:00
nick black
ec85dd1c3b
ncreel_destroy: return void
2020-09-27 15:57:03 -04:00
nick black
f02263e977
v1.7.4
2020-09-20 17:30:46 -04:00
nick black
2d9598b913
introduce ncplane_resize_realign #364
2020-09-20 10:14:05 -04:00
nick black
7b51bab79a
add resizecb to ncplane_options struct #869
2020-09-20 08:54:56 -04:00
nick black
97dc50db1a
kill stray entry in NEWS
2020-09-20 05:52:27 -04:00
nick black
36aed3c521
add ncplane_create() + ncplane_options #1020
2020-09-20 05:52:27 -04:00
nick black
607c03edc4
rename _rgb_clipped functions rgb8_clipped
2020-09-19 21:55:01 -04:00
nick black
4459efa216
v1.7.3
2020-09-19 21:21:52 -04:00
nick black
a4367fcfb5
rip out ncplane_ creation functions #985
2020-09-18 17:46:57 -04:00
nick black
e42dbdfd60
_stainable() -> _stained() #985
2020-09-18 02:02:08 -04:00
nick black
0e34bec3fb
start converting rgb->rgb8 #985
2020-09-18 01:39:21 -04:00
nick black
4bb1f3fc85
mbswidth -> ncstrwidth() #985
2020-09-15 01:39:42 -04:00
nick black
dca9db9687
ncreel: conform to the New Way #627
2020-09-13 14:18:42 -04:00
nick black
c3e5e47a2a
ncreader: conform to the New Way #627
2020-09-13 13:53:11 -04:00
nick black
4f04f1bc31
remove bgchannels field from selector_options #627
2020-09-13 13:22:58 -04:00
nick black
306948507f
ncmultiselect: normalize per new widget API #627 #1006
2020-09-13 13:22:58 -04:00
nick black
bc097a5674
v1.7.2
2020-09-10 04:14:01 -04:00
nick black
af05ae7a92
man pages: document NCREADER_OPTION_CURSOR
2020-09-06 23:10:16 -04:00
nick black
f88c8ae79c
expose ncvisual_default_blitter(), name blitter in notcurses-view #995
2020-09-06 12:56:16 -04:00
nick black
70f062aff5
v1.7.1
2020-08-31 21:49:39 -04:00
nick black
2f28420034
rename ncplane_putsimple() -> ncplane_putchar() #912
2020-08-31 21:14:29 -04:00
nick black
4c7a1d0427
ncdirect_init: add flags parameter #976
2020-08-30 13:38:33 -04:00
nick black
5fc6705ce3
add notcurses_ucs32_to_utf8()
2020-08-30 04:43:27 -04:00
nick black
c93243fd54
v1.6.20
2020-08-30 01:25:44 -04:00
nick black
e1863317a3
CMake: conform to cmake capitalization conventions
2020-08-29 18:38:28 -04:00
nick black
a48e840542
document ncreel a bit more
2020-08-29 18:24:45 -04:00
nick black
66f80c77f9
add ncplane_y() and ncplane_x()
2020-08-29 15:50:45 -04:00
nick black
e92b7fd6ea
v1.6.19
2020-08-27 12:43:28 -04:00
nick black
8f65211bf8
declare ncdirect input layer #919
2020-08-26 23:12:59 -04:00
nick black
6d7f9eb501
v1.6.18
2020-08-25 18:24:19 -04:00
nick black
9d75f575db
ncplane_set_[fb]channels
2020-08-25 17:28:29 -04:00
nick black
70a28feb63
ncreader: horizontal scrolling mostly works #839
2020-08-25 08:58:49 -04:00
nick black
7cbb2e9110
zoo demo: show cursor in reader box #835
2020-08-25 06:29:03 -04:00
nick black
a53d5a21a8
disable/enable cursor for rasterize
2020-08-25 04:55:06 -04:00
nick black
cab19cf790
Cursor work (placement, drop RETAIN_CURSOR) #953
...
notcurses_enable_cursor() now accepts placement arguments.
both it and notcurses_disable_cursor() now return int rather
than void. add notcurses_cursor_move_yx().
2020-08-25 03:11:50 -04:00
nick black
4dd1d6a4c8
Annihilate nc_err_e and all infrastructure #948
2020-08-24 17:20:29 -04:00
nick black
026b94969d
cffi heap allocations are zero-initialized #942
2020-08-23 22:27:50 -04:00
Nick Black
73dc0a7d69
Zoo 2, electric boogaloo ( #939 )
...
* Reimplement the widget zoo demo. The previous PoC
was a multithreaded monster with behavior dependent
on screen geometry. Replace it with a single thread state
machine. Closes #936 .
* Support titles for ncplot. Adds title to the ncplot_options
struct, which may be NULL. Closes #941 .
* Properly color ncplot according to maxchannels and
minchannels. Closes #940
* Add tools/function-table.sh script for generating public API list.
2020-08-23 12:44:53 -04:00
nick black
32d352173b
ncdirect_flush: struct ncdirect is const
2020-08-23 01:00:00 -04:00
nick black
4ebf8f748c
v1.6.16
2020-08-22 23:12:04 -04:00
nick black
5c533c9f1a
ncplot: support legend styling
2020-08-21 07:34:50 -04:00
nick black
6bb8f447b5
add ncdirect_flush() #926
2020-08-21 02:27:58 -04:00
nick black
706d492ecd
add channels_set_*_palindex()
2020-08-20 21:07:20 -04:00