diff --git a/AUTHORS.rst b/AUTHORS.rst index 791ef57..ccd78e1 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -12,24 +12,25 @@ Thanks to the following people for their contributions to this project. * `Johnathan Jenkins `_ * `tyjak `_ * `Gustavo Zambonin `_ -* `mekhami `_ +* `Alexandre Kaskasoli `_ * `obosob `_ +* `mekhami `_ * `Toby Hughes `_ * `Noah Morrison `_ * `mardiqwop `_ -* `5225225 `_ * `Shawn Hind `_ -* `Alex Kahan `_ -* `JuanPablo `_ +* `5225225 `_ * `Robert Greener `_ +* `JuanPablo `_ +* `Alex Kahan `_ +* `Lorenz Leitner `_ +* `Reshef Elisha `_ * `nagracks `_ * `afloofloo `_ * `Marc Abramowitz `_ -* `Hans Roman `_ * `Fabio Alessandro Locati `_ +* `Hans Roman `_ +* `Charles Saracco `_ * `Matthew Smith `_ * `Ram-Z `_ -* `Wieland Hoffmann `_ -* `Adam Talsma `_ -* `Alexander Terry `_ -* `peterpans01 `_ \ No newline at end of file +* `Wieland Hoffmann `_ \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3c1e89b..5a926aa 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,7 @@ RTV Changelog ============= +.. _1.13.0: http://github.com/michael-lazar/rtv/releases/tag/v1.13.0 .. _1.12.1: http://github.com/michael-lazar/rtv/releases/tag/v1.12.1 .. _1.12.0: http://github.com/michael-lazar/rtv/releases/tag/v1.12.0 .. _1.11.0: http://github.com/michael-lazar/rtv/releases/tag/v1.11.0 @@ -22,6 +23,22 @@ 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.13.0_ (2016-10-17) +-------------------- +Features + +* Pressing `2` or `5` twice now opens a menu to select the time frame. +* Added the `hide_username` config option. +* Added the `max_comment_cols` config option. + +Bugfixes + +* Fixed the terminal title from displaying b'' in py3. +* Flipped j and k in the documentation. +* Fixed bug when selecting post order for the front page. +* Added more descriptive error messages for invalid subreddits. + -------------------- 1.12.1_ (2016-09-27) -------------------- diff --git a/rtv.1 b/rtv.1 index 64e2ad8..90f2967 100644 --- a/rtv.1 +++ b/rtv.1 @@ -1,4 +1,4 @@ -.TH "RTV" "1" "September 27, 2016" "Version 1.12.1" "Usage and Commands" +.TH "RTV" "1" "October 18, 2016" "Version 1.13.0" "Usage and Commands" .SH NAME RTV - Reddit Terminal Viewer .SH SYNOPSIS diff --git a/rtv/__version__.py b/rtv/__version__.py index 823ee1f..bd28410 100644 --- a/rtv/__version__.py +++ b/rtv/__version__.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals -__version__ = '1.12.1' +__version__ = '1.13.0' diff --git a/rtv/templates/rtv.cfg b/rtv/templates/rtv.cfg index 2b3a64c..7395d1c 100644 --- a/rtv/templates/rtv.cfg +++ b/rtv/templates/rtv.cfg @@ -40,6 +40,9 @@ enable_media = False ; Maximum number of columns for a comment max_comment_cols = 120 +; Hide username if logged in, display "Logged in" instead +hide_username = False + ################ # OAuth Settings ################ @@ -60,9 +63,6 @@ oauth_redirect_port = 65000 ; Access permissions that will be requested. oauth_scope = edit,history,identity,mysubreddits,privatemessages,read,report,save,submit,subscribe,vote -; Hide username if logged in, display "Logged in" instead -hide_username = False - [bindings] ############## # Key Bindings diff --git a/tests/test_config.py b/tests/test_config.py index 199281f..51c40b6 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -124,7 +124,9 @@ def test_config_from_file(): 'log': 'logfile.log', 'link': 'https://reddit.com/permalink •', 'subreddit': 'cfb', - 'enable_media': True} + 'enable_media': True, + 'max_comment_cols': 150, + 'hide_username': True} bindings = { 'REFRESH': 'r, ',