Close href tag on activity pane.
Update program description.
This commit is contained in:
Tim 2015-09-14 20:45:49 +02:00
parent 578ba52215
commit 285946bf94
4 changed files with 16 additions and 3 deletions

View file

@ -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.

View file

@ -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')

View file

@ -186,7 +186,7 @@ DOCUMENTATION :: END
</div>
% endif
</div>
% if a['type'] == 'movie' or a['type'] == 'episode':
% if a['type'] == 'movie' or a['type'] == 'episode' or a['type'] == 'track':
</a>
% endif
<div class="dashboard-activity-progress">

View file

@ -1,2 +1,2 @@
PLEXPY_VERSION = "master"
PLEXPY_RELEASE_VERSION = "1.1.8"
PLEXPY_RELEASE_VERSION = "1.1.9"