notcurses icon indicating copy to clipboard operation
notcurses copied to clipboard

blingful character graphics/TUI library. definitely not curses.

Results 154 notcurses issues
Sort by recently updated
recently updated
newest added

I wanted to try out some of the Python examples but on a mac but upon trying to install via pip I get: ``` build/temp.macosx-11-x86_64-3.9/_notcurses.c:570:14: fatal error: 'notcurses/direct.h' file not...

bug
python
macOS

This is on aarch64 PC, let me know if you want me to try it on amd64. ```sh $ export | egrep 'LANG|LC_CTYPE|TERM' declare -x COLORTERM="truecolor" declare -x LANG="en_US.UTF-8" declare...

bug

Running `notcurses-input` in mlterm, we don't see mouse move events, only button presses. This is in mode 1006, but also seems to be the case for 1016 (see #1457).

bug
external
input

I'd like to begin the move to mosaics in 3.1.x. We first need to get a quantitative look at how this approach will perform in various terminals. Hand-construct a mosaic...

perf
bitmaps

See #2583. We ought be able to disable items and sections at `ncmenu` creation time, but that would require providing this data in `ncmenu_item` etc., enlarging the structure. Before cutting...

documentation
enhancement

I've seen this in v3.0.5, but earlier versions may have the same problem. Try changing [L20 in src/poc/cjkscroll.c](https://github.com/dankamongmen/notcurses/blob/master/src/poc/cjkscroll.c#L20) like this: ```diff diff --git a/src/poc/cjkscroll.c b/src/poc/cjkscroll.c index cc2fe8bb3..871bb7a8b 100644 --- a/src/poc/cjkscroll.c...

bug

OpenSUSE is sitting on 2.4.8, just about the only meaningful distro on a pre-ABI3 release. Let's get them updated.

packaging

On Fedora as of 2.1.8, we're still shipping both `libnotcurses.so` and `libnotcurses-core.so` as a single package. We should probably break them up into two, as we do on Debian. Only...

enhancement
packaging
hax0rs-wanted

`ncplane_resize_realing` finish returning the value of `ncplane_move_yx` that is 0 on success and -1 on error. but on this line https://github.com/dankamongmen/notcurses/blob/7c4c3040f40680910945b5fc11d7d93f29ba0cd2/src/lib/notcurses.c#L2696 `ncplane_resize_realing` returns 0 on error

bug

I was just playing around with `rgb_quantize_256()` and noticed that the following code: ```c int x = rgb_quantize_256(0xd7, 0xd7, 0xd7); printf("%d\n", x); ``` ...prints `252`, which by default has the...

bug