From d4beb9ef74b34cf88371a07f41a6cbb50857ac60 Mon Sep 17 00:00:00 2001 From: Michael Lazar Date: Sun, 3 Feb 2019 17:47:41 -0500 Subject: [PATCH] Upping version --- AUTHORS.rst | 10 +++++----- CHANGELOG.rst | 31 +++++++++++++++++++++++++++++++ rtv.1 | 6 +++++- rtv/__version__.py | 2 +- 4 files changed, 42 insertions(+), 7 deletions(-) diff --git a/AUTHORS.rst b/AUTHORS.rst index 9b4d950e..a8c1f947 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -7,7 +7,7 @@ Thanks to the following people for their contributions to this project. * `Michael Lazar `_ * `Tobin Brown `_ * `woorst `_ -* `Théo Piboubès `_ +* `Théo Piboubès `_ * `Yusuke Sakamoto `_ * `Johnathan Jenkins `_ * `tyjak `_ @@ -17,20 +17,20 @@ Thanks to the following people for their contributions to this project. * `mekhami `_ * `Nemanja Nedeljković `_ * `obosob `_ +* `codesoap `_ * `Toby Hughes `_ * `Noah Morrison `_ -* `Mardigon Toler `_ +* `Mardigon Toler `_ * `5225225 `_ * `Shawn Hind `_ * `Antoine Nguyen `_ * `JuanPablo `_ * `Robert Greener `_ +* `mac1202 `_ * `nagracks `_ * `Gustavo Zambonin `_ * `Lorenz Leitner `_ * `Reshef Elisha `_ * `Ryan Reno `_ * `Sam Tebbs `_ -* `Justin Partain `_ -* `afloofloo `_ -* `Caleb Perkins `_ \ No newline at end of file +* `Justin Partain `_ \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8d034e94..0ace40e2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,7 @@ RTV Changelog ============= +.. _1.25.0: http://github.com/michael-lazar/rtv/releases/tag/v1.25.0 .. _1.24.0: http://github.com/michael-lazar/rtv/releases/tag/v1.24.0 .. _1.23.0: http://github.com/michael-lazar/rtv/releases/tag/v1.23.0 .. _1.22.1: http://github.com/michael-lazar/rtv/releases/tag/v1.22.1 @@ -37,6 +38,36 @@ 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.25.0_ (2019-02-03) +-------------------- + +Features + +* You can now open HTML links that are embedded inside of comments and + submissions by pressing the ``ENTER`` key and selecting a link from the list. + This also works when copying links to the clipboard using ``Y``. +* Added the ``--no-autologin`` command line argument to disable automatically + logging in at startup. +* Added the ``max_pager_cols`` configuration option to limit the text width + when sending text to the system ``PAGER``. +* Additional filtering options have been added when viewing user pages. +* The gilded flair now displays the number of times a submission has been + gilded. +* Submissions/comments now display the time that they were most recently edited. + +Bugfixes + +* Fixed the MIME parser for gfycat, and gfycat videos are now downloaded as mp4. +* Fixed formatting when composing posts with leading whitespace. +* Fixed crash when attempting to display a long terminal title. + +Documentation + +* RTV has been moved to the Arch Community Repository and installation + instructions for Arch have been updated accordingly. + + -------------------- 1.24.0_ (2018-08-12) -------------------- diff --git a/rtv.1 b/rtv.1 index e40519f5..79dfebe9 100644 --- a/rtv.1 +++ b/rtv.1 @@ -1,4 +1,4 @@ -.TH "RTV" "1" "August 13, 2018" "Version 1.24.0" "Usage and Commands" +.TH "RTV" "1" "February 03, 2019" "Version 1.25.0" "Usage and Commands" .SH NAME RTV - Reddit Terminal Viewer .SH SYNOPSIS @@ -46,6 +46,10 @@ List all of the available color themes \fB\-\-non\-persistent\fR Forget the authenticated user when the program exits +.TP +\fB\-\-no\-autologin\fR +Do not authenticate automatically on startup + .TP \fB\-\-clear\-auth\fR Remove any saved user data before launching diff --git a/rtv/__version__.py b/rtv/__version__.py index cdbb94dc..66c76184 100644 --- a/rtv/__version__.py +++ b/rtv/__version__.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals -__version__ = '1.24.0' +__version__ = '1.25.0'