From 285946bf9419a534b4b36f1d7289396d43401e0a Mon Sep 17 00:00:00 2001 From: Tim Date: Mon, 14 Sep 2015 20:45:49 +0200 Subject: [PATCH] v1.1.9 Close href tag on activity pane. Update program description. --- CHANGELOG.md | 13 +++++++++++++ PlexPy.py | 2 +- data/interfaces/default/current_activity.html | 2 +- plexpy/version.py | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30ef75de..0f1af865 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## v1.1.9 (2015-09-14) + +* Another JonnyWong release. I'm going to stop thanking you now ;) +* Add music plays to graphs. +* Add info pages for music items. +* Add music to user recently watched items. +* Add photo views to Activity pane (photos are not logged). +* Fix token validation message on Settings page. +* Fix some "Mystery" platform names. +* Fix paused time be counted for graph data. +* Other small bug fixes. + + ## v1.1.8 (2015-09-09) * Add platform images for Windows devices. Thanks @JonnyWong. diff --git a/PlexPy.py b/PlexPy.py index 008ccec5..0243ce0f 100755 --- a/PlexPy.py +++ b/PlexPy.py @@ -64,7 +64,7 @@ def main(): # Set up and gather command line arguments parser = argparse.ArgumentParser( - description='Python frontend for PlexWatch.') + description='A Python based monitoring and tracking tool for Plex Media Server.') parser.add_argument( '-v', '--verbose', action='store_true', help='Increase console logging verbosity') diff --git a/data/interfaces/default/current_activity.html b/data/interfaces/default/current_activity.html index f6ab2bd6..04632966 100644 --- a/data/interfaces/default/current_activity.html +++ b/data/interfaces/default/current_activity.html @@ -186,7 +186,7 @@ DOCUMENTATION :: END % endif - % if a['type'] == 'movie' or a['type'] == 'episode': + % if a['type'] == 'movie' or a['type'] == 'episode' or a['type'] == 'track': % endif
diff --git a/plexpy/version.py b/plexpy/version.py index c1d759b7..6af938ca 100644 --- a/plexpy/version.py +++ b/plexpy/version.py @@ -1,2 +1,2 @@ PLEXPY_VERSION = "master" -PLEXPY_RELEASE_VERSION = "1.1.8" +PLEXPY_RELEASE_VERSION = "1.1.9"