From 075a81331b844bc75db34e038fa13f512fee0b54 Mon Sep 17 00:00:00 2001 From: Tobin Date: Sun, 5 Apr 2015 21:11:20 -0500 Subject: [PATCH 1/9] restructured readme and added changelog --- README.rst | 107 +++++++++++++++++++++++++++++++++-------------------- 1 file changed, 67 insertions(+), 40 deletions(-) diff --git a/README.rst b/README.rst index 8505e40..ad3c76e 100644 --- a/README.rst +++ b/README.rst @@ -6,23 +6,28 @@ :target: https://pypi.python.org/pypi/rtv/ :alt: Supported Python versions + ====================== Reddit Terminal Viewer ====================== Browse Reddit from your terminal +1. `Overview`_ +2. `Installation`_ +3. `Configuration`_ +4. `Usage`_ +5. `Changelog`_ + + +-------- +Overview +-------- + .. image:: http://i.imgur.com/W1hxqCt.png RTV is built in **python** using the **curses** library, and is compatible with *most* terminal emulators on Linux and OS X. -------------- -Update (v1.1) -------------- - -Users can now post comments! - -.. image:: http://i.imgur.com/twls7iM.png ------------ Installation @@ -49,6 +54,44 @@ The installation will place a script in the system path $ rtv $ rtv --help + +------------- +Configuration +------------- + +RTV will read a configuration file located at ``$XDG_CONFIG_HOME/rtv/rtv.cfg`` or ``~/.config/rtv/rtv.cfg`` if ``$XDG_CONFIG_HOME`` is not set. +This can be used to avoid having to re-enter login credentials every time the program is launched. +Each line in the file will replace the corresponding default argument in the launch script. + +Example config: + +.. code-block:: ini + + [rtv] + username=MyUsername + password=MySecretPassword + + # Log file location + log=/tmp/rtv.log + + # Default subreddit + subreddit=CollegeBasketball + + # Default submission link - will be opened every time the program starts + # link=http://www.reddit.com/r/CollegeBasketball/comments/31irjq + + # Enable unicode characters (experimental) + # This is known to be unstable with east asian wide character sets + # unicode=true + +RTV allows users to compose comments and replys using their preferred text editor (**vi**, **nano**, **gedit**, etc). +Set the environment variable ``RTV_EDITOR`` to specify which editor the program should use. + +.. code-block:: bash + + $ export RTV_EDITOR=gedit + + ----- Usage ----- @@ -90,38 +133,22 @@ In submission mode you can view the self text for a submission and browse commen :``►`` or ``l``: Fold the selected comment, or load additional comments :``c``: Post a new comment on the selected item -------------- -Configuration -------------- -RTV will read a configuration file located at ``$XDG_CONFIG_HOME/rtv/rtv.cfg`` or ``~/.config/rtv/rtv.cfg`` if ``$XDG_CONFIG_HOME`` is not set. -This can be used to avoid having to re-enter login credentials every time the program is launched. -Each line in the file will replace the corresponding default argument in the launch script. +========= +Changelog +========= +--- +1.2 +--- +* Post submissions with the `p` command in subreddit mode. +* View your submissions on `/r/me`. +* Gilded comments and posts are denoted with ✪. +* New config file location (`~/.config/rtv/rtv.cfg`). +* Login and logout with the `u` key. +* Search the subreddit with the `f` key +* Links may be opened with `ENTER` or `o`. -Example config: - -.. code-block:: ini - - [rtv] - username=MyUsername - password=MySecretPassword - - # Log file location - log=/tmp/rtv.log - - # Default subreddit - subreddit=CollegeBasketball - - # Default submission link - will be opened every time the program starts - # link=http://www.reddit.com/r/CollegeBasketball/comments/31irjq - - # Enable unicode characters (experimental) - # This is known to be unstable with east asian wide character sets - # unicode=true - -RTV allows users to compose comments and replys using their preferred text editor (**vi**, **nano**, **gedit**, etc). -Set the environment variable ``RTV_EDITOR`` to specify which editor the program should use. - -.. code-block:: bash - - $ export RTV_EDITOR=gedit +--- +1.1 +--- +* Post comments using your text editor. From 5cf09cd4847eaa97a5b76542539be7d81f4bf9cd Mon Sep 17 00:00:00 2001 From: Tobin Date: Sun, 5 Apr 2015 21:16:35 -0500 Subject: [PATCH 2/9] updated to match release notes --- README.rst | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/README.rst b/README.rst index ad3c76e..8af4058 100644 --- a/README.rst +++ b/README.rst @@ -140,13 +140,24 @@ Changelog --- 1.2 --- -* Post submissions with the `p` command in subreddit mode. -* View your submissions on `/r/me`. -* Gilded comments and posts are denoted with ✪. -* New config file location (`~/.config/rtv/rtv.cfg`). -* Login and logout with the `u` key. -* Search the subreddit with the `f` key -* Links may be opened with `ENTER` or `o`. +Features + +* Added user login / logout with the `u` key. @yskmt +* Added subreddit searching with the `f` key. @Brobin +* Added submission posting with the `p` key. @Brobin +* Added viewing of user submissions with `/r/me`. @Brobin +* Program title now displays in the terminal window. @Brobin +* Gold symbols now display on guilded comments and posts. @Brobin +* Moved default config location to XDG_CONFIG_HOME. @Ram-Z + +Bugfixes + +* Improved error handling for submission / comment posts. +* Fixed handling of unicode flairs +* Improved displaying of the help message and selfposts on small terminal windows. +* The author's name now correctly highlights in submissions @Brobin +* Corrected user agent formatting. @a-tal +* Various minor bugfixes --- 1.1 From f60e85ef54a3b9385bd0793837ca00e2e7f6fcdb Mon Sep 17 00:00:00 2001 From: Tobin Date: Sun, 5 Apr 2015 21:26:37 -0500 Subject: [PATCH 3/9] fixed contributors' names --- README.rst | 32 +++++++++++++++++++------------- 1 file changed, 19 insertions(+), 13 deletions(-) diff --git a/README.rst b/README.rst index 8af4058..feb3ee0 100644 --- a/README.rst +++ b/README.rst @@ -137,27 +137,33 @@ In submission mode you can view the self text for a submission and browse commen ========= Changelog ========= +.. _@michael-lazar: http://github.com/michael-lazar +.. _@Brobin: http://github.com/Brobin +.. _@yskmt: http://github.com/yskmt +.. _@Ram-Z: http://github.com/Ram-Z +.. _@a-tal: http://github.com/a-tal + --- 1.2 --- Features -* Added user login / logout with the `u` key. @yskmt -* Added subreddit searching with the `f` key. @Brobin -* Added submission posting with the `p` key. @Brobin -* Added viewing of user submissions with `/r/me`. @Brobin -* Program title now displays in the terminal window. @Brobin -* Gold symbols now display on guilded comments and posts. @Brobin -* Moved default config location to XDG_CONFIG_HOME. @Ram-Z +* Added user login / logout with the `u` key. `@yskmt`_ +* Added subreddit searching with the `f` key. `@Brobin`_ +* Added submission posting with the `p` key. `@Brobin`_ +* Added viewing of user submissions with `/r/me`. `@Brobin`_ +* Program title now displays in the terminal window. `@Brobin`_ +* Gold symbols now display on guilded comments and posts. `@Brobin`_ +* Moved default config location to XDG_CONFIG_HOME. `@Ram-Z`_ Bugfixes -* Improved error handling for submission / comment posts. -* Fixed handling of unicode flairs -* Improved displaying of the help message and selfposts on small terminal windows. -* The author's name now correctly highlights in submissions @Brobin -* Corrected user agent formatting. @a-tal -* Various minor bugfixes +* Improved error handling for submission / comment posts. `@michael-lazar`_ +* Fixed handling of unicode flairs. `@michael-lazar`_ +* Improved displaying of the help message and selfposts on small terminal windows. `@michael-lazar`_ +* The author's name now correctly highlights in submissions `@Brobin`_ +* Corrected user agent formatting. `@a-tal`_ +* Various minor bugfixes. `@michael-lazar`_ --- 1.1 From 446e55b7270f4a5df604c0d30f2b3fb6954db707 Mon Sep 17 00:00:00 2001 From: Tobin Date: Mon, 6 Apr 2015 00:13:06 -0500 Subject: [PATCH 4/9] complete refactor of readme into separate files, yay for documentation! :fireworks: --- CHANGELOG.rst | 36 ++++++++++++++++ CONTRIBUTORS.rst | 23 ++++++++++ README.rst | 110 +++++++++++++++++++++-------------------------- 3 files changed, 109 insertions(+), 60 deletions(-) create mode 100644 CHANGELOG.rst create mode 100644 CONTRIBUTORS.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst new file mode 100644 index 0000000..fcdd758 --- /dev/null +++ b/CHANGELOG.rst @@ -0,0 +1,36 @@ +============= +RTV Changelog +============= + +----- +1.2.1 +----- +Bugfixes +* Fixed crashing on invalid subreddit names + +--- +1.2 +--- +Features + +* Added user login / logout with the `u` key. +* Added subreddit searching with the `f` key. +* Added submission posting with the `p` key. +* Added viewing of user submissions with `/r/me`. +* Program title now displays in the terminal window. +* Gold symbols now display on guilded comments and posts. +* Moved default config location to XDG_CONFIG_HOME. + +Bugfixes + +* Improved error handling for submission / comment posts. +* Fixed handling of unicode flairs. +* Improved displaying of the help message and selfposts on small terminal windows. +* The author's name now correctly highlights in submissions +* Corrected user agent formatting. +* Various minor bugfixes. + +--- +1.1 +--- +* Post comments using your text editor. diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst new file mode 100644 index 0000000..273168e --- /dev/null +++ b/CONTRIBUTORS.rst @@ -0,0 +1,23 @@ + +================ +RTV Contributors +================ + +Thanks to the following people for their contributions to this project. + +* `michael-lazar `_ +* `Tobin Brown `_ +* `Yusuke Sakamoto `_ +* `Noah Morrison `_ +* `Toby Hughes `_ +* `Shawn Hind `_ +* `mekhami `_ +* `JuanPablo `_ +* `Robert Greener `_ +* `Hans Roman `_ +* `peterpans01 `_ +* `Ram-Z `_ +* `Marc Abramowitz `_ +* `Adam Talsma `_ +* `Wieland Hoffmann `_ +* `Thomas Kajder `_ diff --git a/README.rst b/README.rst index feb3ee0..056df67 100644 --- a/README.rst +++ b/README.rst @@ -1,37 +1,31 @@ -.. image:: https://pypip.in/version/rtv/badge.svg?text=version&style=flat - :target: https://pypi.python.org/pypi/rtv/ - :alt: Latest Version -.. image:: https://pypip.in/py_versions/rtv/badge.svg?style=flat - :target: https://pypi.python.org/pypi/rtv/ - :alt: Supported Python versions +=========================== +RTV: Reddit Terminal Viewer +=========================== - -====================== -Reddit Terminal Viewer -====================== - -Browse Reddit from your terminal - -1. `Overview`_ -2. `Installation`_ -3. `Configuration`_ -4. `Usage`_ -5. `Changelog`_ - - --------- -Overview --------- +RTV is an application that allows you to view and interact with reddit from your terminal. It is compatible with *most* terminal emulators on Linux and OSX. .. image:: http://i.imgur.com/W1hxqCt.png -RTV is built in **python** using the **curses** library, and is compatible with *most* terminal emulators on Linux and OS X. +RTV is built in **python** using the **curses** library. +--------------- +|pypi| |python| +--------------- ------------- +* `Installation`_ +* `Configuration`_ +* `Usage`_ + * `Global Commands`_ + * `Subreddit Mode`_ + * `Submission Mode`_ +* `Changelog`_ +* `Contributors`_ +* `License`_ + +============ Installation ------------- +============ Install using pip @@ -55,9 +49,9 @@ The installation will place a script in the system path $ rtv --help -------------- +============= Configuration -------------- +============= RTV will read a configuration file located at ``$XDG_CONFIG_HOME/rtv/rtv.cfg`` or ``~/.config/rtv/rtv.cfg`` if ``$XDG_CONFIG_HOME`` is not set. This can be used to avoid having to re-enter login credentials every time the program is launched. @@ -92,13 +86,15 @@ Set the environment variable ``RTV_EDITOR`` to specify which editor the program $ export RTV_EDITOR=gedit ------ +===== Usage ------ +===== RTV currently supports browsing both subreddits and individual submissions. In each mode the controls are slightly different. -**Global Commands** +--------------- +Global Commands +--------------- :``▲``/``▼`` or ``j``/``k``: Scroll to the prev/next item :``a``/``z``: Upvote/downvote the selected item @@ -108,7 +104,9 @@ RTV currently supports browsing both subreddits and individual submissions. In e :``?``: Show the help screen :``q``: Quit -**Subreddit Mode** +-------------- +Subreddit Mode +-------------- In subreddit mode you can browse through the top submissions on either the front page or a specific subreddit. @@ -125,7 +123,9 @@ The ``/`` prompt accepts subreddits in the following formats * ``/r/front`` will redirect to the front page * ``/r/me`` will display your submissions -**Submission Mode** +--------------- +Submission Mode +--------------- In submission mode you can view the self text for a submission and browse comments. @@ -137,35 +137,25 @@ In submission mode you can view the self text for a submission and browse commen ========= Changelog ========= -.. _@michael-lazar: http://github.com/michael-lazar -.. _@Brobin: http://github.com/Brobin -.. _@yskmt: http://github.com/yskmt -.. _@Ram-Z: http://github.com/Ram-Z -.. _@a-tal: http://github.com/a-tal +Please see `CHANGELOG.rst `_. ---- -1.2 ---- -Features -* Added user login / logout with the `u` key. `@yskmt`_ -* Added subreddit searching with the `f` key. `@Brobin`_ -* Added submission posting with the `p` key. `@Brobin`_ -* Added viewing of user submissions with `/r/me`. `@Brobin`_ -* Program title now displays in the terminal window. `@Brobin`_ -* Gold symbols now display on guilded comments and posts. `@Brobin`_ -* Moved default config location to XDG_CONFIG_HOME. `@Ram-Z`_ +============ +Contributors +============ +Please see `CONTRIBUTORS.rst `_. -Bugfixes -* Improved error handling for submission / comment posts. `@michael-lazar`_ -* Fixed handling of unicode flairs. `@michael-lazar`_ -* Improved displaying of the help message and selfposts on small terminal windows. `@michael-lazar`_ -* The author's name now correctly highlights in submissions `@Brobin`_ -* Corrected user agent formatting. `@a-tal`_ -* Various minor bugfixes. `@michael-lazar`_ +======= +License +======= +Please see `LICENSE `_. ---- -1.1 ---- -* Post comments using your text editor. + +.. |python| image:: https://pypip.in/py_versions/rtv/badge.svg?style=flat + :target: https://pypi.python.org/pypi/rtv/ + :alt: Supported Python versions + +.. |pypi| image:: https://pypip.in/version/rtv/badge.svg?text=version&style=flat + :target: https://pypi.python.org/pypi/rtv/ + :alt: Latest Version From f4907f2195f5d2b7aab5f4ca5497e9fb28babfc3 Mon Sep 17 00:00:00 2001 From: Tobin Date: Mon, 6 Apr 2015 00:16:01 -0500 Subject: [PATCH 5/9] added release tag links --- CHANGELOG.rst | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fcdd758..c03dc8d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,15 +2,18 @@ RTV Changelog ============= ------ -1.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.1_ +------ Bugfixes * Fixed crashing on invalid subreddit names ---- -1.2 ---- +---- +1.2_ +---- Features * Added user login / logout with the `u` key. From 523100e9a824cf6e3f0a23f1fb9779b62658185e Mon Sep 17 00:00:00 2001 From: Tobin Date: Mon, 6 Apr 2015 00:20:20 -0500 Subject: [PATCH 6/9] restructured text was janky, fixed the menu --- README.rst | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.rst b/README.rst index 056df67..7a680fd 100644 --- a/README.rst +++ b/README.rst @@ -16,9 +16,6 @@ RTV is built in **python** using the **curses** library. * `Installation`_ * `Configuration`_ * `Usage`_ - * `Global Commands`_ - * `Subreddit Mode`_ - * `Submission Mode`_ * `Changelog`_ * `Contributors`_ * `License`_ From ca2584e2b3fbaae5a5050a4e6b437ac93c879af5 Mon Sep 17 00:00:00 2001 From: Tobin Date: Mon, 6 Apr 2015 00:23:31 -0500 Subject: [PATCH 7/9] line break by the version badges --- README.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.rst b/README.rst index 7a680fd..4b28d38 100644 --- a/README.rst +++ b/README.rst @@ -10,7 +10,9 @@ RTV is an application that allows you to view and interact with reddit from your RTV is built in **python** using the **curses** library. --------------- + |pypi| |python| + --------------- * `Installation`_ From f463afa1573eb753cd22107c02bdbcb2aee30837 Mon Sep 17 00:00:00 2001 From: Tobin Date: Sun, 5 Apr 2015 21:11:20 -0500 Subject: [PATCH 8/9] restructured readme and added changelog updated to match release notes fixed contributors' names complete refactor of readme into separate files, yay for documentation! :fireworks: added release tag links restructured text was janky, fixed the menu line break by the version badges --- CHANGELOG.rst | 39 ++++++++++++ CONTRIBUTORS.rst | 23 +++++++ README.rst | 155 ++++++++++++++++++++++++++++------------------- 3 files changed, 156 insertions(+), 61 deletions(-) create mode 100644 CHANGELOG.rst create mode 100644 CONTRIBUTORS.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst new file mode 100644 index 0000000..c03dc8d --- /dev/null +++ b/CHANGELOG.rst @@ -0,0 +1,39 @@ +============= +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.2.1_ +------ +Bugfixes +* Fixed crashing on invalid subreddit names + +---- +1.2_ +---- +Features + +* Added user login / logout with the `u` key. +* Added subreddit searching with the `f` key. +* Added submission posting with the `p` key. +* Added viewing of user submissions with `/r/me`. +* Program title now displays in the terminal window. +* Gold symbols now display on guilded comments and posts. +* Moved default config location to XDG_CONFIG_HOME. + +Bugfixes + +* Improved error handling for submission / comment posts. +* Fixed handling of unicode flairs. +* Improved displaying of the help message and selfposts on small terminal windows. +* The author's name now correctly highlights in submissions +* Corrected user agent formatting. +* Various minor bugfixes. + +--- +1.1 +--- +* Post comments using your text editor. diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst new file mode 100644 index 0000000..273168e --- /dev/null +++ b/CONTRIBUTORS.rst @@ -0,0 +1,23 @@ + +================ +RTV Contributors +================ + +Thanks to the following people for their contributions to this project. + +* `michael-lazar `_ +* `Tobin Brown `_ +* `Yusuke Sakamoto `_ +* `Noah Morrison `_ +* `Toby Hughes `_ +* `Shawn Hind `_ +* `mekhami `_ +* `JuanPablo `_ +* `Robert Greener `_ +* `Hans Roman `_ +* `peterpans01 `_ +* `Ram-Z `_ +* `Marc Abramowitz `_ +* `Adam Talsma `_ +* `Wieland Hoffmann `_ +* `Thomas Kajder `_ diff --git a/README.rst b/README.rst index 8505e40..4b28d38 100644 --- a/README.rst +++ b/README.rst @@ -1,32 +1,30 @@ -.. image:: https://pypip.in/version/rtv/badge.svg?text=version&style=flat - :target: https://pypi.python.org/pypi/rtv/ - :alt: Latest Version -.. image:: https://pypip.in/py_versions/rtv/badge.svg?style=flat - :target: https://pypi.python.org/pypi/rtv/ - :alt: Supported Python versions +=========================== +RTV: Reddit Terminal Viewer +=========================== -====================== -Reddit Terminal Viewer -====================== - -Browse Reddit from your terminal +RTV is an application that allows you to view and interact with reddit from your terminal. It is compatible with *most* terminal emulators on Linux and OSX. .. image:: http://i.imgur.com/W1hxqCt.png -RTV is built in **python** using the **curses** library, and is compatible with *most* terminal emulators on Linux and OS X. +RTV is built in **python** using the **curses** library. -------------- -Update (v1.1) -------------- +--------------- -Users can now post comments! +|pypi| |python| -.. image:: http://i.imgur.com/twls7iM.png +--------------- ------------- +* `Installation`_ +* `Configuration`_ +* `Usage`_ +* `Changelog`_ +* `Contributors`_ +* `License`_ + +============ Installation ------------- +============ Install using pip @@ -49,50 +47,10 @@ The installation will place a script in the system path $ rtv $ rtv --help ------ -Usage ------ -RTV currently supports browsing both subreddits and individual submissions. In each mode the controls are slightly different. - -**Global Commands** - -:``▲``/``▼`` or ``j``/``k``: Scroll to the prev/next item -:``a``/``z``: Upvote/downvote the selected item -:``ENTER`` or ``o``: Open the selected item in the default web browser -:``r``: Refresh the current page -:``u``: Login and logout of your user account -:``?``: Show the help screen -:``q``: Quit - -**Subreddit Mode** - -In subreddit mode you can browse through the top submissions on either the front page or a specific subreddit. - -:``►`` or ``l``: View comments for the selected submission -:``/``: Open a prompt to switch subreddits -:``f``: Open a prompt to search the current subreddit -:``p``: Post a new submission to the current subreddit - -The ``/`` prompt accepts subreddits in the following formats - -* ``/r/python`` -* ``/r/python/new`` -* ``/r/python+linux`` supports multireddits -* ``/r/front`` will redirect to the front page -* ``/r/me`` will display your submissions - -**Submission Mode** - -In submission mode you can view the self text for a submission and browse comments. - -:``◄`` 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 - -------------- +============= Configuration -------------- +============= RTV will read a configuration file located at ``$XDG_CONFIG_HOME/rtv/rtv.cfg`` or ``~/.config/rtv/rtv.cfg`` if ``$XDG_CONFIG_HOME`` is not set. This can be used to avoid having to re-enter login credentials every time the program is launched. @@ -125,3 +83,78 @@ Set the environment variable ``RTV_EDITOR`` to specify which editor the program .. code-block:: bash $ export RTV_EDITOR=gedit + + +===== +Usage +===== + +RTV currently supports browsing both subreddits and individual submissions. In each mode the controls are slightly different. + +--------------- +Global Commands +--------------- + +:``▲``/``▼`` or ``j``/``k``: Scroll to the prev/next item +:``a``/``z``: Upvote/downvote the selected item +:``ENTER`` or ``o``: Open the selected item in the default web browser +:``r``: Refresh the current page +:``u``: Login and logout of your user account +:``?``: Show the help screen +:``q``: Quit + +-------------- +Subreddit Mode +-------------- + +In subreddit mode you can browse through the top submissions on either the front page or a specific subreddit. + +:``►`` or ``l``: View comments for the selected submission +:``/``: Open a prompt to switch subreddits +:``f``: Open a prompt to search the current subreddit +:``p``: Post a new submission to the current subreddit + +The ``/`` prompt accepts subreddits in the following formats + +* ``/r/python`` +* ``/r/python/new`` +* ``/r/python+linux`` supports multireddits +* ``/r/front`` will redirect to the front page +* ``/r/me`` will display your submissions + +--------------- +Submission Mode +--------------- + +In submission mode you can view the self text for a submission and browse comments. + +:``◄`` 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 + + +========= +Changelog +========= +Please see `CHANGELOG.rst `_. + + +============ +Contributors +============ +Please see `CONTRIBUTORS.rst `_. + + +======= +License +======= +Please see `LICENSE `_. + + +.. |python| image:: https://pypip.in/py_versions/rtv/badge.svg?style=flat + :target: https://pypi.python.org/pypi/rtv/ + :alt: Supported Python versions + +.. |pypi| image:: https://pypip.in/version/rtv/badge.svg?text=version&style=flat + :target: https://pypi.python.org/pypi/rtv/ + :alt: Latest Version From 161fe186dd4d83248d7a50513030c747be3a67ba Mon Sep 17 00:00:00 2001 From: Tobin Date: Mon, 6 Apr 2015 00:40:46 -0500 Subject: [PATCH 9/9] fixed line in changelog --- CHANGELOG.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c03dc8d..2fbdc35 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -9,6 +9,7 @@ RTV Changelog 1.2.1_ ------ Bugfixes + * Fixed crashing on invalid subreddit names ----