Upping version.

This commit is contained in:
Michael Lazar
2015-04-22 19:45:35 -07:00
parent 9b0ff5a8c8
commit ff0e9bc677
4 changed files with 30 additions and 6 deletions

View File

@@ -2,13 +2,28 @@
RTV Changelog 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.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.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: 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 Bugfixes
* Fixed default subreddit not being set. * Fixed default subreddit not being set.

View File

@@ -113,6 +113,9 @@ In subreddit mode you can browse through the top submissions on either the front
:``/``: Open a prompt to switch subreddits :``/``: Open a prompt to switch subreddits
:``f``: Open a prompt to search the current subreddit :``f``: Open a prompt to search the current subreddit
:``p``: Post a new submission to 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 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 ``h``: Return to subreddit mode
:``►`` or ``l``: Fold the selected comment, or load additional comments :``►`` or ``l``: Fold the selected comment, or load additional comments
:``c``: Post a new comment on the selected item :``c``: Post a new comment on the selected item
:``e``: Edit the selected comment
:``d``: Delete the selected comment
========= =========
Changelog Changelog

View File

@@ -1 +1 @@
__version__ = '1.2.2' __version__ = '1.3'

View File

@@ -42,11 +42,16 @@ Subreddit Mode
`/` : Open a prompt to switch subreddits `/` : Open a prompt to switch subreddits
`f` : Open a prompt to search the current subreddit `f` : Open a prompt to search the current subreddit
`p` : Post a new submission to the current subreddit `p` : Post a new submission to the current subreddit
`e` : Edit the selected submission
`d` : Delete the selected submission
Submission Mode Submission Mode
`LEFT` or `h` : Return to subreddit mode `LEFT` or `h` : Return to subreddit mode
`RIGHT` or `l` : Fold the selected comment, or load additional comments `RIGHT` or `l` : Fold the selected comment, or load additional comments
`c` : Post a new comment on the selected item `c` : Post a new comment on the selected item
`e` : Edit the selected comment
`d` : Delete the selected comment
""" """
COMMENT_FILE = """ COMMENT_FILE = """
@@ -72,4 +77,4 @@ SUBMISSION_FILE = """{content}
# The following lines will be interpreted as the content # The following lines will be interpreted as the content
# #
# Posting to {name} # Posting to {name}
""" """