From fb02ba185f42dd9eaae717c9bba2da6194982294 Mon Sep 17 00:00:00 2001 From: nick black Date: Sat, 11 Jan 2025 16:19:17 -0500 Subject: [PATCH] v3.0.13 --- CMakeLists.txt | 2 +- NEWS.md | 7 +++++++ 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-info.1.md | 2 +- doc/man/man1/notcurses-input.1.md | 2 +- doc/man/man1/notcurses-tester.1.md | 2 +- doc/man/man1/tfman.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_pile.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_util.3.md | 2 +- doc/man/man3/notcurses_visual.3.md | 2 +- python/setup.py | 2 +- tools/notcurses-installer.ifp | 4 ++-- tools/nuspec | 2 +- 49 files changed, 56 insertions(+), 49 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 932ac513e..48d4ddb95 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 3.0.12 +project(notcurses VERSION 3.0.13 DESCRIPTION "Blingful UI for modern terminal emulators" HOMEPAGE_URL "https://nick-black.com/dankwiki/index.php/notcurses" LANGUAGES C) diff --git a/NEWS.md b/NEWS.md index 1961919cc..c3b28bdc3 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,13 @@ This document attempts to list user-visible changes and any major internal rearrangements of Notcurses. +* 3.0.13 (2025-01-11) + * Fix regression when building with `USE_CXX=off`. + * Use `distutils` from its own Python component rather than assuming + it's in `setuputils`, from which it was removed in Python 3.12. + * Properly check for UTF8 before calling ncmetric_use_utf8(), fixing + a bug when using ncmetric without UTF8 support. + * 3.0.12 (2025-01-09) * Fixed a bug when rendering QR codes into a small area. QR codes now require `NCBLIT_2x1`, as that is the only blitter which can generate a diff --git a/cffi/notcurses-pydemo.1.md b/cffi/notcurses-pydemo.1.md index 0719f4aa9..f05de6632 100644 --- a/cffi/notcurses-pydemo.1.md +++ b/cffi/notcurses-pydemo.1.md @@ -1,6 +1,6 @@ % notcurses-pydemo(1) % nick black -% v3.0.12 +% v3.0.13 # NAME diff --git a/cffi/setup.py b/cffi/setup.py index bf395e526..8422a74de 100644 --- a/cffi/setup.py +++ b/cffi/setup.py @@ -49,7 +49,7 @@ except ImportError: setup( name="notcurses", - version="3.0.12", + version="3.0.13", packages=['notcurses'], scripts=['notcurses-pydemo', 'ncdirect-pydemo'], package_dir={'': 'src'}, diff --git a/doc/Doxyfile b/doc/Doxyfile index 51181a52b..064099a0e 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 = 3.0.12 +PROJECT_NUMBER = 3.0.13 # 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 c2754c5ff..6d5f2678a 100644 --- a/doc/man/index.html +++ b/doc/man/index.html @@ -38,7 +38,7 @@ -

notcurses manual pages (v3.0.12)

+

notcurses manual pages (v3.0.13)

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 94098675c..9954c9ffd 100644 --- a/doc/man/man1/ncls.1.md +++ b/doc/man/man1/ncls.1.md @@ -1,6 +1,6 @@ % ncls(1) % nick black -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man1/ncneofetch.1.md b/doc/man/man1/ncneofetch.1.md index db0b29c39..ce4cfc2bc 100644 --- a/doc/man/man1/ncneofetch.1.md +++ b/doc/man/man1/ncneofetch.1.md @@ -1,6 +1,6 @@ % ncneofetch(1) % nick black -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man1/ncplayer.1.md b/doc/man/man1/ncplayer.1.md index 5882ae6fb..bb5c95971 100644 --- a/doc/man/man1/ncplayer.1.md +++ b/doc/man/man1/ncplayer.1.md @@ -1,6 +1,6 @@ % ncplayer(1) % nick black -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man1/nctetris.1.md b/doc/man/man1/nctetris.1.md index bece089a6..9bd29658c 100644 --- a/doc/man/man1/nctetris.1.md +++ b/doc/man/man1/nctetris.1.md @@ -1,6 +1,6 @@ % nctetris(1) % nick black -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man1/notcurses-demo.1.md b/doc/man/man1/notcurses-demo.1.md index 668632497..45ba545d9 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man1/notcurses-info.1.md b/doc/man/man1/notcurses-info.1.md index aa34d5e48..7f7f98c3d 100644 --- a/doc/man/man1/notcurses-info.1.md +++ b/doc/man/man1/notcurses-info.1.md @@ -1,6 +1,6 @@ % notcurses-info(1) % nick black -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man1/notcurses-input.1.md b/doc/man/man1/notcurses-input.1.md index 5f9d4f8a7..ac5dcf0bd 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man1/notcurses-tester.1.md b/doc/man/man1/notcurses-tester.1.md index f331886ff..033863222 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man1/tfman.1.md b/doc/man/man1/tfman.1.md index 4b6d0dc29..72b1e19c3 100644 --- a/doc/man/man1/tfman.1.md +++ b/doc/man/man1/tfman.1.md @@ -1,6 +1,6 @@ % tfman(1) % nick black -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses.3.md b/doc/man/man3/notcurses.3.md index 0ec752b0b..361af0cb5 100644 --- a/doc/man/man3/notcurses.3.md +++ b/doc/man/man3/notcurses.3.md @@ -1,6 +1,6 @@ % notcurses(3) % nick black -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_capabilities.3.md b/doc/man/man3/notcurses_capabilities.3.md index 4f769e3af..dac939934 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_cell.3.md b/doc/man/man3/notcurses_cell.3.md index ab925afc6..ee8785b26 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_channels.3.md b/doc/man/man3/notcurses_channels.3.md index f8c9d3797..a610f406a 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_core.3.md b/doc/man/man3/notcurses_core.3.md index 63a785dd8..994f9a9a2 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_direct.3.md b/doc/man/man3/notcurses_direct.3.md index 1eca355fb..60718623d 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_fade.3.md b/doc/man/man3/notcurses_fade.3.md index b832f0289..84c880e24 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_fds.3.md b/doc/man/man3/notcurses_fds.3.md index 96125d75e..5313c2f5d 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_init.3.md b/doc/man/man3/notcurses_init.3.md index 8784de62e..069f63990 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_input.3.md b/doc/man/man3/notcurses_input.3.md index 2215ad259..cf49d248e 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_lines.3.md b/doc/man/man3/notcurses_lines.3.md index 43f4f5151..40d135553 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_menu.3.md b/doc/man/man3/notcurses_menu.3.md index 7098a7307..e23d6f3fe 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_metric.3.md b/doc/man/man3/notcurses_metric.3.md index f52fb2519..4d9439a14 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_multiselector.3.md b/doc/man/man3/notcurses_multiselector.3.md index 16dac72d9..208a71e84 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_output.3.md b/doc/man/man3/notcurses_output.3.md index c74f9a2a2..e8b992f21 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_palette.3.md b/doc/man/man3/notcurses_palette.3.md index 9e8b7e634..a7d001766 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_pile.3.md b/doc/man/man3/notcurses_pile.3.md index a4d2ed3b7..0e297e137 100644 --- a/doc/man/man3/notcurses_pile.3.md +++ b/doc/man/man3/notcurses_pile.3.md @@ -1,6 +1,6 @@ % notcurses_pile(3) % nick black -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_plane.3.md b/doc/man/man3/notcurses_plane.3.md index 4f73a6ad2..37eff3bd1 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_plot.3.md b/doc/man/man3/notcurses_plot.3.md index 4c7084010..439432ca7 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_reader.3.md b/doc/man/man3/notcurses_reader.3.md index 5f9f99d50..a14ef79c1 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_reel.3.md b/doc/man/man3/notcurses_reel.3.md index 15d0ac391..662735fa1 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_refresh.3.md b/doc/man/man3/notcurses_refresh.3.md index 91f4f014d..535ac2cab 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_render.3.md b/doc/man/man3/notcurses_render.3.md index 86a3d0dd3..8febff78d 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_selector.3.md b/doc/man/man3/notcurses_selector.3.md index 6c9857b82..0920ede65 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_stats.3.md b/doc/man/man3/notcurses_stats.3.md index a73f77834..5f616479b 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_stdplane.3.md b/doc/man/man3/notcurses_stdplane.3.md index a7bcb426d..40c669707 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_stop.3.md b/doc/man/man3/notcurses_stop.3.md index 86c040a96..4185236a9 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_tabbed.3.md b/doc/man/man3/notcurses_tabbed.3.md index e709ca0b0..8b7ce03cc 100644 --- a/doc/man/man3/notcurses_tabbed.3.md +++ b/doc/man/man3/notcurses_tabbed.3.md @@ -1,5 +1,5 @@ % notcurses_tabbed(3) -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_tree.3.md b/doc/man/man3/notcurses_tree.3.md index 6c00529e9..73b508c95 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 -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_util.3.md b/doc/man/man3/notcurses_util.3.md index 0070a51e4..b64f1613a 100644 --- a/doc/man/man3/notcurses_util.3.md +++ b/doc/man/man3/notcurses_util.3.md @@ -1,6 +1,6 @@ % notcurses_util(3) % nick black -% v3.0.12 +% v3.0.13 # NAME diff --git a/doc/man/man3/notcurses_visual.3.md b/doc/man/man3/notcurses_visual.3.md index 4885915a1..4f77d088f 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 -% v3.0.12 +% v3.0.13 # NAME notcurses_visual - notcurses multimedia diff --git a/python/setup.py b/python/setup.py index 2926542dd..dd21613d6 100644 --- a/python/setup.py +++ b/python/setup.py @@ -38,7 +38,7 @@ if environ.get('LDFLAGS') is None: setup( name="notcurses", - version="3.0.12", + version="3.0.13", packages=['notcurses'], ext_modules=[ Extension( diff --git a/tools/notcurses-installer.ifp b/tools/notcurses-installer.ifp index d7db5feb8..14437c033 100644 --- a/tools/notcurses-installer.ifp +++ b/tools/notcurses-installer.ifp @@ -3,7 +3,7 @@ ProjectFileVersion = 1.1 [General] Program name = Notcurses -Program version = 3.0.12 +Program version = 3.0.13 Windows 2000 = 0 Windows XP = 0 Windows Server 2003 = 0 @@ -55,7 +55,7 @@ Time = 2 PlaySound = 0 Allow = 0 [Build] -File = C:\msys64\home\niblack\src\notcurses\notcurses-3.0.12.exe +File = C:\msys64\home\niblack\src\notcurses\notcurses-3.0.13.exe SetupIconPath = C:\msys64\home\niblack\src\notcurses\doc\icon.ico UninstallIconPath = C:\msys64\home\niblack\src\notcurses\doc\icon.ico CompressionMethod = 0 diff --git a/tools/nuspec b/tools/nuspec index 6a82765e0..7168e7941 100644 --- a/tools/nuspec +++ b/tools/nuspec @@ -3,7 +3,7 @@ Notcurses - 3.0.12 + 3.0.13 Notcurses TUI/CLI library Library for blingful TUIs and character graphics nick black