Skip to content
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.

Commit

Permalink
Upping version.
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-lazar committed Aug 3, 2016
1 parent 03db2d8 commit 4413c2b
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 5 deletions.
2 changes: 2 additions & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Thanks to the following people for their contributions to this project.
* `Théo Piboubès <https://github.com/TheoPib>`_
* `Yusuke Sakamoto <https://github.com/yskmt>`_
* `Johnathan Jenkins <https://github.com/shaggytwodope>`_
* `tyjak <https://github.com/tyjak>`_
* `Gustavo Zambonin <https://github.com/zambonin>`_
* `mekhami <https://github.com/mekhami>`_
* `obosob <https://github.com/obosob>`_
Expand All @@ -18,6 +19,7 @@ Thanks to the following people for their contributions to this project.
* `mardiqwop <https://github.com/mardiqwop>`_
* `Shawn Hind <https://github.com/shawnhind>`_
* `5225225 <https://github.com/5225225>`_
* `Alex Kahan <https://github.com/alexk307>`_
* `JuanPablo <https://github.com/juanpabloaj>`_
* `Robert Greener <https://github.com/ragreener1>`_
* `afloofloo <https://github.com/afloofloo>`_
Expand Down
30 changes: 30 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
RTV Changelog
=============

.. _1.11.0: http://github.com/michael-lazar/rtv/releases/tag/v1.11.0
.. _1.10.0: http://github.com/michael-lazar/rtv/releases/tag/v1.10.0
.. _1.9.1: http://github.com/michael-lazar/rtv/releases/tag/v1.9.1
.. _1.9.0: http://github.com/michael-lazar/rtv/releases/tag/v1.9.0
Expand All @@ -19,6 +20,35 @@ 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.11.0_ (2016-08-02)
--------------------
Features

* Added the ability to open image and video urls with the user's mailcap file.
* New ``--enable-media`` and ``copy-mailcap`` commands to support mailcap.
* New command `w` to save submissions and comments.
* New command `p` to toggle between the front page and the last visited subreddit.
* New command `S` to view subscribed multireddits.
* Extended ``/`` prompt to work with users, multireddits, and domains.
* New page ``/u/saved`` to view saved submissions.
* You can now specify the sort period by appending **-(period)**,
E.g. **/r/python/top-week**.

Bugfixes

* Terminal title is now only set when $DISPLAY is present.
* Urlview now works on the submission as well as comments.
* Fixed text encoding when using urlview.
* Removed `futures` dependency from the python 3 wheel.
* Unhandled resource warnings on exit are now ignored.

Documentation

* Various README updates.
* Updated asciinema demo video.
* Added script to update the AUTHORS.rst file.

--------------------
1.10.0_ (2016-07-11)
--------------------
Expand Down
12 changes: 10 additions & 2 deletions rtv.1
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.TH "RTV" "1" "July 12, 2016" "Version 1.10.0" "Usage and Commands"
.TH "RTV" "1" "August 03, 2016" "Version 1.11.0" "Usage and Commands"
.SH NAME
RTV - Reddit Terminal Viewer
.SH SYNOPSIS
rtv [\-h] [\-V] [\-s SUBREDDIT] [\-l LINK] [\-\-log FILE] [\-\-config FILE] [\-\-ascii] [\-\-monochrome] [\-\-non\-persistent] [\-\-clear\-auth] [\-\-copy\-config]
rtv [\-h] [\-V] [\-s SUBREDDIT] [\-l LINK] [\-\-log FILE] [\-\-config FILE] [\-\-ascii] [\-\-monochrome] [\-\-non\-persistent] [\-\-clear\-auth] [\-\-copy\-config] [\-\-copy\-mailcap] [\-\-enable\-media]
.SH DESCRIPTION
Reddit Terminal Viewer is a lightweight browser for www.reddit.com built into a
terminal window.
Expand Down Expand Up @@ -51,6 +51,14 @@ Remove any saved user data before launching
\fB\-\-copy\-config\fR
Copy the default configuration to {HOME}/.config/rtv/rtv.cfg

.TP
\fB\-\-copy\-mailcap\fR
Copy an example mailcap configuration to {HOME}/.mailcap

.TP
\fB\-\-enable\-media\fR
Open external links using programs defined in the mailcap config


.SH CONTROLS
Move the cursor using either the arrow keys or Vim-style movement.
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.10.0'
__version__ = '1.11.0'
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,7 @@ requires-dist =
six
requests
kitchen
beautifulsoup4
mailcap-fix
futures; python_version=="2.6" or python_version=="2.7"

3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ deps =
pytest
pylint
mock
# Waiting for vcrpy to release https://github.com/kevin1024/vcrpy/pull/196
git+https://github.com/kevin1024/vcrpy.git
vcrpy
commands =
pylint --rcfile .pylintrc rtv/ -E
py.test -v {posargs}

0 comments on commit 4413c2b

Please sign in to comment.