From 6ebe7892740881271f148a499de754b21224351d Mon Sep 17 00:00:00 2001 From: Michael Lazar Date: Thu, 12 Jan 2017 18:23:42 -0800 Subject: [PATCH] Upping version --- .travis.yml | 1 + AUTHORS.rst | 14 +++++++------- CHANGELOG.rst | 21 +++++++++++++++++++++ rtv.1 | 2 +- rtv/__version__.py | 2 +- 5 files changed, 31 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 80cc630..b6f1d2c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ python: - "3.3" - "3.4" - "3.5" + - "3.6" before_install: - pip install coveralls pytest coverage mock pylint vcrpy install: diff --git a/AUTHORS.rst b/AUTHORS.rst index ccd78e1..e204ef7 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -11,26 +11,26 @@ Thanks to the following people for their contributions to this project. * `Yusuke Sakamoto `_ * `Johnathan Jenkins `_ * `tyjak `_ -* `Gustavo Zambonin `_ * `Alexandre Kaskasoli `_ -* `obosob `_ * `mekhami `_ +* `obosob `_ * `Toby Hughes `_ * `Noah Morrison `_ * `mardiqwop `_ -* `Shawn Hind `_ * `5225225 `_ -* `Robert Greener `_ -* `JuanPablo `_ +* `Shawn Hind `_ * `Alex Kahan `_ +* `JuanPablo `_ +* `Robert Greener `_ +* `Gustavo Zambonin `_ * `Lorenz Leitner `_ * `Reshef Elisha `_ * `nagracks `_ * `afloofloo `_ -* `Marc Abramowitz `_ +* `Charles Saracco `_ * `Fabio Alessandro Locati `_ * `Hans Roman `_ -* `Charles Saracco `_ +* `Marc Abramowitz `_ * `Matthew Smith `_ * `Ram-Z `_ * `Wieland Hoffmann `_ \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5a926aa..a25e7b6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,7 @@ RTV Changelog ============= +.. _1.14.0: http://github.com/michael-lazar/rtv/releases/tag/v1.14.0 .. _1.13.0: http://github.com/michael-lazar/rtv/releases/tag/v1.13.0 .. _1.12.1: http://github.com/michael-lazar/rtv/releases/tag/v1.12.1 .. _1.12.0: http://github.com/michael-lazar/rtv/releases/tag/v1.12.0 @@ -23,6 +24,26 @@ 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.14.0_ (2017-01-12) +-------------------- +Features + +* The order-by option menu now triggers after a single '2' or '5' keystroke + instead of needing to double press. + +Bugfixes + +* Mailcap now handles multi-part shell commands correctly, e.g. "emacs -nw" +* OS X no longer relies on $DISPLAY to check if there is a display available. +* Added error handling for terminals that don't support hiding the cursor. +* Fixed a bug on tmux that prevented scrolling when $TERM was set to + "xterm-256color" instead of screen. + +Documentation + +* Added section to FAQ about garbled characters output by curses. + -------------------- 1.13.0_ (2016-10-17) -------------------- diff --git a/rtv.1 b/rtv.1 index 90f2967..0f01d52 100644 --- a/rtv.1 +++ b/rtv.1 @@ -1,4 +1,4 @@ -.TH "RTV" "1" "October 18, 2016" "Version 1.13.0" "Usage and Commands" +.TH "RTV" "1" "January 13, 2017" "Version 1.13.1" "Usage and Commands" .SH NAME RTV - Reddit Terminal Viewer .SH SYNOPSIS diff --git a/rtv/__version__.py b/rtv/__version__.py index bd28410..b55647d 100644 --- a/rtv/__version__.py +++ b/rtv/__version__.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals -__version__ = '1.13.0' +__version__ = '1.13.1'