Upping version.
This commit is contained in:
@@ -2,13 +2,28 @@
|
||||
RTV Changelog
|
||||
=============
|
||||
|
||||
.. _1.3: http://github.com/michael-lazar/rtv/releases/tag/v1.3
|
||||
.. _1.2.2: http://github.com/michael-lazar/rtv/releases/tag/v1.2.2
|
||||
.. _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.2_ (2015-04-07
|
||||
------------------
|
||||
-----------------
|
||||
1.3_ (2015-04-22)
|
||||
-----------------
|
||||
Features
|
||||
|
||||
* Added edit `e` and delete `d` for comments and submissions.
|
||||
* Added *nsfw* tags.
|
||||
|
||||
Bugfixes
|
||||
|
||||
* Upvote/downvote icon now displays in the submission selfpost.
|
||||
* Loading large *MoreComment* blocks no longer hangs the program.
|
||||
* Improved logging and error handling with praw interactions.
|
||||
|
||||
-------------------
|
||||
1.2.2_ (2015-04-07)
|
||||
-------------------
|
||||
Bugfixes
|
||||
|
||||
* Fixed default subreddit not being set.
|
||||
|
||||
@@ -113,6 +113,9 @@ In subreddit mode you can browse through the top submissions on either the front
|
||||
:``/``: Open a prompt to switch subreddits
|
||||
:``f``: Open a prompt to search the current subreddit
|
||||
:``p``: Post a new submission to the current subreddit
|
||||
:``e``: Edit the selected submission
|
||||
:``d``: Delete the selected submission
|
||||
|
||||
|
||||
The ``/`` prompt accepts subreddits in the following formats
|
||||
|
||||
@@ -131,7 +134,8 @@ In submission mode you can view the self text for a submission and browse commen
|
||||
:``◄`` or ``h``: Return to subreddit mode
|
||||
:``►`` or ``l``: Fold the selected comment, or load additional comments
|
||||
:``c``: Post a new comment on the selected item
|
||||
|
||||
:``e``: Edit the selected comment
|
||||
:``d``: Delete the selected comment
|
||||
|
||||
=========
|
||||
Changelog
|
||||
|
||||
@@ -1 +1 @@
|
||||
__version__ = '1.2.2'
|
||||
__version__ = '1.3'
|
||||
|
||||
@@ -42,11 +42,16 @@ Subreddit Mode
|
||||
`/` : Open a prompt to switch subreddits
|
||||
`f` : Open a prompt to search the current subreddit
|
||||
`p` : Post a new submission to the current subreddit
|
||||
`e` : Edit the selected submission
|
||||
`d` : Delete the selected submission
|
||||
|
||||
Submission Mode
|
||||
`LEFT` or `h` : Return to subreddit mode
|
||||
`RIGHT` or `l` : Fold the selected comment, or load additional comments
|
||||
`c` : Post a new comment on the selected item
|
||||
`e` : Edit the selected comment
|
||||
`d` : Delete the selected comment
|
||||
|
||||
"""
|
||||
|
||||
COMMENT_FILE = """
|
||||
@@ -72,4 +77,4 @@ SUBMISSION_FILE = """{content}
|
||||
# The following lines will be interpreted as the content
|
||||
#
|
||||
# Posting to {name}
|
||||
"""
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user