diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1bdcc1e..82176a2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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. diff --git a/README.rst b/README.rst index b652560..caec5a0 100644 --- a/README.rst +++ b/README.rst @@ -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 diff --git a/rtv/__version__.py b/rtv/__version__.py index 923b987..6f4fa58 100644 --- a/rtv/__version__.py +++ b/rtv/__version__.py @@ -1 +1 @@ -__version__ = '1.2.2' +__version__ = '1.3' diff --git a/rtv/docs.py b/rtv/docs.py index e56c778..166d1fb 100644 --- a/rtv/docs.py +++ b/rtv/docs.py @@ -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} -""" \ No newline at end of file +"""