Upping version.
This commit is contained in:
19
AUTHORS.rst
19
AUTHORS.rst
@@ -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>`_
|
||||
@@ -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)
|
||||
--------------------
|
||||
|
||||
2
rtv.1
2
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
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
__version__ = '1.12.1'
|
||||
__version__ = '1.13.0'
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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>',
|
||||
|
||||
Reference in New Issue
Block a user