From 6d5c3207011e221b8b6aa915c333f08d375c800b Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Sun, 12 Apr 2020 21:27:01 -0700 Subject: [PATCH] v2.2.2-beta --- CHANGELOG.md | 28 ++++++++++++++++++++++++++++ plexpy/version.py | 4 ++-- 2 files changed, 30 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 49b37825..625cca89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,33 @@ # Changelog +## v2.2.2-beta (2020-04-12) + +* Notifications: + * New: Added notification trigger for Tautulli database corruption. + * New: Added TAUTULLI_PYTHON_VERSION to script notification environment variables. + * Fix: Notification grouping by season/album and show/artist not enabled by default. + * Change: The file size notification parameter is now reported in SI units. (Thanks @aaronldunlap) +* UI: + * Fix: Delete lookup info from the media info page failing. + * New: Added icon on the users table to indicate if the user is not on the Plex server. + * New: Added icon on the libraries table to indicate if the library is not on the Plex server. + * Fix: XBMC platform icon not being redirected to the Kodi platform icon. + * Change: Improved deleting libraries so libraries with the same section ID are not also deleted. +* API: + * Fix: Returning XML for the API failing due to unicode characters. + * Fix: Grouping parameter for various API commands not falling back to default setting. + * New: Added time_queries parameter to get_library_watch_time_stats and get_user_watch_time_stats API command. (Thanks @KaasKop97) + * New: Added an "is_active" return value to the get_user, get_users, get_library, and get_libraries API commands which indicates if the user or library is on the Plex server. + * New: Added delete_history API command. + * Change: Added optional parameter for row_ids for delete_library, delete_user, delete_all_library_history, and delete_all_user_history API commands. +* Mobile App: + * Fix: Temporary device token not being invalidated after cancelling device registration. +* Other: + * Fix: Update failing on CentOS due to an older git version. + * Fix: Manifest file for creating a web app had incorrect info. + * New: Docker images updated to support ARM platforms. + + ## v2.2.1 (2020-03-28) * Notifications: diff --git a/plexpy/version.py b/plexpy/version.py index 01a5ad0b..a01a016d 100644 --- a/plexpy/version.py +++ b/plexpy/version.py @@ -1,2 +1,2 @@ -PLEXPY_BRANCH = "master" -PLEXPY_RELEASE_VERSION = "v2.2.1" +PLEXPY_BRANCH = "beta" +PLEXPY_RELEASE_VERSION = "v2.2.2-beta"