From b6bffd660b189ed8521e3c6d82174eff2ccaad53 Mon Sep 17 00:00:00 2001 From: Michael Lazar Date: Thu, 27 Aug 2015 00:08:16 -0700 Subject: [PATCH 1/5] Upping version. --- CHANGELOG.rst | 14 ++++++++++++++ README.rst | 6 ++++-- rtv/__version__.py | 2 +- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7164f19..71e46f7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,7 @@ RTV Changelog ============= +.. _1.5: http://github.com/michael-lazar/rtv/releases/tag/v1.5 .. _1.4.2: http://github.com/michael-lazar/rtv/releases/tag/v1.4.2 .. _1.4.1: http://github.com/michael-lazar/rtv/releases/tag/v1.4.1 .. _1.4: http://github.com/michael-lazar/rtv/releases/tag/v1.4 @@ -10,6 +11,19 @@ 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.5_ (2015-08-26) +----------------- +Features + +* New page to view and open subscribed subreddits with `s`. +* Sorting method can now be toggled with the `1` - `5` keys. +* Links to x-posts are now opened inside of RTV. + +Bugfixes + +* Added */r/* to subreddit names in the subreddit view. + ------------------- 1.4.2_ (2015-08-01) ------------------- diff --git a/README.rst b/README.rst index 59c68bc..036af33 100644 --- a/README.rst +++ b/README.rst @@ -63,7 +63,7 @@ Basic Commands :``j``/``k`` or ``▲``/``▼``: Move the cursor up/down :``m``/``n`` or ``PgUp``/``PgDn``: Jump to the previous/next page -:``o`` or ``ENTER``: Open the selected item as a webpage +:``1-5``: Toggle post order (*hot*, *top*, *rising*, *new*, *controversial*) :``r`` or ``F5``: Refresh page content :``u``: Log in or switch accounts :``?``: Show the help screen @@ -84,7 +84,7 @@ Once you are logged in your username will appear in the top-right corner of the :``c``: Compose a new post or comment :``e``: Edit an existing post or comment :``d``: Delete an existing post or comment -:``s``: Open/close subscribed subreddits list +:``s``: View a list of subscribed subreddits -------------- Subreddit Mode @@ -93,6 +93,7 @@ Subreddit Mode In subreddit mode you can browse through the top submissions on either the front page or a specific subreddit. :``l`` or ``►``: Enter the selected submission +:``o`` or ``ENTER``: Open the submission link with your web browser :``/``: Open a prompt to switch subreddits :``f``: Open a prompt to search the current subreddit @@ -111,6 +112,7 @@ Submission Mode In submission mode you can view the self text for a submission and browse comments. :``h`` or ``◄``: Return to the subreddit +:``o`` or ``ENTER``: Open the comment permalink with your web browser :``SPACE``: Fold the selected comment, or load additional comments ============= diff --git a/rtv/__version__.py b/rtv/__version__.py index 98d186b..fcb6b5d 100644 --- a/rtv/__version__.py +++ b/rtv/__version__.py @@ -1 +1 @@ -__version__ = '1.4.2' +__version__ = '1.5' From 210eba35fc4473e626fc58a8e4ea3cdbb6abdc28 Mon Sep 17 00:00:00 2001 From: Johnathan Jenkins Date: Thu, 27 Aug 2015 13:07:14 -0700 Subject: [PATCH 2/5] add undocumented function to display new messages. --- rtv/docs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rtv/docs.py b/rtv/docs.py index 8775728..0a912c8 100644 --- a/rtv/docs.py +++ b/rtv/docs.py @@ -34,6 +34,7 @@ Basic Commands `o` or `ENTER` : Open the selected item as a webpage `r` or `F5` : Refresh page content `u` : Log in or switch accounts + `i` : Display new messages prompt `?` : Show the help screen `q` : Quit From b82d4c02263530a5a349cfed6e06a3a32ec28d00 Mon Sep 17 00:00:00 2001 From: Johnathan Jenkins Date: Thu, 27 Aug 2015 13:08:42 -0700 Subject: [PATCH 3/5] add undocumented function to display new messages. --- README.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/README.rst b/README.rst index 036af33..1a6e066 100644 --- a/README.rst +++ b/README.rst @@ -66,6 +66,7 @@ Basic Commands :``1-5``: Toggle post order (*hot*, *top*, *rising*, *new*, *controversial*) :``r`` or ``F5``: Refresh page content :``u``: Log in or switch accounts +:``i``: Display new messages prompt :``?``: Show the help screen :``q``: Quit From 817e6e432e683bfcf976290a1ccda6a8f624579a Mon Sep 17 00:00:00 2001 From: Johnathan Jenkins Date: Fri, 28 Aug 2015 10:04:39 -0700 Subject: [PATCH 4/5] add undocumented function to display new messages. --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 1a6e066..a4cdbfb 100644 --- a/README.rst +++ b/README.rst @@ -66,7 +66,6 @@ Basic Commands :``1-5``: Toggle post order (*hot*, *top*, *rising*, *new*, *controversial*) :``r`` or ``F5``: Refresh page content :``u``: Log in or switch accounts -:``i``: Display new messages prompt :``?``: Show the help screen :``q``: Quit @@ -85,6 +84,7 @@ Once you are logged in your username will appear in the top-right corner of the :``c``: Compose a new post or comment :``e``: Edit an existing post or comment :``d``: Delete an existing post or comment +:``i``: Display new messages prompt :``s``: View a list of subscribed subreddits -------------- From ccadcfe891871032ea5e4c1974db67ed1b69a0e8 Mon Sep 17 00:00:00 2001 From: Johnathan Jenkins Date: Fri, 28 Aug 2015 10:05:09 -0700 Subject: [PATCH 5/5] add undocumented function to display new messages. --- rtv/docs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtv/docs.py b/rtv/docs.py index 0a912c8..e6d8722 100644 --- a/rtv/docs.py +++ b/rtv/docs.py @@ -34,7 +34,6 @@ Basic Commands `o` or `ENTER` : Open the selected item as a webpage `r` or `F5` : Refresh page content `u` : Log in or switch accounts - `i` : Display new messages prompt `?` : Show the help screen `q` : Quit @@ -43,6 +42,7 @@ Authenticated Commands `c` : Compose a new post or comment `e` : Edit an existing post or comment `d` : Delete an existing post or comment + `i` : Display new messages prompt `s` : Open/close subscribed subreddits list Subreddit Mode