From c5777d78647984ffab62d3ef608be962f3018ab1 Mon Sep 17 00:00:00 2001 From: Michael Lazar Date: Mon, 11 Jul 2016 18:33:07 -0700 Subject: [PATCH] Upping version. --- CHANGELOG.rst | 17 +++++++++++++++++ rtv.1 | 6 +++++- rtv/__version__.py | 2 +- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e68eda0..ac93868 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,7 @@ 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.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 @@ -18,6 +19,22 @@ 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.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) ------------------- diff --git a/rtv.1 b/rtv.1 index f3028a9..43571c3 100644 --- a/rtv.1 +++ b/rtv.1 @@ -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 RTV - Reddit Terminal Viewer .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 \fI$EDITOR\fR. .TP +.BR RTV_URLVIEWER +Url Viewer to use to extract links from comments. Requires a compatible +Url Viewer to be installed +.TP .BR BROWSER Web browser to use when opening links. .TP diff --git a/rtv/__version__.py b/rtv/__version__.py index b158713..18284e2 100644 --- a/rtv/__version__.py +++ b/rtv/__version__.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals -__version__ = '1.9.1' +__version__ = '1.10.0'