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
|
||||
|
||||
## v1.0 (2015-07-11)
|
||||
|
||||
* First release
|
27
README.md
27
README.md
|
@ -1,11 +1,9 @@
|
|||
#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).
|
||||
|
||||
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
|
||||
|
||||
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
|
||||
* 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)
|
||||
- daily, weekly, monthly, all time stats for play count and duration length
|
||||
- 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
|
||||
- synced items
|
||||
|
||||
* charts **NOT YET IMPLEMENTED**
|
||||
- top 10 all time viewed content
|
||||
- top 10 viewed movies
|
||||
- top 10 viewed tv shows
|
||||
- top 10 viewed tv episodes
|
||||
* Rich analytics presented using Highcharts graphing
|
||||
- user-selectable time periods of 30, 90 or 365 days
|
||||
- daily watch count and duration
|
||||
- totals by day of week and hours of the day
|
||||
- totals by top 10 platform
|
||||
- totals by top 10 users
|
||||
- detailed breakdown by transcode decision
|
||||
- source and stream resolutions
|
||||
- transcode decision counts by user and platform
|
||||
- total monthly counts
|
||||
|
||||
* content information pages
|
||||
* Content information pages
|
||||
- movies (includes watching history)
|
||||
- tv shows (includes watching history)
|
||||
- tv seasons
|
||||
- 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
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
<th align='left' id="paused_counter">Paused</th>
|
||||
<th align='left' id="stopped">Stopped</th>
|
||||
<th align='left' id="duration">Duration</th>
|
||||
<th align='left' id="percent_complete"></th>
|
||||
<th align='left' id="percent_complete">Watched</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
|
|
@ -182,7 +182,7 @@ DOCUMENTATION :: END
|
|||
<th align='left' id="paused_counter">Paused</th>
|
||||
<th align='left' id="stopped">Stopped</th>
|
||||
<th align='left' id="duration">Duration</th>
|
||||
<th align='left' id="percent_complete"></th>
|
||||
<th align='left' id="percent_complete">Watched</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
</div>
|
||||
</div>
|
||||
<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>
|
||||
|
|
|
@ -171,7 +171,8 @@ history_table_options = {
|
|||
},
|
||||
"searchable": false,
|
||||
"orderable": false,
|
||||
"className": "no-wrap hidden-md hidden-xs"
|
||||
"className": "no-wrap hidden-md hidden-xs",
|
||||
"width": "10px"
|
||||
}
|
||||
],
|
||||
"drawCallback": function (settings) {
|
||||
|
|
|
@ -172,7 +172,7 @@ from plexpy import helpers
|
|||
<th align='left' id="paused_counter">Paused</th>
|
||||
<th align='left' id="stopped">Stopped</th>
|
||||
<th align='left' id="duration">Duration</th>
|
||||
<th align='left' id="percent_complete"></th>
|
||||
<th align='left' id="percent_complete">Watched</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue