diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 43a1133..a44a3d3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,7 @@ RTV Changelog ============= +.. _1.9.0: http://github.com/michael-lazar/rtv/releases/tag/v1.9.0 .. _1.8.1: http://github.com/michael-lazar/rtv/releases/tag/v1.8.1 .. _1.8.0: http://github.com/michael-lazar/rtv/releases/tag/v1.8.0 .. _1.7.0: http://github.com/michael-lazar/rtv/releases/tag/v1.7.0 @@ -16,6 +17,18 @@ RTV Changelog .. _1.2.1: http://github.com/michael-lazar/rtv/releases/tag/v1.2.1 .. _1.2: http://github.com/michael-lazar/rtv/releases/tag/v1.2 +------------------- +1.9.0_ (2016-04-05) +------------------- +Features + +* You can now open long posts/comments with the $PAGER by pressing `l`. +* Changed a couple of visual separators. + +Documentation + +* Added testing instructions to the FAQ. + ------------------- 1.8.1_ (2016-03-01) ------------------- diff --git a/rtv.1 b/rtv.1 index 40581b5..c5e68d5 100644 --- a/rtv.1 +++ b/rtv.1 @@ -1,4 +1,4 @@ -.TH "RTV" "1" "March 02, 2016" "Version 1.8.1" "Usage and Commands" +.TH "RTV" "1" "April 06, 2016" "Version 1.9.0" "Usage and Commands" .SH NAME RTV - Reddit Terminal Viewer .SH SYNOPSIS @@ -66,13 +66,14 @@ for future sessions. You can disable this behavior by setting the option .SH ENVIRONMENT .TP .BR RTV_EDITOR -Specifies which text editor RTV will attempt to use when editing comments and -posts. RTV will fallback to \fI$EDITOR\fR if the editor is unspecified. +Text editor to use when editing comments and submissions. Will fallback to +\fI$EDITOR\fR. .TP .BR BROWSER -Specifies which webbrowser RTV will attempt to use when opening links. -This can be set to a terminal browser (w3m, lynx, elinks, etc.) for a true -terminal experience. RTV will fallback to the system's default browser. +Web browser to use when opening links. +.TP +.BR PAGER +Pager to use when expanding individual comments and submissions. .SH AUTHOR Michael Lazar (2016). .SH BUGS diff --git a/rtv/__version__.py b/rtv/__version__.py index cea907d..c8ee29d 100644 --- a/rtv/__version__.py +++ b/rtv/__version__.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals -__version__ = '1.8.1' +__version__ = '1.9.0' diff --git a/scripts/rtv.1.template b/scripts/rtv.1.template index 68da2d1..02831dd 100644 --- a/scripts/rtv.1.template +++ b/scripts/rtv.1.template @@ -30,6 +30,7 @@ Text editor to use when editing comments and submissions. Will fallback to .TP .BR BROWSER Web browser to use when opening links. +.TP .BR PAGER Pager to use when expanding individual comments and submissions. .SH AUTHOR