joseLuís
b12abeddc9
rust: finish NcDirect error system refactor
...
- change Option return type for NcResult when appropriate.
- make NcDirect constructors return NcResult.
- rename NcError::new() to with_msg() and simplify new().
- refactor examples:
- rename direct-image.rs to direct-image-c.rs
- recreate using rust methods, as direct-image-rust.rs
- differentiate more throughly between both styles.
- remove the sys namespace on both examples.
2020-12-25 17:41:02 +01:00
nick black
4e5dbfd2b9
render: use hpa in place of cuf #1245
2020-12-25 00:19:25 -05:00
nick black
1002347c9e
HACKING: document right-to-left shittery
2020-12-25 00:18:11 -05:00
joseLuís
1687af89e0
rust: refactor error system.
...
We need to use Result<> to manage error flow,
at least on the methods API. This way it will
finally feel idiomatic Rust and more concise.
Also, we can't return a non Result from main.
- rename NcResult to NcIntResult.
- new NcError & NcResult types.
- new error![] macro to reduce boilerplate.
- change return type of NcDirect methods to NcResult.
- refactor several examples to return NcResult:
direct-cursor, poc-direct & poc-kittyzapper.
- BONUS: fix test not stopping notcurses context.
- update lib doc-comment.
- fix typo in readme.
2020-12-25 05:16:34 +01:00
joseLuís
5d1dfe1d02
rust fix poc-direct; update readme deps badge
2020-12-25 00:53:03 +01:00
joseLuís
ab2675b358
rust: add poc-direct example
...
- fix NcDirect dim_[y|x] methods.
- add NcDirect.dim_yx() method.
2020-12-24 19:56:12 +01:00
joseLuís
a9413eafb2
rust: add poc-kittyzapper example
...
- fix ncdirect_[b|f]g_rgb8 functions.
- fix NcDirect.bg_rgb8 method.
- new printf![] macro.
2020-12-24 18:40:33 +01:00
joseLuís
3c8328c9cc
rust: add all NcDirect methods.
...
- add missing ncdirect_* static inline functions.
- update Notcurses.getc().
- add NcTime constructor.
- add NcSigSet type + constructor.
- minor fixes.
2020-12-24 18:02:33 +01:00
joseLuís
7d53abc1b1
rust: finish Notcurses methods & fix tests
2020-12-24 03:24:39 +01:00
joseLuís
b62c1ec74b
rust: refactor NcCell constructors
2020-12-24 03:04:46 +01:00
joseLuís
815507293d
rust: fix tests
2020-12-23 22:12:04 +01:00
joseLuís
c07b68f783
rust: add example poc-cjkscroll
2020-12-23 21:50:23 +01:00
joseLuís
bf7f5de745
rust: fix putchar related methods.
...
- refactor NcCell constructors.
- add Notcurses.term_dim_yx method.
- reduce name imports.
- fix comments.
2020-12-23 21:49:36 +01:00
joseLuís
e174ad44e2
update rust version in readme
2020-12-23 20:17:10 +01:00
joseLuís
ca38d9109e
rust: add NcCell Methods.
...
- improve some apis.
- made some functions const.
- add comments and intra-doc links.
- fix comments.
2020-12-23 20:07:25 +01:00
joseLuís
bda47b7403
rust: add methods for NcResizeCb & NcPalette.
...
- fix intra-doc links.
- refactor palette module.
2020-12-23 18:45:19 +01:00
joseLuís
1afa9cc1db
rust: add more methods.
...
- add NcChannel & NcChannelPair methods.
- add more NcPlane methods.
- add comments and intra-links.
- refactor intra-links style in all modules.
2020-12-23 13:38:28 +01:00
nick black
f1cd068da3
add atma.png for keller
2020-12-23 01:28:51 -05:00
nick black
e6a45d5422
wcwidth: print running measure
2020-12-23 01:27:45 -05:00
joseLuís
3be38890c9
rust: refactor input module.
...
- unify NcInput & NcKey in the same module.
- fix lifetimes issue.
2020-12-23 00:40:28 +01:00
joseLuís
298f250ee8
rust: refactor unsafe functions.
...
- remove unneeded unsafe.
- simplify lifetimes.
- fix ncplane_gradient_sized.
- fix NcChannelPair
- fix comments.
- rustfmt.
2020-12-23 00:27:29 +01:00
joseLuís
af11b123fa
rust: add NcProgBar widget
2020-12-23 00:12:30 +01:00
joseLuís
4c048ef625
rust: finish adding Notcurses methods.
2020-12-22 15:17:50 +01:00
joseLuís
fa693a89c1
rust: add most Notcurses methods.
...
- fix some comments.
2020-12-22 15:01:07 +01:00
nick black
878842942d
TERMS.md: document block-drawing
2020-12-22 02:09:10 -05:00
nick black
6ca8949845
add kittyzapper PoC #1117
2020-12-21 23:01:56 -05:00
nick black
0578e86e02
introduce terminal-specific heuristics
...
Kitty conflates an RGB background specification that aligns
with the default background color with that actual background
color. This can result in translucent background when we're
expecting opaque ones. Detect kitty (strstr check of terminal
name for "kitty"), and if it's active, mark `bg_collides_default`
with the rgb of the default background color. For now, we assume
this to be (0,0,0), but we ought improve it by determining (or
setting, if that's impossible) the precise default bg color.
Closes #1117 .
2020-12-21 23:01:56 -05:00
nick black
7df2c7cd04
ncdirect: use sgr0, properly align images
2020-12-21 20:09:41 -05:00
nick black
e1b1654d1e
NEWS: mention ncdirect image render split
2020-12-21 19:51:22 -05:00
nick black
0ceb129125
document kitty properties #1117
2020-12-21 19:38:32 -05:00
nick black
d3fc0db1ee
Merge branch 'master' of github.com:dankamongmen/notcurses
2020-12-21 19:28:27 -05:00
nick black
53d4dac427
drone: add ubuntu hirsute builder
2020-12-21 19:28:22 -05:00
joseLuís
fd1b81c0f8
rust: add NcPixel methods.
...
- finish updating the functions.
2020-12-21 21:15:10 +01:00
joseLuís
0db4e48a6b
rust: endianess updates for NcPixel & NcCell
...
- Update NcPixel functions, and their descriptions.
- Update NcPixel constructor.
2020-12-21 20:34:50 +01:00
joseLuís
6752741982
rust: add dynamic linesig control
...
- add new functions notcurses_linesigs_disable & notcurses_linesigs_enable.
- fix comments.
2020-12-21 16:44:04 +01:00
nick black
1fb4a66853
raster: fine-grained emits of op for default #1240
2020-12-21 08:11:44 -05:00
nick black
408004ee66
define fgop/bgop for fine-grained default color #1240
2020-12-21 07:21:33 -05:00
nick black
248dd1fff2
add dynamic linesig control #1228
2020-12-20 20:16:08 -05:00
nick black
99abcb5f07
cbreak_mode: move to input.c
2020-12-20 19:59:08 -05:00
nick black
41c2a75f9b
TERMS.md: some fatty did eat the cake
2020-12-20 18:57:09 -05:00
nick black
0920675db1
there are now three ways to hide a plane, sigh
2020-12-20 18:53:08 -05:00
nick black
d1fdaf7614
view: add -t option for timeouts
...
When the -t switch is provided to notcurses-view, its
floating-point argument is the number of seconds for
which we delay after showing an image. When this is used,
the standard "press any key to continue" prompt is not
displayed, and indeed keybindings are not honored. This
can be used for a slideshow, or just for fullscreen display
involving no user interaction. It does not apply in the
case of -L for looping. Closes #1229 .
2020-12-20 18:34:15 -05:00
nick black
c0316ee96c
view: document and parse -t time argument #1229
2020-12-20 18:34:15 -05:00
joseLuís
240b58d52b
rust: update msrv in readme
2020-12-20 19:00:08 +01:00
joseLuís
de56912cc4
rust: keep adding NcPlane methods & more
...
- new type NcResizeCb.
- new functions ncresizecb_safe & ncresizecb_unsafe.
- update NcPlaneOptions constructors.
- Improve & fix comments.
2020-12-20 18:56:46 +01:00
joseLuís
183d6473cd
rust: continue adding NcPlane methods.
...
- add new module fade.
- new type NcFadeCb.
- move NcFadeCtx here.
- add TOC for NcPlane methods sections.
- fix & improve comments.
- remove deprecated ncplane functions.
2020-12-20 00:30:46 +01:00
joseLuís
45c01c95af
update align doc comments #1234
2020-12-19 18:03:32 +01:00
joseLuís
84987b61a9
rust: refactor ncbox, ncalign; add NcPlane methods.
...
- wrap NCBOX* constants.
- new NcBoxMask type.
- new NCRESULT_MAX const.
- add NcPlane box & perimeter methods.
- move NcAlign to notcurses mod.
- update notcurses_align & test.
- improve comments.
- rustfmt.
2020-12-19 18:01:28 +01:00
nick black
1303e5e310
Merge branch 'master' of github.com:dankamongmen/notcurses
2020-12-18 22:15:41 -05:00
nick black
f20aae8dc6
document presence of bce in various terminals #1117
2020-12-18 22:15:29 -05:00