This commit is contained in:
nick black 2024-10-02 17:27:41 -04:00
parent 8e6dd6e134
commit bfb65c252e
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC
49 changed files with 54 additions and 50 deletions

View File

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

View File

@ -1,7 +1,7 @@
This document attempts to list user-visible changes and any major internal This document attempts to list user-visible changes and any major internal
rearrangements of Notcurses. rearrangements of Notcurses.
* 3.0.10 (2024-10-02) * 3.0.11 (2024-10-02)
* We now normalize the return of `nl_langinfo()` according to the behavior * We now normalize the return of `nl_langinfo()` according to the behavior
of glibc's `_nl_normalize_charset()`, supporting some atypical synonyms of glibc's `_nl_normalize_charset()`, supporting some atypical synonyms
of `UTF-8`. of `UTF-8`.
@ -9,6 +9,10 @@ rearrangements of Notcurses.
that broke loading of sixels having more than 12 rows (sixel generation that broke loading of sixels having more than 12 rows (sixel generation
from images worked fine). Thanks, waveplate! from images worked fine). Thanks, waveplate!
* Reject illegal geometries in `ncvisual_from_*()`. * Reject illegal geometries in `ncvisual_from_*()`.
* We build with FFMPEG 7.1.
* 3.0.10 (2024-10-02)
* Cursed.
* 3.0.9 (2022-12-10) * 3.0.9 (2022-12-10)
* Eliminated infinite loop in `ncplane_move_family_above()`. * Eliminated infinite loop in `ncplane_move_family_above()`.

View File

@ -1,6 +1,6 @@
% notcurses-pydemo(1) % notcurses-pydemo(1)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -49,7 +49,7 @@ except ImportError:
setup( setup(
name="notcurses", name="notcurses",
version="3.10.0", version="3.0.10",
packages=['notcurses'], packages=['notcurses'],
scripts=['notcurses-pydemo', 'ncdirect-pydemo'], scripts=['notcurses-pydemo', 'ncdirect-pydemo'],
package_dir={'': 'src'}, package_dir={'': 'src'},

View File

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

View File

@ -38,7 +38,7 @@
</a> </a>
</div> </div>
<iframe align="right" width="560" height="315" src="https://www.youtube.com/embed/dcjkezf1ARY" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> <iframe align="right" width="560" height="315" src="https://www.youtube.com/embed/dcjkezf1ARY" 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> manual pages (<a href="https://github.com/dankamongmen/notcurses/releases/tag/v3.10.0">v3.10.0</a>)</h2> <h2><a href="https://nick-black.com/dankwiki/index.php/Notcurses">notcurses</a> manual pages (<a href="https://github.com/dankamongmen/notcurses/releases/tag/v3.0.10">v3.0.10</a>)</h2>
<a href="notcurses.3.html">notcurses(3)</a>—a blingful TUI library<br/> <a href="notcurses.3.html">notcurses(3)</a>—a blingful TUI library<br/>
<h3>Executables (section 1)</h3> <h3>Executables (section 1)</h3>
<a href="ncls.1.html">ncls</a>—list files, displaying multimedia along with them<br/> <a href="ncls.1.html">ncls</a>—list files, displaying multimedia along with them<br/>

View File

@ -1,6 +1,6 @@
% ncls(1) % ncls(1)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% ncneofetch(1) % ncneofetch(1)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% ncplayer(1) % ncplayer(1)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% nctetris(1) % nctetris(1)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses-demo(1) % notcurses-demo(1)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses-info(1) % notcurses-info(1)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses-input(1) % notcurses-input(1)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses-tester(1) % notcurses-tester(1)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% tfman(1) % tfman(1)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses(3) % notcurses(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_capabilities(3) % notcurses_capabilities(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_cell(3) % notcurses_cell(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_channels(3) % notcurses_channels(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_core(3) % notcurses_core(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_direct(3) % notcurses_direct(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_fade(3) % notcurses_fade(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_fds(3) % notcurses_fds(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_init(3) % notcurses_init(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_input(3) % notcurses_input(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_lines(3) % notcurses_lines(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_menu(3) % notcurses_menu(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_metric(3) % notcurses_metric(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_multiselector(3) % notcurses_multiselector(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_output(3) % notcurses_output(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_palette(3) % notcurses_palette(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_pile(3) % notcurses_pile(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_plane(3) % notcurses_plane(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_plot(3) % notcurses_plot(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_reader(3) % notcurses_reader(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_reel(3) % notcurses_reel(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_refresh(3) % notcurses_refresh(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_render(3) % notcurses_render(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_selector(3) % notcurses_selector(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_stats(3) % notcurses_stats(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_stdplane(3) % notcurses_stdplane(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_stop(3) % notcurses_stop(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,5 +1,5 @@
% notcurses_tabbed(3) % notcurses_tabbed(3)
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_tree(3) % notcurses_tree(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_util(3) % notcurses_util(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_visual(3) % notcurses_visual(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v3.10.0 % v3.0.10
# NAME # NAME
notcurses_visual - notcurses multimedia notcurses_visual - notcurses multimedia

View File

@ -38,7 +38,7 @@ if environ.get('LDFLAGS') is None:
setup( setup(
name="notcurses", name="notcurses",
version="3.10.0", version="3.0.10",
packages=['notcurses'], packages=['notcurses'],
ext_modules=[ ext_modules=[
Extension( Extension(

View File

@ -3,7 +3,7 @@
ProjectFileVersion = 1.1 ProjectFileVersion = 1.1
[General] [General]
Program name = Notcurses Program name = Notcurses
Program version = 3.10.0 Program version = 3.0.10
Windows 2000 = 0 Windows 2000 = 0
Windows XP = 0 Windows XP = 0
Windows Server 2003 = 0 Windows Server 2003 = 0
@ -55,7 +55,7 @@ Time = 2
PlaySound = 0 PlaySound = 0
Allow = 0 Allow = 0
[Build] [Build]
File = C:\msys64\home\niblack\src\notcurses\notcurses-3.10.0.exe File = C:\msys64\home\niblack\src\notcurses\notcurses-3.0.10.exe
SetupIconPath = C:\msys64\home\niblack\src\notcurses\doc\icon.ico SetupIconPath = C:\msys64\home\niblack\src\notcurses\doc\icon.ico
UninstallIconPath = C:\msys64\home\niblack\src\notcurses\doc\icon.ico UninstallIconPath = C:\msys64\home\niblack\src\notcurses\doc\icon.ico
CompressionMethod = 0 CompressionMethod = 0

View File

@ -3,7 +3,7 @@
<!-- need 4.9.0+ for SPDX license expressions --> <!-- need 4.9.0+ for SPDX license expressions -->
<metadata minClientVersion="4.9.0"> <metadata minClientVersion="4.9.0">
<id>Notcurses</id> <id>Notcurses</id>
<version>3.10.0</version> <version>3.0.10</version>
<title>Notcurses TUI/CLI library</title> <title>Notcurses TUI/CLI library</title>
<description>Library for blingful TUIs and character graphics</description> <description>Library for blingful TUIs and character graphics</description>
<authors>nick black</authors> <authors>nick black</authors>