diff --git a/AUTHORS.rst b/AUTHORS.rst index 19a672b3..b2cce2f7 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -12,13 +12,14 @@ Thanks to the following people for their contributions to this project. * `Johnathan Jenkins `_ * `tyjak `_ * `Alexandre Kaskasoli `_ +* `Josue Ortega `_ * `mekhami `_ * `obosob `_ -* `Josue Ortega `_ * `Toby Hughes `_ * `Noah Morrison `_ * `mardiqwop `_ * `Shawn Hind `_ +* `Antoine Nguyen `_ * `JuanPablo `_ * `Robert Greener `_ * `nagracks `_ @@ -29,8 +30,7 @@ Thanks to the following people for their contributions to this project. * `afloofloo `_ * `Charles Saracco `_ * `cmccandless `_ +* `Danilo G. Baio `_ * `Fabio Alessandro Locati `_ * `Hans Roman `_ -* `Marc Abramowitz `_ -* `Matthew Smith `_ -* `mskwon `_ \ No newline at end of file +* `Marc Abramowitz `_ \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8c6ca47e..286284ca 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,7 @@ RTV Changelog ============= +.. _1.19.0: http://github.com/michael-lazar/rtv/releases/tag/v1.19.0 .. _1.18.0: http://github.com/michael-lazar/rtv/releases/tag/v1.18.0 .. _1.17.1: http://github.com/michael-lazar/rtv/releases/tag/v1.17.1 .. _1.17.0: http://github.com/michael-lazar/rtv/releases/tag/v1.17.0 @@ -30,6 +31,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.19.0_ (2017-10-24) +-------------------- + +Features + +* Greatly improved loading times by using smarter rate limiting and page caching. +* The logout prompt is now visible as a popup notification. +* New MIME parsers have been added for gifs.com, giphy.com, imgtc.com, + imgflip.com, livememe.com, makeameme.org and flickr.com +* Improved mailcap examples for parsing video links with mpv. + +Bugfixes + +* Patched a backwards-incompatible Reddit API change with the comment + permalink now being returned in the response JSON. +* Fixed crashing when a comment contained exotic unicode characters like emojis. +* Removed the option to select custom sorting ranges for controversial and + top comments. +* Fixed MIME parsing for single image Imgur galleries. + +Codebase + +* Preliminary refactoring for the upcoming theme support. +* Created some utility scripts for project maintenance. +* Created a release checklist document. +* Updated the README gif images and document layout. + -------------------- 1.18.0_ (2017-09-06) -------------------- @@ -440,7 +469,8 @@ Bugfixes ----------------- Features -* Unicode support has been vastly improved and is now turned on by default. Ascii only mode can be toggled with the `--ascii` command line flag. +* Unicode support has been vastly improved and is now turned on by default. + Ascii only mode can be toggled with the `--ascii` command line flag. * Added pageup and pagedown with the `m` and `n` keys. * Support for terminal based webbrowsers such as links and w3m. * Browsing history is now persistent and stored in `$XDG_CACHE_HOME`. diff --git a/rtv.1 b/rtv.1 index 9bec0494..d12c1453 100644 --- a/rtv.1 +++ b/rtv.1 @@ -1,4 +1,4 @@ -.TH "RTV" "1" "September 06, 2017" "Version 1.18.0" "Usage and Commands" +.TH "RTV" "1" "October 24, 2017" "Version 1.19.0" "Usage and Commands" .SH NAME RTV - Reddit Terminal Viewer .SH SYNOPSIS @@ -68,7 +68,7 @@ Press \fB?\fR to open the help screen. .TP .BR $XDG_CONFIG_HOME/rtv/rtv.cfg The configuration file can be used to customize default program settings, see -README.rst for more information. +README.md for more information. .TP .BR $XDG_CONFIG_HOME/rtv/refresh-token After you login to reddit, your most recent OAuth refresh token will be stored diff --git a/rtv/__version__.py b/rtv/__version__.py index 4049e56b..9f0aedbe 100644 --- a/rtv/__version__.py +++ b/rtv/__version__.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals -__version__ = '1.18.0' +__version__ = '1.19.0'