Commit Graph

5223 Commits (3151b60b2302af7c7277a99ac295b019083f20c3)
 

Author SHA1 Message Date
nick black 0d70d73100
Write Requires.private in pc files based off discovered TERMINFO_LIBRARIES #1635 3 years ago
nick black 052b9148e7
pkgconfig: move stdc++ dep from notcurses-core.pc to notcurses.pc #1635 3 years ago
nick black 84c7aca04e
add ncblit_rgb_packed(), ncblit_rgb_loose() #1634 3 years ago
nick black 3a29fb7991
sixel_wipe: fix off-by-one in bounds computations #1628 3 years ago
nick black 05f5a479c1
revert #1628 fix until crash is resolved 3 years ago
nick black ace36638d6
[sixel] completely wipe cells when height % 6 == 1 #1628 3 years ago
nick black 1b4d346fb1
Merge branch 'master' of github.com:dankamongmen/notcurses 3 years ago
joseLuís 95fa72c3e7 [rust] update mergedown doc comment
- fix more warnings
3 years ago
nick black 2d7019c726
deal with possible endianness problems in bitmap tests #1627 3 years ago
nick black 6a2ed461df
deal with possible endianness problems in bitmap tests #1627 3 years ago
nick black 02af161b98
notcurses_stats_alloc: mark paramater as unused #1633 3 years ago
joseLuís 5ec11e5897 [rust] remove ncplane_vprintf
- remove `__va_list_tag`

The `printf` functions wont be implemented, since they require
`__va_list` which causes compatibility problems.
3 years ago
joseLuís 5f3b2f79cf [rust] fix bindgen imports
- update blacklist rules
- use ffi `__va_list_tags`
3 years ago
joseLuís c52e9c5a47 [rust] add NCVISUAL_OPTION_CHILDPLANE
- update docs
3 years ago
joseLuís 7e7082e836 [rust] adjust bindgen imports.
- only import functions from the notcurses public API
- exclude more unneeded types from being imported.
- use custom `__va_list_tag`
3 years ago
joseLuís 66e20bdac8 [rust] safely wrap ncmetric function & fix warnings
- fix warnings on doc generation from imported C API doc-comments
- fix remaining clippy warning
3 years ago
joseLuís 81f63f0e3b [rust] fix docs 3 years ago
joseLuís 87f92546db [rust] remove raw_wrap macro 3 years ago
joseLuís aa0e242a7a [rust] bugfix & a couple of minor updates 3 years ago
joseLuís b7bfbb0f90 [rust] fix hundreds of clippy warnings 3 years ago
joseLuís 129e208438 [rust] refactor Notcurses & NcDirect wrapping approach
- remove `Nc` & `NcD` wrappers, to move them to notcurses-rs library.
- update the summary header format for Notcurses and NcDirect
- update docs and examples
3 years ago
nick black 73fc4ea935
demo: change up the order a bit, moving zoo before outro 3 years ago
nick black 06e7391b89
release.sh: change both instances of the version in index.html 3 years ago
nick black 2d6bdd3b5b
v2.2.10 3 years ago
nick black c61eafbbf4
[ncdirect] use '\v' for cursor down, not '\n'
With '\v' (vertical tab), we don't need force raw mode.
This saves us system calls, and makes the entire affair
more reliable (no race between setting up termios and
emitting '\n'; no chance for second tcsetattr to fail).
Thanks once more to @dnkl on #1625.
3 years ago
nick black 36a2d00fb3
ncdirect: move down with raw-mode newlines
The cud capability to move the cursor down doesn't
scroll (and shouldn't be used on the last row). We
have no reliable knowledge of whether we're on the
last row or not, so instead switch to raw mode, emit
the newlines, and switch back to whatever mode we
were in. This method is due to @dnkl aka Daniel Eklöf,
a gentleman and scholar who absolutely knows his shit.
Closes #1625.
3 years ago
nick black 96491e42df
tighten up state machine, only move to INVALIDATED from QUIESCENT #1631 3 years ago
nick black d574dee3fe
kitty: fix mask in triplet_alpha1() #1631 3 years ago
nick black 1d06c5bd5a invalidate sprixel following rebuild #1631 3 years ago
nick black 757d12b9ad wipebitmap poc -- more tests 3 years ago
nick black 99675db255
wipebitmap PoC: test transparent cells atop bitmaps 3 years ago
nick black d5e3624f30
[sixel] *really* correct wipe_color() assert #1630 3 years ago
nick black e65f4f2e7c
sprite_rebuild: don't assert on missing auxvec in SPRIXCELL_ANNIHILATED_TRANS #1629 3 years ago
nick black ad265fe530
[sixel] fix up assert to properly bound xoff #1629 3 years ago
nick black 05f5f70ee2
lift SPRIXEL_HIDE check out of spirxel_wipe() 3 years ago
nick black e0a53be471
textplay: purge debugging cruft 3 years ago
nick black 578f8eb45c bitmaps: cap to screen size, fix bitmap childplane tests #1603 3 years ago
nick black e8f0ff0f30 NCVISUAL_OPTION_CHILDPLANE unit tests for bitmap path #1603 3 years ago
nick black d144d606f7 implement NCVISUAL_OPTION_CHILDPLANE on cell path #1603 3 years ago
nick black 763a69ea41 unit tests for NCVISUAL_OPTION_CHILDPLANE #1603 3 years ago
nick black c93f9371b3 [dirlines] throw in a newline at the end 3 years ago
nick black d1ab898cfe dirlines PoC: ncdirect_stop() on all error paths 3 years ago
nick black de1cc2c072 add NCVISUAL_OPTION_CHILDPLANE to notcurses.h 3 years ago
nick black 4f5a8480c0 document new option NCVISUAL_OPTION_CHILDPLANE #1603 3 years ago
nick black 4283fc038d
[textplay] work for arbitrary UTF-8 input 3 years ago
nick black 1a3df54ab9
release.sh: properly mangle index.html 3 years ago
joseLuís 6966cd78b5 [rust] more channels refactor
- make ncplane_set_channels and NcPlane::set_channels don't return the NcChannelPair
- add safe function wrapper for ncplane_channels
- fix docs
3 years ago
joseLuís d886e01fea [rust] refactor channels
- rename channel* functions to ncchannel*
- rename NcPlane methods:
  - fg_default_p to fg_default
  - bg_default_p to bg_default
- new functions:
  - ncplane_set_default
  - ncplane_set_not_default
  - ncplane_set_fg_not_default
  - ncplane_set_bg_not_default
- new NcPlane methods:
  - set_channels
  - set_default
  - set_not_default
  - set_fg_not_default
  - set_bg_not_default
- new safe wrapper functions:
  - ncplane_set_fchannel
  - ncplane_set_bchannel
  - ncplane_set_channels
3 years ago
joseLuís e9a841954d [rust] more functions to manage the "default color"
- new functions:
  - channel_set_not_default
  - channels_set_fg_not_default
  - channels_set_bg_not_default
  - channels_set_default
  - channels_set_not_default
- new NcChannel methods:
  - set_not_default
- new NcChannelPair methods:
  - set_fg_not_default
  - set_bg_not_default
  - set_default
  - set_not_default
- improve the test of: channel_set_default
- add tests for:
  - channel_set
  - channel_set_not_default
- add doc comments to existing NcChannel reimplemented functions tests.
3 years ago
joseLuís dcfb368b21 [rust] remove example for issue #1575; fix warning
- delete file issue-1573.rs (wrongly named)
- fix warning in example issue-1559
3 years ago