From e017dcba89e02af499620352fb116980ee6b1409 Mon Sep 17 00:00:00 2001 From: nick black Date: Mon, 12 Apr 2021 05:01:58 -0400 Subject: [PATCH] v2.2.6 --- CMakeLists.txt | 2 +- NEWS.md | 4 ++-- cffi/notcurses-pydemo.1.md | 2 +- cffi/setup.py | 2 +- doc/Doxyfile | 2 +- doc/man/index.html | 2 +- doc/man/man1/ncls.1.md | 2 +- doc/man/man1/ncneofetch.1.md | 2 +- doc/man/man1/ncplayer.1.md | 2 +- doc/man/man1/nctetris.1.md | 2 +- doc/man/man1/notcurses-demo.1.md | 2 +- doc/man/man1/notcurses-input.1.md | 2 +- doc/man/man1/notcurses-tester.1.md | 2 +- doc/man/man3/notcurses.3.md | 2 +- doc/man/man3/notcurses_capabilities.3.md | 2 +- doc/man/man3/notcurses_cell.3.md | 2 +- doc/man/man3/notcurses_channels.3.md | 2 +- doc/man/man3/notcurses_core.3.md | 2 +- doc/man/man3/notcurses_direct.3.md | 2 +- doc/man/man3/notcurses_fade.3.md | 2 +- doc/man/man3/notcurses_fds.3.md | 2 +- doc/man/man3/notcurses_init.3.md | 2 +- doc/man/man3/notcurses_input.3.md | 2 +- doc/man/man3/notcurses_lines.3.md | 2 +- doc/man/man3/notcurses_menu.3.md | 2 +- doc/man/man3/notcurses_metric.3.md | 2 +- doc/man/man3/notcurses_multiselector.3.md | 2 +- doc/man/man3/notcurses_output.3.md | 2 +- doc/man/man3/notcurses_palette.3.md | 2 +- doc/man/man3/notcurses_plane.3.md | 2 +- doc/man/man3/notcurses_plot.3.md | 2 +- doc/man/man3/notcurses_reader.3.md | 2 +- doc/man/man3/notcurses_reel.3.md | 2 +- doc/man/man3/notcurses_refresh.3.md | 2 +- doc/man/man3/notcurses_render.3.md | 2 +- doc/man/man3/notcurses_selector.3.md | 2 +- doc/man/man3/notcurses_stats.3.md | 2 +- doc/man/man3/notcurses_stdplane.3.md | 2 +- doc/man/man3/notcurses_stop.3.md | 2 +- doc/man/man3/notcurses_tabbed.3.md | 2 +- doc/man/man3/notcurses_tree.3.md | 2 +- doc/man/man3/notcurses_visual.3.md | 2 +- rust/Cargo.toml | 2 +- rust/build/build.rs | 2 +- 44 files changed, 45 insertions(+), 45 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index feec50bb7c..f56624a722 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ # 3.14.0 introduced NAME_WLE cmake_minimum_required(VERSION 3.14.0) -project(notcurses VERSION 2.2.5 +project(notcurses VERSION 2.2.6 DESCRIPTION "Blingful UI for modern terminal emulators" HOMEPAGE_URL "https://nick-black.com/dankwiki/index.php/notcurses" LANGUAGES C CXX) diff --git a/NEWS.md b/NEWS.md index 30136760d8..048f8fb461 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,7 +1,7 @@ This document attempts to list user-visible changes and any major internal rearrangements of Notcurses. -* 2.2.6 (not yet released) +* 2.2.6 (2021-04-12) * `ncplane_rgba()` has been deprecated in favor of the new function `ncplane_as_rgba()`, which the former now wraps. It will be removed in ABI3. The new function can report the synthesized pixel geometry. @@ -11,7 +11,7 @@ rearrangements of Notcurses. * `ncplane_pixelgeom()` has been added, allowing callers to determine the size of the plane and cells in pixels, as well as the maximum bitmap size that can be displayed. - * added new function `ncdirect_stream()`, which does what you'd think. + * Added new function `ncdirect_stream()`, which does what you'd think. * `cell_release()` and `cell_duplicate()` have been migrated to `nccell_release()` and `nccell_duplicate()`, respectively. The former forms have been deprecated, and will be removed in API3. diff --git a/cffi/notcurses-pydemo.1.md b/cffi/notcurses-pydemo.1.md index 8493a35ed2..11066395d6 100644 --- a/cffi/notcurses-pydemo.1.md +++ b/cffi/notcurses-pydemo.1.md @@ -1,6 +1,6 @@ % notcurses-pydemo(1) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/cffi/setup.py b/cffi/setup.py index 08af9b90f4..9b2bcd9c14 100644 --- a/cffi/setup.py +++ b/cffi/setup.py @@ -34,7 +34,7 @@ def read(fname): setup( name="notcurses", - version="2.2.5", + version="2.2.6", packages=['notcurses'], scripts=['notcurses-pydemo', 'ncdirect-pydemo'], package_dir={'': 'src'}, diff --git a/doc/Doxyfile b/doc/Doxyfile index b1974f6bcd..f82ab6e669 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -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.5 +PROJECT_NUMBER = 2.2.6 # 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 diff --git a/doc/man/index.html b/doc/man/index.html index 7db142cc24..79b0359397 100644 --- a/doc/man/index.html +++ b/doc/man/index.html @@ -33,7 +33,7 @@
-

notcurses manual pages (v2.2.5)

+

notcurses manual pages (v2.2.6)

notcurses(3)—a blingful TUI library

Executables (section 1)

ncls—list files, displaying multimedia along with them
diff --git a/doc/man/man1/ncls.1.md b/doc/man/man1/ncls.1.md index 0f893129f2..f7de52253c 100644 --- a/doc/man/man1/ncls.1.md +++ b/doc/man/man1/ncls.1.md @@ -1,6 +1,6 @@ % ncls(1) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man1/ncneofetch.1.md b/doc/man/man1/ncneofetch.1.md index 8c075a7d87..28810f7cbe 100644 --- a/doc/man/man1/ncneofetch.1.md +++ b/doc/man/man1/ncneofetch.1.md @@ -1,6 +1,6 @@ % ncneofetch(1) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man1/ncplayer.1.md b/doc/man/man1/ncplayer.1.md index a60f8895d5..40ec3a1530 100644 --- a/doc/man/man1/ncplayer.1.md +++ b/doc/man/man1/ncplayer.1.md @@ -1,6 +1,6 @@ % ncplayer(1) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man1/nctetris.1.md b/doc/man/man1/nctetris.1.md index 654bb3396b..da511102cb 100644 --- a/doc/man/man1/nctetris.1.md +++ b/doc/man/man1/nctetris.1.md @@ -1,6 +1,6 @@ % nctetris(1) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man1/notcurses-demo.1.md b/doc/man/man1/notcurses-demo.1.md index 94dd8ae2c3..647f4fcbe4 100644 --- a/doc/man/man1/notcurses-demo.1.md +++ b/doc/man/man1/notcurses-demo.1.md @@ -1,6 +1,6 @@ % notcurses-demo(1) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man1/notcurses-input.1.md b/doc/man/man1/notcurses-input.1.md index 4205afe481..f748caa3d0 100644 --- a/doc/man/man1/notcurses-input.1.md +++ b/doc/man/man1/notcurses-input.1.md @@ -1,6 +1,6 @@ % notcurses-input(1) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man1/notcurses-tester.1.md b/doc/man/man1/notcurses-tester.1.md index e4357e0998..7024fbe25c 100644 --- a/doc/man/man1/notcurses-tester.1.md +++ b/doc/man/man1/notcurses-tester.1.md @@ -1,6 +1,6 @@ % notcurses-tester(1) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses.3.md b/doc/man/man3/notcurses.3.md index 9f57e9490b..630b6190d2 100644 --- a/doc/man/man3/notcurses.3.md +++ b/doc/man/man3/notcurses.3.md @@ -1,6 +1,6 @@ % notcurses(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_capabilities.3.md b/doc/man/man3/notcurses_capabilities.3.md index 1e948ec7d9..cdeeefc8ad 100644 --- a/doc/man/man3/notcurses_capabilities.3.md +++ b/doc/man/man3/notcurses_capabilities.3.md @@ -1,6 +1,6 @@ % notcurses_capabilities(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_cell.3.md b/doc/man/man3/notcurses_cell.3.md index e1bd3d31b5..d0e20bf02e 100644 --- a/doc/man/man3/notcurses_cell.3.md +++ b/doc/man/man3/notcurses_cell.3.md @@ -1,6 +1,6 @@ % notcurses_cell(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_channels.3.md b/doc/man/man3/notcurses_channels.3.md index 877d84b8ab..fe9315202d 100644 --- a/doc/man/man3/notcurses_channels.3.md +++ b/doc/man/man3/notcurses_channels.3.md @@ -1,6 +1,6 @@ % notcurses_channels(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_core.3.md b/doc/man/man3/notcurses_core.3.md index 34f49cc619..255fabbe57 100644 --- a/doc/man/man3/notcurses_core.3.md +++ b/doc/man/man3/notcurses_core.3.md @@ -1,6 +1,6 @@ % notcurses_core(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_direct.3.md b/doc/man/man3/notcurses_direct.3.md index 8ab2002bdd..a1b2bd3bf1 100644 --- a/doc/man/man3/notcurses_direct.3.md +++ b/doc/man/man3/notcurses_direct.3.md @@ -1,6 +1,6 @@ % notcurses_direct(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_fade.3.md b/doc/man/man3/notcurses_fade.3.md index 1a8806c9e5..438025aada 100644 --- a/doc/man/man3/notcurses_fade.3.md +++ b/doc/man/man3/notcurses_fade.3.md @@ -1,6 +1,6 @@ % notcurses_fade(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_fds.3.md b/doc/man/man3/notcurses_fds.3.md index 14d247882c..6cb631fb83 100644 --- a/doc/man/man3/notcurses_fds.3.md +++ b/doc/man/man3/notcurses_fds.3.md @@ -1,6 +1,6 @@ % notcurses_fds(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_init.3.md b/doc/man/man3/notcurses_init.3.md index 1aac14a622..8d0a9539ca 100644 --- a/doc/man/man3/notcurses_init.3.md +++ b/doc/man/man3/notcurses_init.3.md @@ -1,6 +1,6 @@ % notcurses_init(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_input.3.md b/doc/man/man3/notcurses_input.3.md index 4cc1e5b909..1ae3f3546e 100644 --- a/doc/man/man3/notcurses_input.3.md +++ b/doc/man/man3/notcurses_input.3.md @@ -1,6 +1,6 @@ % notcurses_input(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_lines.3.md b/doc/man/man3/notcurses_lines.3.md index ba4c27f82c..6187b5ed7d 100644 --- a/doc/man/man3/notcurses_lines.3.md +++ b/doc/man/man3/notcurses_lines.3.md @@ -1,6 +1,6 @@ % notcurses_lines(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_menu.3.md b/doc/man/man3/notcurses_menu.3.md index af8cc44aa0..7faa5d369c 100644 --- a/doc/man/man3/notcurses_menu.3.md +++ b/doc/man/man3/notcurses_menu.3.md @@ -1,6 +1,6 @@ % notcurses_menu(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_metric.3.md b/doc/man/man3/notcurses_metric.3.md index bf3108f74b..4d32ccc4ae 100644 --- a/doc/man/man3/notcurses_metric.3.md +++ b/doc/man/man3/notcurses_metric.3.md @@ -1,6 +1,6 @@ % notcurses_metric(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_multiselector.3.md b/doc/man/man3/notcurses_multiselector.3.md index 1f1f0dd033..904ec43dbd 100644 --- a/doc/man/man3/notcurses_multiselector.3.md +++ b/doc/man/man3/notcurses_multiselector.3.md @@ -1,6 +1,6 @@ % notcurses_multiselector(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_output.3.md b/doc/man/man3/notcurses_output.3.md index b76680c6e1..0cfe102e90 100644 --- a/doc/man/man3/notcurses_output.3.md +++ b/doc/man/man3/notcurses_output.3.md @@ -1,6 +1,6 @@ % notcurses_output(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_palette.3.md b/doc/man/man3/notcurses_palette.3.md index 6c98bccd8a..b1f6c253d4 100644 --- a/doc/man/man3/notcurses_palette.3.md +++ b/doc/man/man3/notcurses_palette.3.md @@ -1,6 +1,6 @@ % notcurses_palette(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_plane.3.md b/doc/man/man3/notcurses_plane.3.md index 64a7607bf6..43ce8a0499 100644 --- a/doc/man/man3/notcurses_plane.3.md +++ b/doc/man/man3/notcurses_plane.3.md @@ -1,6 +1,6 @@ % notcurses_plane(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_plot.3.md b/doc/man/man3/notcurses_plot.3.md index 55e6792597..9a18e2c65f 100644 --- a/doc/man/man3/notcurses_plot.3.md +++ b/doc/man/man3/notcurses_plot.3.md @@ -1,6 +1,6 @@ % notcurses_plot(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_reader.3.md b/doc/man/man3/notcurses_reader.3.md index 0829a9856c..f74bdb5dba 100644 --- a/doc/man/man3/notcurses_reader.3.md +++ b/doc/man/man3/notcurses_reader.3.md @@ -1,6 +1,6 @@ % notcurses_reader(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_reel.3.md b/doc/man/man3/notcurses_reel.3.md index 2c7e6a22cf..8ed8cbf2dd 100644 --- a/doc/man/man3/notcurses_reel.3.md +++ b/doc/man/man3/notcurses_reel.3.md @@ -1,6 +1,6 @@ % notcurses_reel(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_refresh.3.md b/doc/man/man3/notcurses_refresh.3.md index 6bc72db35e..b24a7b4630 100644 --- a/doc/man/man3/notcurses_refresh.3.md +++ b/doc/man/man3/notcurses_refresh.3.md @@ -1,6 +1,6 @@ % notcurses_refresh(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_render.3.md b/doc/man/man3/notcurses_render.3.md index efc748b8ad..03153f1c13 100644 --- a/doc/man/man3/notcurses_render.3.md +++ b/doc/man/man3/notcurses_render.3.md @@ -1,6 +1,6 @@ % notcurses_render(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_selector.3.md b/doc/man/man3/notcurses_selector.3.md index 6053510cbe..632315d4cb 100644 --- a/doc/man/man3/notcurses_selector.3.md +++ b/doc/man/man3/notcurses_selector.3.md @@ -1,6 +1,6 @@ % notcurses_selector(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_stats.3.md b/doc/man/man3/notcurses_stats.3.md index 953a9c4a91..4b89d2ac05 100644 --- a/doc/man/man3/notcurses_stats.3.md +++ b/doc/man/man3/notcurses_stats.3.md @@ -1,6 +1,6 @@ % notcurses_stats(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_stdplane.3.md b/doc/man/man3/notcurses_stdplane.3.md index 063f9b45fa..3fb7748936 100644 --- a/doc/man/man3/notcurses_stdplane.3.md +++ b/doc/man/man3/notcurses_stdplane.3.md @@ -1,6 +1,6 @@ % notcurses_stdplane(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_stop.3.md b/doc/man/man3/notcurses_stop.3.md index 93f038500f..22412e7fd6 100644 --- a/doc/man/man3/notcurses_stop.3.md +++ b/doc/man/man3/notcurses_stop.3.md @@ -1,6 +1,6 @@ % notcurses_stop(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_tabbed.3.md b/doc/man/man3/notcurses_tabbed.3.md index facc530f14..522bb056ea 100644 --- a/doc/man/man3/notcurses_tabbed.3.md +++ b/doc/man/man3/notcurses_tabbed.3.md @@ -1,5 +1,5 @@ % notcurses_tabbed(3) -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_tree.3.md b/doc/man/man3/notcurses_tree.3.md index f5d1f85c1b..0b5305cf00 100644 --- a/doc/man/man3/notcurses_tree.3.md +++ b/doc/man/man3/notcurses_tree.3.md @@ -1,6 +1,6 @@ % notcurses_tree(3) % nick black -% v2.2.5 +% v2.2.6 # NAME diff --git a/doc/man/man3/notcurses_visual.3.md b/doc/man/man3/notcurses_visual.3.md index 47e531eceb..023f331f7e 100644 --- a/doc/man/man3/notcurses_visual.3.md +++ b/doc/man/man3/notcurses_visual.3.md @@ -1,6 +1,6 @@ % notcurses_visual(3) % nick black -% v2.2.5 +% v2.2.6 # NAME notcurses_visual - notcurses multimedia diff --git a/rust/Cargo.toml b/rust/Cargo.toml index cba0944657..76e0abe8d7 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libnotcurses-sys" -version = "2.2.5" +version = "2.2.6" authors = [ "nick black ", "José Luis Cruz " diff --git a/rust/build/build.rs b/rust/build/build.rs index 0f65bca508..55fb2ae506 100644 --- a/rust/build/build.rs +++ b/rust/build/build.rs @@ -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.5") + .atleast_version("2.2.6") .probe("notcurses") .unwrap();