diff --git a/AUTHORS.rst b/AUTHORS.rst index 48e1089..fd8c128 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -18,6 +18,7 @@ Thanks to the following people for their contributions to this project. * `Toby Hughes `_ * `Noah Morrison `_ * `mardiqwop `_ +* `5225225 `_ * `Shawn Hind `_ * `Antoine Nguyen `_ * `JuanPablo `_ @@ -27,10 +28,9 @@ Thanks to the following people for their contributions to this project. * `Lorenz Leitner `_ * `Reshef Elisha `_ * `Ryan Reno `_ -* `jupart `_ +* `Justin Partain `_ * `afloofloo `_ * `Caleb Perkins `_ * `Charles Saracco `_ * `Corey McCandless `_ -* `Danilo G. Baio `_ -* `Fabio Alessandro Locati `_ \ No newline at end of file +* `Danilo G. Baio `_ \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d013771..5ceef45 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,7 @@ RTV Changelog ============= +.. _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 .. _1.20.0: http://github.com/michael-lazar/rtv/releases/tag/v1.20.0 .. _1.19.0: http://github.com/michael-lazar/rtv/releases/tag/v1.19.0 @@ -33,6 +34,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.22.0_ (2018-03-07) +-------------------- + +Features + +* Added the ``--no-flash`` option to disable terminal flashing. + +Bugfixes + +* Fixed automatically exiting on launch when trying to open an invalid + subreddit with the ``-s`` flag. +* Fixed error handling for HTTP request timeouts when checking for new + messages in the inbox. +* Fixed a typo in the sample theme config. + +Documentation + +* Added the FreeBSD package to the README. + -------------------- 1.21.0_ (2017-12-30) -------------------- diff --git a/rtv.1 b/rtv.1 index 09e878c..ef7f441 100644 --- a/rtv.1 +++ b/rtv.1 @@ -1,4 +1,4 @@ -.TH "RTV" "1" "December 31, 2017" "Version 1.21.0" "Usage and Commands" +.TH "RTV" "1" "March 08, 2018" "Version 1.22.0" "Usage and Commands" .SH NAME RTV - Reddit Terminal Viewer .SH SYNOPSIS @@ -66,6 +66,10 @@ Open external links using programs defined in the mailcap config \fB\-V\fR, \fB\-\-version\fR show program's version number and exit +.TP +\fB\-\-no\-flash\fR +Disable screen flashing + .SH CONTROLS Move the cursor using the arrow keys or vim style movement. diff --git a/rtv/__version__.py b/rtv/__version__.py index 30d2533..a77155e 100644 --- a/rtv/__version__.py +++ b/rtv/__version__.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals -__version__ = '1.21.0' +__version__ = '1.22.0' diff --git a/rtv/packages/__init__.py b/rtv/packages/__init__.py index 91663bf..be4e7a9 100644 --- a/rtv/packages/__init__.py +++ b/rtv/packages/__init__.py @@ -10,7 +10,7 @@ from __future__ import absolute_import import sys -__praw_hash__ = 'f0373b788356e212be184590741383cc4747a682' +__praw_hash__ = '690f839f2e10b87cc8ad5cbcbade968d5d0d7434' __praw_bundled__ = True