diff --git a/AUTHORS.rst b/AUTHORS.rst index ebc8c6f..392143e 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -18,7 +18,6 @@ Thanks to the following people for their contributions to this project. * `Toby Hughes `_ * `Noah Morrison `_ * `mardiqwop `_ -* `5225225 `_ * `Shawn Hind `_ * `JuanPablo `_ * `Robert Greener `_ @@ -26,11 +25,12 @@ Thanks to the following people for their contributions to this project. * `Gustavo Zambonin `_ * `Lorenz Leitner `_ * `Reshef Elisha `_ +* `Ryan Reno `_ * `afloofloo `_ * `Charles Saracco `_ * `Fabio Alessandro Locati `_ * `Hans Roman `_ * `Marc Abramowitz `_ * `Matthew Smith `_ -* `Ram-Z `_ -* `Wieland Hoffmann `_ \ No newline at end of file +* `mskwon `_ +* `Ram-Z `_ \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 61f4f0f..932fbd9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,7 @@ RTV Changelog ============= +.. _1.17.0: http://github.com/michael-lazar/rtv/releases/tag/v1.17.0 .. _1.16.0: http://github.com/michael-lazar/rtv/releases/tag/v1.16.0 .. _1.15.1: http://github.com/michael-lazar/rtv/releases/tag/v1.15.1 .. _1.15.0: http://github.com/michael-lazar/rtv/releases/tag/v1.15.0 @@ -27,6 +28,34 @@ 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.17.0_ (2017-08-03) +-------------------- + +Features + +* Added the ``J`` command to jump to the next sibling comment. +* Added the ``K`` command to jump to the parent comment. +* Search results can now be sorted, and the title bar has been updated + to display the current search query. +* Imgur URLs are now resolved via the Imgur API. + This enables the loading of large albums with over 10 images. + An ``imgur_client_id`` option has been added to the RTV configuration. +* A MIME parser has been added for www.liveleak.com. +* RTV now respects the ``$VISUAL`` environment variable. + +Bugfixes + +* Fixed a screen refresh bug on urxvt terminals. +* New key bindings will now attempt to fallback to their default key if not + defined in the user's configuration file. + +Documentation + +* Added additional mailcap examples for framebuffer videos and iTerm2. +* Python version information is now captured in the log at startup. + + -------------------- 1.16.0_ (2017-06-08) -------------------- diff --git a/rtv.1 b/rtv.1 index e443fdb..eaf9396 100644 --- a/rtv.1 +++ b/rtv.1 @@ -1,4 +1,4 @@ -.TH "RTV" "1" "June 09, 2017" "Version 1.16.0" "Usage and Commands" +.TH "RTV" "1" "August 03, 2017" "Version 1.17.0" "Usage and Commands" .SH NAME RTV - Reddit Terminal Viewer .SH SYNOPSIS diff --git a/rtv/__version__.py b/rtv/__version__.py index d5084d7..a4864fc 100644 --- a/rtv/__version__.py +++ b/rtv/__version__.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals -__version__ = '1.16.0' +__version__ = '1.17.0'