Upping version.

This commit is contained in:
Michael Lazar
2016-10-17 19:27:09 -07:00
parent 3da6a2a417
commit cd7ac3456a
6 changed files with 35 additions and 15 deletions

View File

@@ -12,24 +12,25 @@ Thanks to the following people for their contributions to this project.
* `Johnathan Jenkins <https://github.com/shaggytwodope>`_ * `Johnathan Jenkins <https://github.com/shaggytwodope>`_
* `tyjak <https://github.com/tyjak>`_ * `tyjak <https://github.com/tyjak>`_
* `Gustavo Zambonin <https://github.com/zambonin>`_ * `Gustavo Zambonin <https://github.com/zambonin>`_
* `mekhami <https://github.com/mekhami>`_ * `Alexandre Kaskasoli <https://github.com/alx-k>`_
* `obosob <https://github.com/obosob>`_ * `obosob <https://github.com/obosob>`_
* `mekhami <https://github.com/mekhami>`_
* `Toby Hughes <https://github.com/tobywhughes>`_ * `Toby Hughes <https://github.com/tobywhughes>`_
* `Noah Morrison <https://github.com/noahmorrison>`_ * `Noah Morrison <https://github.com/noahmorrison>`_
* `mardiqwop <https://github.com/mardiqwop>`_ * `mardiqwop <https://github.com/mardiqwop>`_
* `5225225 <https://github.com/5225225>`_
* `Shawn Hind <https://github.com/shawnhind>`_ * `Shawn Hind <https://github.com/shawnhind>`_
* `Alex Kahan <https://github.com/alexk307>`_ * `5225225 <https://github.com/5225225>`_
* `JuanPablo <https://github.com/juanpabloaj>`_
* `Robert Greener <https://github.com/ragreener1>`_ * `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>`_ * `nagracks <https://github.com/nagracks>`_
* `afloofloo <https://github.com/afloofloo>`_ * `afloofloo <https://github.com/afloofloo>`_
* `Marc Abramowitz <https://github.com/msabramo>`_ * `Marc Abramowitz <https://github.com/msabramo>`_
* `Hans Roman <https://github.com/snahor>`_
* `Fabio Alessandro Locati <https://github.com/Fale>`_ * `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>`_ * `Matthew Smith <https://github.com/msmith491>`_
* `Ram-Z <https://github.com/Ram-Z>`_ * `Ram-Z <https://github.com/Ram-Z>`_
* `Wieland Hoffmann <https://github.com/mineo>`_ * `Wieland Hoffmann <https://github.com/mineo>`_
* `Adam Talsma <https://github.com/a-tal>`_
* `Alexander Terry <https://github.com/mralext20>`_
* `peterpans01 <https://github.com/peterpans01>`_

View File

@@ -2,6 +2,7 @@
RTV Changelog 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.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.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 .. _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.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.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) 1.12.1_ (2016-09-27)
-------------------- --------------------

2
rtv.1
View File

@@ -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 .SH NAME
RTV - Reddit Terminal Viewer RTV - Reddit Terminal Viewer
.SH SYNOPSIS .SH SYNOPSIS

View File

@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from __future__ import unicode_literals from __future__ import unicode_literals
__version__ = '1.12.1' __version__ = '1.13.0'

View File

@@ -40,6 +40,9 @@ enable_media = False
; Maximum number of columns for a comment ; Maximum number of columns for a comment
max_comment_cols = 120 max_comment_cols = 120
; Hide username if logged in, display "Logged in" instead
hide_username = False
################ ################
# OAuth Settings # OAuth Settings
################ ################
@@ -60,9 +63,6 @@ oauth_redirect_port = 65000
; Access permissions that will be requested. ; Access permissions that will be requested.
oauth_scope = edit,history,identity,mysubreddits,privatemessages,read,report,save,submit,subscribe,vote 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] [bindings]
############## ##############
# Key Bindings # Key Bindings

View File

@@ -124,7 +124,9 @@ def test_config_from_file():
'log': 'logfile.log', 'log': 'logfile.log',
'link': 'https://reddit.com/permalink •', 'link': 'https://reddit.com/permalink •',
'subreddit': 'cfb', 'subreddit': 'cfb',
'enable_media': True} 'enable_media': True,
'max_comment_cols': 150,
'hide_username': True}
bindings = { bindings = {
'REFRESH': 'r, <KEY_F5>', 'REFRESH': 'r, <KEY_F5>',