get everybody read for 0.9.3

This commit is contained in:
nick black 2019-12-25 11:55:07 -05:00
parent 13b376f94f
commit 24350ed51e
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC
10 changed files with 46 additions and 9 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
debian
obj-x86_64-linux-gnu
rust/target

View File

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.13)
project(notcurses VERSION 0.9.2
project(notcurses VERSION 0.9.3
DESCRIPTION "UI for modern terminal emulators"
HOMEPAGE_URL "https://nick-black.com/dankwiki/index.php/notcurses"
LANGUAGES C CXX)

3
debian/changelog vendored
View File

@ -1,7 +1,8 @@
notcurses (1.0.0) UNRELEASED; urgency=medium
notcurses (0.9.3) unstable; urgency=medium
* notcurses-bin depends on ncurses-term
* libnotcurses0 recommends ncurses-term
* New upstream version
-- Nick Black <dankamongmen@gmail.com> Mon, 23 Dec 2019 00:57:22 -0500

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME=notcurses
DISTVERSION=0.9.2
DISTVERSION=0.9.3
CATEGORIES=graphics
MASTER_SITES=https://nick-black.com/dankwiki/index.php/Notcurses

View File

@ -1,4 +1,4 @@
.TH notcurses-demo 1 "2019-12-05"
.TH notcurses-demo 1 "2019-12-25"
.SH NAME
notcurses-demo \- Show off some notcurses features
.SH SYNOPSIS
@ -39,7 +39,7 @@ contains a set of text-based demonstrations of capabilities from the notcurses l
.P
(e)agle—zoom in on a background from Ninja Gaiden
.P
(m)axcolors—smoothly changing colors
(m)axcolors—smoothly changing colors and transparencies
.P
(l)uigi-a dashing plumber of Apennine persuasion
.P

View File

@ -1,10 +1,11 @@
.TH notcurses-input. 1 "2019-12-05"
.TH notcurses-input. 1 "2019-12-25"
.SH NAME
notcurses-input \- Display and decode input
.SH SYNOPSIS
.B notcurses-input
.SH DESCRIPTION
.B notcurses-input
reads from stdin and decodes the input to stdout, including synthesized events.
Reads from stdin and decodes the input to stdout, including synthesized events
and mouse events.
.SH SEE ALSO
notcurses(3notcurses), terminfo(5)

View File

@ -0,0 +1,33 @@
.TH notcurses-planereel 1 "2019-12-25"
.SH NAME
notcurses-planereel \- Experiment with panelreels
.SH SYNOPSIS
.B notcurses-planereel
[ \fB\-\-ob \fIbottomoffset \fR]
[ \fB\-\-ot \fItopoffset \fR]
[ \fB\-\-ol \fIleftoffset \fR]
[ \fB\-\-or \fIrightoffset \fR]
[ \fB\-t \fItabletmask \fR]
[ \fB\-b \fIbordermask \fR]
.SH OPTIONS
.TP
.BR \-\-ob \fIbottomoffset\fR
Offset the panelreel some number of rows from the bottom.
.TP
.BR \-\-ot \fItopoffset\fR
Offset the panelreel some number of rows from the top.
.TP
.BR \-\-ol \fIleftoffset\fR
Offset the panelreel some number of columns from the left.
.TP
.BR \-\-or \fIrightoffset\fR
Offset the panelreel some number of columns from the right.
.SH DESCRIPTION
.B notcurses-planereel
A testing and exploration tool for notcurses panelreels. With the program
open, press 'a' to create a new panel, or 'd' to delete the focused panel.
'q' quits at any time.
.SH NOTES
Proper display requires a terminal advertising the RGB terminfo(5) capability (necessary for specification of arbitrary 24bpp colors), and a monospaced font with good Unicode support.
.SH SEE ALSO
notcurses(3notcurses), terminfo(5)

View File

@ -1,4 +1,4 @@
.TH notcurses-view 1 "2019-12-05"
.TH notcurses-view 1 "2019-12-25"
.SH NAME
notcurses-view \- Render multimedia to the terminal
.SH SYNOPSIS

View File

@ -19,4 +19,5 @@
* `git commit -a`
* Upload new Rust crate with `cargo upload`
* Update Debian changelog with `dch -v $NEXTVERSION-1`
* Update `doc/FreeBSD-Makefile` version
* Update CMakeLists.txt with next version

View File

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