Upping version.

This commit is contained in:
Michael Lazar
2016-07-11 18:33:07 -07:00
parent e30d53c49e
commit c5777d7864
3 changed files with 23 additions and 2 deletions

View File

@@ -2,6 +2,7 @@
RTV Changelog RTV Changelog
============= =============
.. _1.10.0: http://github.com/michael-lazar/rtv/releases/tag/v1.10.0
.. _1.9.1: http://github.com/michael-lazar/rtv/releases/tag/v1.9.1 .. _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
@@ -18,6 +19,22 @@ 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.10.0_ (2016-07-11)
--------------------
Features
* New key added, `b` extracts urls from comments with using urlviewer.
* Comment files are saved to **/tmp** if rtv encounters an error while posting.
* The terminal title now displays the subreddit name or submission url.
Bugfixes
* Fixed ia bug where the terminal title wasn't getting set.
* Fixed crash when entering empty or invalid subreddit name.
* **/r/me** is now displayed as "My Submissions" in the header.
* x-posts that link to subreddits should no longer crash.
------------------- -------------------
1.9.1_ (2016-06-13) 1.9.1_ (2016-06-13)
------------------- -------------------

6
rtv.1
View File

@@ -1,4 +1,4 @@
.TH "RTV" "1" "June 14, 2016" "Version 1.9.1" "Usage and Commands" .TH "RTV" "1" "July 12, 2016" "Version 1.10.0" "Usage and Commands"
.SH NAME .SH NAME
RTV - Reddit Terminal Viewer RTV - Reddit Terminal Viewer
.SH SYNOPSIS .SH SYNOPSIS
@@ -73,6 +73,10 @@ for future sessions. You can disable this behavior by setting the option
Text editor to use when editing comments and submissions. Will fallback to Text editor to use when editing comments and submissions. Will fallback to
\fI$EDITOR\fR. \fI$EDITOR\fR.
.TP .TP
.BR RTV_URLVIEWER
Url Viewer to use to extract links from comments. Requires a compatible
Url Viewer to be installed
.TP
.BR BROWSER .BR BROWSER
Web browser to use when opening links. Web browser to use when opening links.
.TP .TP

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.1' __version__ = '1.10.0'