diff --git a/AUTHORS.rst b/AUTHORS.rst index fd8c1280..785119c2 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -7,13 +7,14 @@ Thanks to the following people for their contributions to this project. * `Michael Lazar `_ * `Tobin Brown `_ * `woorst `_ -* `Théo Piboubès `_ +* `Théo Piboubès `_ * `Yusuke Sakamoto `_ * `Johnathan Jenkins `_ * `tyjak `_ -* `alxk `_ +* `alxk `_ * `Josue Ortega `_ * `mekhami `_ +* `Nemanja Nedeljković `_ * `obosob `_ * `Toby Hughes `_ * `Noah Morrison `_ @@ -32,5 +33,4 @@ Thanks to the following people for their contributions to this project. * `afloofloo `_ * `Caleb Perkins `_ * `Charles Saracco `_ -* `Corey McCandless `_ -* `Danilo G. Baio `_ \ No newline at end of file +* `Corey McCandless `_ \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1dc0eb41..0f9e62d4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,7 @@ RTV Changelog ============= +.. _1.23.0: http://github.com/michael-lazar/rtv/releases/tag/v1.23.0 .. _1.22.1: http://github.com/michael-lazar/rtv/releases/tag/v1.22.1 .. _1.22.0: http://github.com/michael-lazar/rtv/releases/tag/v1.22.0 .. _1.21.0: http://github.com/michael-lazar/rtv/releases/tag/v1.21.0 @@ -35,6 +36,29 @@ 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.23.0_ (2018-06-24) +-------------------- + +Features + +* Submissions can now be marked as *[hidden]* using the ``space`` key. Hidden + submissions will be removed from the feed when the page is reloaded. +* New MIME parsers have been added for vimeo.com and streamja.com. +* Added support for opening links with **qutebrowser**. + +Bugfixes + +* Fixed unhandled OAuth server log messages being dumped to stdout. +* Fixed the application crashing when performing rate-limited requests. +* Fixed crash when displaying posts that contain null byte characters. + +Documentation + +* Added README badge for *saythanks.io*. +* Updated the mailcap template to support *v.redd.it* links. + + -------------------- 1.22.1_ (2018-03-11) -------------------- diff --git a/rtv.1 b/rtv.1 index c40265c5..3a58e97d 100644 --- a/rtv.1 +++ b/rtv.1 @@ -1,4 +1,4 @@ -.TH "RTV" "1" "March 11, 2018" "Version 1.22.1" "Usage and Commands" +.TH "RTV" "1" "June 25, 2018" "Version 1.23.0" "Usage and Commands" .SH NAME RTV - Reddit Terminal Viewer .SH SYNOPSIS diff --git a/rtv/__version__.py b/rtv/__version__.py index e86ad330..8e60a966 100644 --- a/rtv/__version__.py +++ b/rtv/__version__.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals -__version__ = '1.22.1' +__version__ = '1.23.0'