Skip to content

Commit

Permalink
Upping version.
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-lazar committed Oct 18, 2016
1 parent 3da6a2a commit cd7ac34
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 15 deletions.
19 changes: 10 additions & 9 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,25 @@ Thanks to the following people for their contributions to this project.
* `Johnathan Jenkins <https://github.com/shaggytwodope>`_
* `tyjak <https://github.com/tyjak>`_
* `Gustavo Zambonin <https://github.com/zambonin>`_
* `mekhami <https://github.com/mekhami>`_
* `Alexandre Kaskasoli <https://github.com/alx-k>`_
* `obosob <https://github.com/obosob>`_
* `mekhami <https://github.com/mekhami>`_
* `Toby Hughes <https://github.com/tobywhughes>`_
* `Noah Morrison <https://github.com/noahmorrison>`_
* `mardiqwop <https://github.com/mardiqwop>`_
* `5225225 <https://github.com/5225225>`_
* `Shawn Hind <https://github.com/shawnhind>`_
* `Alex Kahan <https://github.com/alexk307>`_
* `JuanPablo <https://github.com/juanpabloaj>`_
* `5225225 <https://github.com/5225225>`_
* `Robert Greener <https://github.com/ragreener1>`_
* `JuanPablo <https://github.com/juanpabloaj>`_
* `Alex Kahan <https://github.com/alexk307>`_
* `Lorenz Leitner <https://github.com/LoLei>`_
* `Reshef Elisha <https://github.com/ReshefElisha>`_
* `nagracks <https://github.com/nagracks>`_
* `afloofloo <https://github.com/afloofloo>`_
* `Marc Abramowitz <https://github.com/msabramo>`_
* `Hans Roman <https://github.com/snahor>`_
* `Fabio Alessandro Locati <https://github.com/Fale>`_
* `Hans Roman <https://github.com/snahor>`_
* `Charles Saracco <https://github.com/crsaracco>`_
* `Matthew Smith <https://github.com/msmith491>`_
* `Ram-Z <https://github.com/Ram-Z>`_
* `Wieland Hoffmann <https://github.com/mineo>`_
* `Adam Talsma <https://github.com/a-tal>`_
* `Alexander Terry <https://github.com/mralext20>`_
* `peterpans01 <https://github.com/peterpans01>`_
* `Wieland Hoffmann <https://github.com/mineo>`_
17 changes: 17 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)
--------------------
Expand Down
2 changes: 1 addition & 1 deletion rtv.1
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion rtv/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

__version__ = '1.12.1'
__version__ = '1.13.0'
6 changes: 3 additions & 3 deletions rtv/templates/rtv.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
################
Expand All @@ -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
Expand Down
4 changes: 3 additions & 1 deletion tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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, <KEY_F5>',
Expand Down

0 comments on commit cd7ac34

Please sign in to comment.