This commit is contained in:
nick black 2020-01-09 05:22:34 -05:00
parent 2cad2741d5
commit 7e40453199
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC
21 changed files with 23 additions and 23 deletions

View File

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.14) cmake_minimum_required(VERSION 3.14)
project(notcurses VERSION 1.1.0 project(notcurses VERSION 1.0.1
DESCRIPTION "UI for modern terminal emulators" DESCRIPTION "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)

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
notcurses (1.1.0-1) UNRELEASED; urgency=medium notcurses (1.0.1-1) unstable; urgency=medium
* Add python3-all-dev build-dep (#149) * Add python3-all-dev build-dep (#149)

View File

@ -1,4 +1,4 @@
.TH notcurses-demo 1 "v1.1.0" .TH notcurses-demo 1 "v1.0.1"
.SH NAME .SH NAME
notcurses-demo \- Show off some notcurses features notcurses-demo \- Show off some notcurses features
.SH SYNOPSIS .SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH notcurses-input. 1 "v1.1.0" .TH notcurses-input. 1 "v1.0.1"
.SH NAME .SH NAME
notcurses-input \- Display and decode input notcurses-input \- Display and decode input
.SH SYNOPSIS .SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH notcurses-planereel 1 "v1.1.0" .TH notcurses-planereel 1 "v1.0.1"
.SH NAME .SH NAME
notcurses-planereel \- Experiment with panelreels notcurses-planereel \- Experiment with panelreels
.SH SYNOPSIS .SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH notcurses-view 1 "v1.1.0" .TH notcurses-view 1 "v1.0.1"
.SH NAME .SH NAME
notcurses-view \- Render multimedia to the terminal notcurses-view \- Render multimedia to the terminal
.SH SYNOPSIS .SH SYNOPSIS

View File

@ -1,6 +1,6 @@
% notcurses(3) % notcurses(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v1.1.0 % v1.0.1
# NAME # NAME
@ -56,7 +56,7 @@ notcurses supports input from keyboards (via **stdin**) and pointing devices (vi
a broker such as GPM, X, or Wayland). Input is delivered as 32-bit Unicode a broker such as GPM, X, or Wayland). Input is delivered as 32-bit Unicode
code points. Synthesized events such as mouse button presses and arrow keys code points. Synthesized events such as mouse button presses and arrow keys
are mapped into Unicode's are mapped into Unicode's
[Supplementary Private Use Area-B](https://unicode.org/charts/PDF/U1.1.00.pdf). [Supplementary Private Use Area-B](https://unicode.org/charts/PDF/U1.0.10.pdf).
Information on input is available at **notcurses_input(3)**. Information on input is available at **notcurses_input(3)**.
## Ncplanes ## Ncplanes

View File

@ -1,6 +1,6 @@
% notcurses_cell(3) % notcurses_cell(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v1.1.0 % v1.0.1
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_channels(3) % notcurses_channels(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v1.1.0 % v1.0.1
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_init(3) % notcurses_init(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v1.1.0 % v1.0.1
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_input(3) % notcurses_input(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v1.1.0 % v1.0.1
# NAME # NAME
@ -39,7 +39,7 @@ notcurses supports input from keyboards and mice, and any device that looks
like them. Mouse support requires a broker such as GPM, Wayland, or Xorg, and like them. Mouse support requires a broker such as GPM, Wayland, or Xorg, and
must be explicitly enabled via **notcurses_mouse_enable(3)**. The full 32-bit must be explicitly enabled via **notcurses_mouse_enable(3)**. The full 32-bit
range of Unicode is supported (see **unicode(7)**), with synthesized events range of Unicode is supported (see **unicode(7)**), with synthesized events
mapped into the [Supplementary Private Use Area-B](https://unicode.org/charts/PDF/U1.1.00.pdf). mapped into the [Supplementary Private Use Area-B](https://unicode.org/charts/PDF/U1.0.10.pdf).
Unicode characters are returned directly as UCS-32, one codepoint at a time. Unicode characters are returned directly as UCS-32, one codepoint at a time.
notcurses takes its keyboard input from **stdin**, which will be placed into notcurses takes its keyboard input from **stdin**, which will be placed into

View File

@ -1,6 +1,6 @@
% notcurses_lines(3) % notcurses_lines(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v1.1.0 % v1.0.1
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_ncplane(3) % notcurses_ncplane(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v1.1.0 % v1.0.1
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_ncvisual(3) % notcurses_ncvisual(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v1.1.0 % v1.0.1
# NAME # NAME
notcurses_ncvisual - notcurses multimedia notcurses_ncvisual - notcurses multimedia

View File

@ -1,6 +1,6 @@
% notcurses_output(3) % notcurses_output(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v1.1.0 % v1.0.1
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_panelreels(3) % notcurses_panelreels(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v1.1.0 % v1.0.1
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_render(3) % notcurses_render(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v1.1.0 % v1.0.1
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_stats(3) % notcurses_stats(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v1.1.0 % v1.0.1
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_stdplane(3) % notcurses_stdplane(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v1.1.0 % v1.0.1
# NAME # NAME

View File

@ -1,6 +1,6 @@
% notcurses_stop(3) % notcurses_stop(3)
% nick black <nickblack@linux.com> % nick black <nickblack@linux.com>
% v1.1.0 % v1.0.1
# NAME # NAME

View File

@ -1,6 +1,6 @@
[package] [package]
name = "notcurses" name = "notcurses"
version = "1.1.0" version = "1.0.1"
authors = ["nick black <dankamongmen@gmail.com>"] authors = ["nick black <dankamongmen@gmail.com>"]
edition = "2018" edition = "2018"
license = "Apache-2.0" license = "Apache-2.0"