Upping version
This commit is contained in:
@@ -12,13 +12,14 @@ Thanks to the following people for their contributions to this project.
|
||||
* `Johnathan Jenkins <https://github.com/shaggytwodope>`_
|
||||
* `tyjak <https://github.com/tyjak>`_
|
||||
* `Alexandre Kaskasoli <https://github.com/alx-k>`_
|
||||
* `Josue Ortega <https://github.com/noahfx>`_
|
||||
* `mekhami <https://github.com/mekhami>`_
|
||||
* `obosob <https://github.com/obosob>`_
|
||||
* `Josue Ortega <https://github.com/noahfx>`_
|
||||
* `Toby Hughes <https://github.com/tobywhughes>`_
|
||||
* `Noah Morrison <https://github.com/noahmorrison>`_
|
||||
* `mardiqwop <https://github.com/mardiqwop>`_
|
||||
* `Shawn Hind <https://github.com/shawnhind>`_
|
||||
* `Antoine Nguyen <https://github.com/anhtuann>`_
|
||||
* `JuanPablo <https://github.com/juanpabloaj>`_
|
||||
* `Robert Greener <https://github.com/ragreener1>`_
|
||||
* `nagracks <https://github.com/nagracks>`_
|
||||
@@ -29,8 +30,7 @@ Thanks to the following people for their contributions to this project.
|
||||
* `afloofloo <https://github.com/afloofloo>`_
|
||||
* `Charles Saracco <https://github.com/crsaracco>`_
|
||||
* `cmccandless <https://github.com/cmccandless>`_
|
||||
* `Danilo G. Baio <https://github.com/dbaio>`_
|
||||
* `Fabio Alessandro Locati <https://github.com/Fale>`_
|
||||
* `Hans Roman <https://github.com/snahor>`_
|
||||
* `Marc Abramowitz <https://github.com/msabramo>`_
|
||||
* `Matthew Smith <https://github.com/msmith491>`_
|
||||
* `mskwon <https://github.com/mskwon>`_
|
||||
* `Marc Abramowitz <https://github.com/msabramo>`_
|
||||
@@ -2,6 +2,7 @@
|
||||
RTV Changelog
|
||||
=============
|
||||
|
||||
.. _1.19.0: http://github.com/michael-lazar/rtv/releases/tag/v1.19.0
|
||||
.. _1.18.0: http://github.com/michael-lazar/rtv/releases/tag/v1.18.0
|
||||
.. _1.17.1: http://github.com/michael-lazar/rtv/releases/tag/v1.17.1
|
||||
.. _1.17.0: http://github.com/michael-lazar/rtv/releases/tag/v1.17.0
|
||||
@@ -30,6 +31,34 @@ 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.19.0_ (2017-10-24)
|
||||
--------------------
|
||||
|
||||
Features
|
||||
|
||||
* Greatly improved loading times by using smarter rate limiting and page caching.
|
||||
* The logout prompt is now visible as a popup notification.
|
||||
* New MIME parsers have been added for gifs.com, giphy.com, imgtc.com,
|
||||
imgflip.com, livememe.com, makeameme.org and flickr.com
|
||||
* Improved mailcap examples for parsing video links with mpv.
|
||||
|
||||
Bugfixes
|
||||
|
||||
* Patched a backwards-incompatible Reddit API change with the comment
|
||||
permalink now being returned in the response JSON.
|
||||
* Fixed crashing when a comment contained exotic unicode characters like emojis.
|
||||
* Removed the option to select custom sorting ranges for controversial and
|
||||
top comments.
|
||||
* Fixed MIME parsing for single image Imgur galleries.
|
||||
|
||||
Codebase
|
||||
|
||||
* Preliminary refactoring for the upcoming theme support.
|
||||
* Created some utility scripts for project maintenance.
|
||||
* Created a release checklist document.
|
||||
* Updated the README gif images and document layout.
|
||||
|
||||
--------------------
|
||||
1.18.0_ (2017-09-06)
|
||||
--------------------
|
||||
@@ -440,7 +469,8 @@ Bugfixes
|
||||
-----------------
|
||||
Features
|
||||
|
||||
* Unicode support has been vastly improved and is now turned on by default. Ascii only mode can be toggled with the `--ascii` command line flag.
|
||||
* Unicode support has been vastly improved and is now turned on by default.
|
||||
Ascii only mode can be toggled with the `--ascii` command line flag.
|
||||
* Added pageup and pagedown with the `m` and `n` keys.
|
||||
* Support for terminal based webbrowsers such as links and w3m.
|
||||
* Browsing history is now persistent and stored in `$XDG_CACHE_HOME`.
|
||||
|
||||
4
rtv.1
4
rtv.1
@@ -1,4 +1,4 @@
|
||||
.TH "RTV" "1" "September 06, 2017" "Version 1.18.0" "Usage and Commands"
|
||||
.TH "RTV" "1" "October 24, 2017" "Version 1.19.0" "Usage and Commands"
|
||||
.SH NAME
|
||||
RTV - Reddit Terminal Viewer
|
||||
.SH SYNOPSIS
|
||||
@@ -68,7 +68,7 @@ Press \fB?\fR to open the help screen.
|
||||
.TP
|
||||
.BR $XDG_CONFIG_HOME/rtv/rtv.cfg
|
||||
The configuration file can be used to customize default program settings, see
|
||||
README.rst for more information.
|
||||
README.md for more information.
|
||||
.TP
|
||||
.BR $XDG_CONFIG_HOME/rtv/refresh-token
|
||||
After you login to reddit, your most recent OAuth refresh token will be stored
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
__version__ = '1.18.0'
|
||||
__version__ = '1.19.0'
|
||||
|
||||
Reference in New Issue
Block a user