Upping version

This commit is contained in:
Michael Lazar
2016-06-14 00:09:49 -07:00
parent 1f1beec4d3
commit c634711854
3 changed files with 34 additions and 7 deletions

View File

@@ -2,6 +2,7 @@
RTV Changelog 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.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.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.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.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.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) 1.9.0_ (2016-04-05)
------------------- -------------------

16
rtv.1
View File

@@ -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 .SH NAME
RTV - Reddit Terminal Viewer RTV - Reddit Terminal Viewer
.SH SYNOPSIS .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 .SH DESCRIPTION
Reddit Terminal Viewer is a lightweight browser for www.reddit.com built into a Reddit Terminal Viewer is a lightweight browser for www.reddit.com built into a
terminal window. terminal window.
@@ -17,15 +17,15 @@ show program's version number and exit
.TP .TP
\fB\-s SUBREDDIT\fR \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 .TP
\fB\-l LINK\fR \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 .TP
\fB\-\-log FILE\fR \fB\-\-log FILE\fR
log HTTP requests to the given file Log HTTP requests to the given file
.TP .TP
\fB\-\-config FILE\fR \fB\-\-config FILE\fR
@@ -33,7 +33,11 @@ Load configuration settings from the given file
.TP .TP
\fB\-\-ascii\fR \fB\-\-ascii\fR
enable ascii\-only mode Enable ascii\-only mode
.TP
\fB\-\-monochrome\fR
Disable color
.TP .TP
\fB\-\-non\-persistent\fR \fB\-\-non\-persistent\fR

View File

@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from __future__ import unicode_literals from __future__ import unicode_literals
__version__ = '1.9.0' __version__ = '1.9.1'