diff --git a/AUTHORS.rst b/AUTHORS.rst index 785119c2..9b4d950e 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -11,6 +11,7 @@ Thanks to the following people for their contributions to this project. * `Yusuke Sakamoto `_ * `Johnathan Jenkins `_ * `tyjak `_ +* `Edridge D'Souza `_ * `alxk `_ * `Josue Ortega `_ * `mekhami `_ @@ -18,7 +19,7 @@ Thanks to the following people for their contributions to this project. * `obosob `_ * `Toby Hughes `_ * `Noah Morrison `_ -* `mardiqwop `_ +* `Mardigon Toler `_ * `5225225 `_ * `Shawn Hind `_ * `Antoine Nguyen `_ @@ -29,8 +30,7 @@ Thanks to the following people for their contributions to this project. * `Lorenz Leitner `_ * `Reshef Elisha `_ * `Ryan Reno `_ +* `Sam Tebbs `_ * `Justin Partain `_ * `afloofloo `_ -* `Caleb Perkins `_ -* `Charles Saracco `_ -* `Corey McCandless `_ \ No newline at end of file +* `Caleb Perkins `_ \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0f9e62d4..8d034e94 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,7 @@ RTV Changelog ============= +.. _1.24.0: http://github.com/michael-lazar/rtv/releases/tag/v1.24.0 .. _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 @@ -36,6 +37,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.24.0_ (2018-08-12) +-------------------- + +Features + +* Python 3.7 is now officially supported. +* Lines that start with the hash symbol (#) are no longer ignored when + composing posts in your editor. This allows # to be used with Reddit's + markdown parser to denote headers. +* Added a new *dark colorblind* theme. +* Added support for the ``$RTV_PAGER`` environment variable, which can be + used to set a unique PAGER for rtv. +* Added the ability to sort submissions by **guilded**. + +Bugfixes + +* Fixed a crash when setting the ``$BROWSER`` with python 3.7. +* Improved the error message when attempting to vote on an archived post. +* Cleaned up several outdated MIME parsers. Removed the vidme, twitch, + oddshot, and imgtc parsers. Fixed the liveleak and reddit video parsers. + + -------------------- 1.23.0_ (2018-06-24) -------------------- diff --git a/rtv.1 b/rtv.1 index 3a58e97d..e40519f5 100644 --- a/rtv.1 +++ b/rtv.1 @@ -1,4 +1,4 @@ -.TH "RTV" "1" "June 25, 2018" "Version 1.23.0" "Usage and Commands" +.TH "RTV" "1" "August 13, 2018" "Version 1.24.0" "Usage and Commands" .SH NAME RTV - Reddit Terminal Viewer .SH SYNOPSIS diff --git a/rtv/__version__.py b/rtv/__version__.py index 8e60a966..cdbb94dc 100644 --- a/rtv/__version__.py +++ b/rtv/__version__.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals -__version__ = '1.23.0' +__version__ = '1.24.0'