mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-06 05:01:14 -07:00
First release
Add text to empty watched percent header Fix typo on IP modal text Update README Update CHANGELOG
This commit is contained in:
parent
de66480d5f
commit
a039641aba
7 changed files with 26 additions and 18 deletions
|
@ -1 +1,5 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## v1.0 (2015-07-11)
|
||||||
|
|
||||||
|
* First release
|
29
README.md
29
README.md
|
@ -1,11 +1,9 @@
|
||||||
#PlexPy
|
#PlexPy
|
||||||
|
|
||||||
NB: This project is still very early in development.
|
A python based web application for monitoring, analytics and notifications for Plex Media Server (www.plex.tv).
|
||||||
|
|
||||||
This project is based on code from Headphones (https://github.com/rembo10/headphones) and PlexWatchWeb (https://github.com/ecleese/plexWatchWeb).
|
This project is based on code from Headphones (https://github.com/rembo10/headphones) and PlexWatchWeb (https://github.com/ecleese/plexWatchWeb).
|
||||||
|
|
||||||
A python based web application for monitoring and logging activity on your Plex Media Server.
|
|
||||||
|
|
||||||
* plexPy forum thread: https://forums.plex.tv/discussion/169591/plexpy-another-plex-monitoring-program
|
* plexPy forum thread: https://forums.plex.tv/discussion/169591/plexpy-another-plex-monitoring-program
|
||||||
|
|
||||||
If you'd like to buy me a beer, hit the donate button below.
|
If you'd like to buy me a beer, hit the donate button below.
|
||||||
|
@ -52,9 +50,9 @@ If you'd like to buy me a beer, hit the donate button below.
|
||||||
* duration length
|
* duration length
|
||||||
* percentage completed
|
* percentage completed
|
||||||
|
|
||||||
* full user list with general information and comparison stats
|
* Full user list with general information and comparison stats
|
||||||
|
|
||||||
* individual user information
|
* Individual user information
|
||||||
- username and gravatar (if available)
|
- username and gravatar (if available)
|
||||||
- daily, weekly, monthly, all time stats for play count and duration length
|
- daily, weekly, monthly, all time stats for play count and duration length
|
||||||
- individual platform stats for each user
|
- individual platform stats for each user
|
||||||
|
@ -63,19 +61,24 @@ If you'd like to buy me a beer, hit the donate button below.
|
||||||
- watching history
|
- watching history
|
||||||
- synced items
|
- synced items
|
||||||
|
|
||||||
* charts **NOT YET IMPLEMENTED**
|
* Rich analytics presented using Highcharts graphing
|
||||||
- top 10 all time viewed content
|
- user-selectable time periods of 30, 90 or 365 days
|
||||||
- top 10 viewed movies
|
- daily watch count and duration
|
||||||
- top 10 viewed tv shows
|
- totals by day of week and hours of the day
|
||||||
- top 10 viewed tv episodes
|
- totals by top 10 platform
|
||||||
|
- totals by top 10 users
|
||||||
* content information pages
|
- detailed breakdown by transcode decision
|
||||||
|
- source and stream resolutions
|
||||||
|
- transcode decision counts by user and platform
|
||||||
|
- total monthly counts
|
||||||
|
|
||||||
|
* Content information pages
|
||||||
- movies (includes watching history)
|
- movies (includes watching history)
|
||||||
- tv shows (includes watching history)
|
- tv shows (includes watching history)
|
||||||
- tv seasons
|
- tv seasons
|
||||||
- tv episodes (includes watching history)
|
- tv episodes (includes watching history)
|
||||||
|
|
||||||
* full sync list data on all users syncing items from your library
|
* Full sync list data on all users syncing items from your library
|
||||||
|
|
||||||
## Installation and Notes
|
## Installation and Notes
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
<th align='left' id="paused_counter">Paused</th>
|
<th align='left' id="paused_counter">Paused</th>
|
||||||
<th align='left' id="stopped">Stopped</th>
|
<th align='left' id="stopped">Stopped</th>
|
||||||
<th align='left' id="duration">Duration</th>
|
<th align='left' id="duration">Duration</th>
|
||||||
<th align='left' id="percent_complete"></th>
|
<th align='left' id="percent_complete">Watched</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
|
@ -182,7 +182,7 @@ DOCUMENTATION :: END
|
||||||
<th align='left' id="paused_counter">Paused</th>
|
<th align='left' id="paused_counter">Paused</th>
|
||||||
<th align='left' id="stopped">Stopped</th>
|
<th align='left' id="stopped">Stopped</th>
|
||||||
<th align='left' id="duration">Duration</th>
|
<th align='left' id="duration">Duration</th>
|
||||||
<th align='left' id="percent_complete"></th>
|
<th align='left' id="percent_complete">Watched</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<span class="text-muted">Service provided by ip.api.com.</span>
|
<span class="text-muted">Service provided by ip-api.com.</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -171,7 +171,8 @@ history_table_options = {
|
||||||
},
|
},
|
||||||
"searchable": false,
|
"searchable": false,
|
||||||
"orderable": false,
|
"orderable": false,
|
||||||
"className": "no-wrap hidden-md hidden-xs"
|
"className": "no-wrap hidden-md hidden-xs",
|
||||||
|
"width": "10px"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"drawCallback": function (settings) {
|
"drawCallback": function (settings) {
|
||||||
|
|
|
@ -172,7 +172,7 @@ from plexpy import helpers
|
||||||
<th align='left' id="paused_counter">Paused</th>
|
<th align='left' id="paused_counter">Paused</th>
|
||||||
<th align='left' id="stopped">Stopped</th>
|
<th align='left' id="stopped">Stopped</th>
|
||||||
<th align='left' id="duration">Duration</th>
|
<th align='left' id="duration">Duration</th>
|
||||||
<th align='left' id="percent_complete"></th>
|
<th align='left' id="percent_complete">Watched</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue