diff --git a/.gitignore b/.gitignore index f3297290..3e58c483 100644 --- a/.gitignore +++ b/.gitignore @@ -21,6 +21,7 @@ cache/* *.crt *.key *.csr +*.pem # OS generated files # ###################### diff --git a/CHANGELOG.md b/CHANGELOG.md index e1c58a21..63541505 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## v1.2.15 (2015-12-20) + +* Fix navbar covering current activity on smaller screens. +* Fix metadata for grouped recently added notifications. +* Fix Growl notification agent not working. +* Change graph days selection. +* Change watch statistics to match table history grouping. +* Add automatic discovery of Pushbullet devices. +* Add Most Concurrent Streams watch statistic. +* Add precentage to current activity progress bars. +* Add a bunch of stream details to notification options. +* Add notification for Plex Remote Access/Plex Media Server back up. +* Add CC/BCC and multiple recipients to email notification agent. +* Add total watch time to history table footer. + + ## v1.2.14 (2015-12-07) * Fix regression with PlexWatch db importer and buffer warnings. diff --git a/data/interfaces/default/base.html b/data/interfaces/default/base.html index 0d66fac7..129bea69 100644 --- a/data/interfaces/default/base.html +++ b/data/interfaces/default/base.html @@ -57,7 +57,7 @@ from plexpy import version % endif % endfor diff --git a/data/interfaces/default/images/home-stat_most-concurrent.png b/data/interfaces/default/images/home-stat_most-concurrent.png new file mode 100644 index 00000000..085dc93e Binary files /dev/null and b/data/interfaces/default/images/home-stat_most-concurrent.png differ diff --git a/data/interfaces/default/js/tables/history_table.js b/data/interfaces/default/js/tables/history_table.js index 1cafd218..516ed0bc 100644 --- a/data/interfaces/default/js/tables/history_table.js +++ b/data/interfaces/default/js/tables/history_table.js @@ -18,7 +18,7 @@ history_table_options = { "lengthMenu":"Show _MENU_ entries per page", "info":"Showing _START_ to _END_ of _TOTAL_ history items", "infoEmpty":"Showing 0 to 0 of 0 entries", - "infoFiltered":"(filtered from _MAX_ total entries)", + "infoFiltered":"", "emptyTable": "No data in table" }, "pagingType": "bootstrap", @@ -265,6 +265,9 @@ history_table_options = { createChildTable(this, rowData) } }); + + $("#history_table_info").append(''); }, "preDrawCallback": function(settings) { var msg = " Fetching rows..."; diff --git a/data/interfaces/default/notification_config.html b/data/interfaces/default/notification_config.html index 9d8ab9a1..b9859ae1 100644 --- a/data/interfaces/default/notification_config.html +++ b/data/interfaces/default/notification_config.html @@ -6,7 +6,7 @@ from plexpy import helpers