This commit is contained in:
nick black 2021-03-08 07:10:50 -05:00
parent c882a44ac5
commit bc84987af5
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC
42 changed files with 47 additions and 46 deletions

View File

@ -1,6 +1,6 @@
# 3.14.0 introduced NAME_WLE
cmake_minimum_required(VERSION 3.14.0)
project(notcurses VERSION 2.2.2
project(notcurses VERSION 2.2.3
DESCRIPTION "Blingful UI for modern terminal emulators"
HOMEPAGE_URL "https://nick-black.com/dankwiki/index.php/notcurses"
LANGUAGES C CXX)

11
NEWS.md
View File

@ -1,13 +1,14 @@
This document attempts to list user-visible changes and any major internal
rearrangements of Notcurses.
* 2.2.3 (not yet released)
* Implemented `NCBLIT_PIXEL` for terminals reporting Sixel support.
Added `notcurses_check_pixel_support()` and its companion
* 2.2.3 (2021-03-08)
* Implemented **EXPERIMENTAL** `NCBLIT_PIXEL` for terminals reporting Sixel
support. Added `notcurses_check_pixel_support()` and its companion
`ncdirect_check_pixel_support()`, which must be called (and must return
success) before `NCBLIT_PIXEL` will be available. `NCBLIT_PIXEL` degrades
to `NCBLIT_3x2` until support is verified. This functionality ought be
considered experimental, and its behavior is subject to change.
to `NCBLIT_3x2` until support is verified. This functionality is not yet
well integrated into general rendering; it will not play nicely with other
intersecting planes. Do not rely on current behavior.
* Add the `nctree` widget for line-oriented hierarchical data. See
the new `notcurses_tree(3)` man page for complete information.
* Ceased exporting `cell_fchannel()`, `cell_bchannel()`,

View File

@ -1,6 +1,6 @@
% notcurses-pydemo(1)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -34,7 +34,7 @@ def read(fname):
setup(
name="notcurses",
version="2.2.2",
version="2.2.3",
packages=['notcurses'],
scripts=['notcurses-pydemo', 'ncdirect-pydemo'],
package_dir={'': 'src'},

View File

@ -38,7 +38,7 @@ PROJECT_NAME = Notcurses
# could be handy for archiving the generated documentation or if some version
# control system is used.
PROJECT_NUMBER = 2.2.2
PROJECT_NUMBER = 2.2.3
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a

View File

@ -33,7 +33,7 @@
</div>
<hr>
<iframe align="right" width="560" height="315" src="https://www.youtube.com/embed/cYhZ7myXyyg" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<h2><a href="https://nick-black.com/dankwiki/index.php/Notcurses">notcurses</a> man pages (v2.2.2)</h2>
<h2><a href="https://nick-black.com/dankwiki/index.php/Notcurses">notcurses</a> man pages (v2.2.3)</h2>
<a href="notcurses.3.html">notcurses(3)</a>—a blingful TUI library<br/>
<h3>Executables (section 1)</h3>
<a href="ncls.1.html">ncls</a>—list files, displaying multimedia along with them<br/>

View File

@ -1,6 +1,6 @@
% ncls(1)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% ncneofetch(1)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% ncplayer(1)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% nctetris(1)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses-demo(1)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses-input(1)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses-tester(1)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_capabilities(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_cell(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_channels(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_core(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_direct(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_fade(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_fds(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_init(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_input(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_lines(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_menu(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_metric(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_multiselector(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_output(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_palette(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_plane(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_plot(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_reader(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_reel(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_refresh(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_render(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_selector(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_stats(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_stdplane(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_stop(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME

View File

@ -1,6 +1,6 @@
% notcurses_visual(3)
% nick black <nickblack@linux.com>
% v2.2.2
% v2.2.3
# NAME
notcurses_visual - notcurses multimedia

View File

@ -1,6 +1,6 @@
[package]
name = "libnotcurses-sys"
version = "2.2.2"
version = "2.2.3"
authors = [
"nick black <dankamongmen@gmail.com>",
"José Luis Cruz <joseluis@andamira.net>"

View File

@ -7,7 +7,7 @@ use std::path::PathBuf;
// largely taken from https://rust-lang.github.io/rust-bindgen/tutorial-3.html
fn main() {
let plib = pkg_config::Config::new()
.atleast_version("2.2.2")
.atleast_version("2.2.3")
.probe("notcurses")
.unwrap();