pull/1132/head
nick black 4 years ago
parent 65ed8c0d86
commit 537caa2173
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

@ -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 2.0.4 project(notcurses VERSION 2.0.5
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 CXX) LANGUAGES C CXX)

@ -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.
* 2.0.5 (not yet released) * 2.0.5 (2020-11-21)
* The `horiz` union of `ncplane_options` has been discarded; the `int x` * The `horiz` union of `ncplane_options` has been discarded; the `int x`
within has been promoted. This union brought no actual type safety, and was within has been promoted. This union brought no actual type safety, and was
annoying for callers to deal with otherwise. Sorry for the inconvenience. annoying for callers to deal with otherwise. Sorry for the inconvenience.

@ -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 = 2.0.4 PROJECT_NUMBER = 2.0.5
# 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

@ -28,7 +28,7 @@
</center> </center>
<hr> <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> <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>
<h1><a href="https://nick-black.com/dankwiki/index.php/Notcurses">notcurses</a> man pages (v2.0.4)</h1> <h1><a href="https://nick-black.com/dankwiki/index.php/Notcurses">notcurses</a> man pages (v2.0.5)</h1>
<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/>
<h2>Executables (section 1)</h2> <h2>Executables (section 1)</h2>
<a href="ncneofetch.1.html">ncneofetch</a>—generate low-effort posts for r/unixporn<br/> <a href="ncneofetch.1.html">ncneofetch</a>—generate low-effort posts for r/unixporn<br/>

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

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

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

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

@ -1,6 +1,6 @@
% notcurses-tetris(1) % notcurses-tetris(1)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v2.0.4 % v2.0.5
# NAME # NAME

@ -1,6 +1,6 @@
% notcurses-view(1) % notcurses-view(1)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v2.0.4 % v2.0.5
# NAME # NAME

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

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

@ -1,6 +1,6 @@
% notcurses_cell(3) % notcurses_cell(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v2.0.4 % v2.0.5
# NAME # NAME
@ -36,7 +36,7 @@ typedef struct cell {
#define CELL_FG_PALETTE (CELL_BG_PALETTE << 32u) #define CELL_FG_PALETTE (CELL_BG_PALETTE << 32u)
#define CHANNEL_ALPHA_MASK 0x30000000ull #define CHANNEL_ALPHA_MASK 0x30000000ull
#define CELL_ALPHA_HIGHCONTRAST 0x30000000ull #define CELL_ALPHA_HIGHCONTRAST 0x30000000ull
#define CELL_ALPHA_TRANSPARENT 0x2.0.4000ull #define CELL_ALPHA_TRANSPARENT 0x2.0.5000ull
#define CELL_ALPHA_BLEND 0x10000000ull #define CELL_ALPHA_BLEND 0x10000000ull
#define CELL_ALPHA_OPAQUE 0x00000000ull #define CELL_ALPHA_OPAQUE 0x00000000ull
``` ```

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

@ -1,6 +1,6 @@
% ncdirect_init(3) % ncdirect_init(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v2.0.4 % v2.0.5
# NAME # NAME

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@ -1,6 +1,6 @@
[package] [package]
name = "libnotcurses-sys" name = "libnotcurses-sys"
version = "2.0.4" version = "2.0.5"
authors = ["nick black <dankamongmen@gmail.com>"] authors = ["nick black <dankamongmen@gmail.com>"]
license = "Apache-2.0" license = "Apache-2.0"
edition = "2018" edition = "2018"

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

Loading…
Cancel
Save