diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a44a3d3..e68eda0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,7 @@ RTV Changelog ============= +.. _1.9.1: http://github.com/michael-lazar/rtv/releases/tag/v1.9.1 .. _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 @@ -17,6 +18,28 @@ 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.1_ (2016-06-13) +------------------- +Features + +* Better support for */r/random*. +* Added a ``monochrome`` config setting to disable all color. +* Improved cursor positioning when expanding/hiding comments. +* Show ``(not enough space)`` when comments are too large. + +Bugfixes + +* Fixed permissions when copying the config file. +* Fixed bug where submission indicies were duplicated when paging. +* Specify praw v3.4.0 to avoid installing praw 4. + +Documentation + +* Added section to the readme on Arch Linux installation. +* Updated a few argument descriptions. +* Added a proper ascii logo. + ------------------- 1.9.0_ (2016-04-05) ------------------- diff --git a/rtv.1 b/rtv.1 index c5e68d5..f3028a9 100644 --- a/rtv.1 +++ b/rtv.1 @@ -1,8 +1,8 @@ -.TH "RTV" "1" "April 06, 2016" "Version 1.9.0" "Usage and Commands" +.TH "RTV" "1" "June 14, 2016" "Version 1.9.1" "Usage and Commands" .SH NAME RTV - Reddit Terminal Viewer .SH SYNOPSIS -rtv [\-h] [\-V] [\-s SUBREDDIT] [\-l LINK] [\-\-log FILE] [\-\-config FILE] [\-\-ascii] [\-\-non\-persistent] [\-\-clear\-auth] [\-\-copy\-config] +rtv [\-h] [\-V] [\-s SUBREDDIT] [\-l LINK] [\-\-log FILE] [\-\-config FILE] [\-\-ascii] [\-\-monochrome] [\-\-non\-persistent] [\-\-clear\-auth] [\-\-copy\-config] .SH DESCRIPTION Reddit Terminal Viewer is a lightweight browser for www.reddit.com built into a terminal window. @@ -17,15 +17,15 @@ show program's version number and exit .TP \fB\-s SUBREDDIT\fR -name of the subreddit that will be opened on start +Name of the subreddit that will be opened on start .TP \fB\-l LINK\fR -full URL of a submission that will be opened on start +Full URL of a submission that will be opened on start .TP \fB\-\-log FILE\fR -log HTTP requests to the given file +Log HTTP requests to the given file .TP \fB\-\-config FILE\fR @@ -33,7 +33,11 @@ Load configuration settings from the given file .TP \fB\-\-ascii\fR -enable ascii\-only mode +Enable ascii\-only mode + +.TP +\fB\-\-monochrome\fR +Disable color .TP \fB\-\-non\-persistent\fR diff --git a/rtv/__version__.py b/rtv/__version__.py index c8ee29d..b158713 100644 --- a/rtv/__version__.py +++ b/rtv/__version__.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals -__version__ = '1.9.0' +__version__ = '1.9.1'