diff --git a/CHANGELOG.md b/CHANGELOG.md index 03908d2c..e60331fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ # Changelog +## v2.1.23-beta (2018-10-14) + +* Monitoring: + * Fix: Buffer events not being triggered properly. + * Fix: Watched progress sometimes not saved correctly. (Thanks @Sheigutn) +* Notifications: + * New: Added notification trigger for transcode decision change. + * Fix: Multiple buffer notifications being triggered within the same second. + * Change: Default buffer notification threshold changed to 10 for buffer thresholds less than 10. +* Newsletter: + * New: Added Other Video libraries to the newsletter. +* Homepage: + * New: Added Other Video type to recently added on the homepage. + * Change: Save homepage recently added media type toggle state. + * Change: Save homepage stats config to local storage instead of the server. +* History: + * Change: Save history table media type toggle state. +* Graphs: + * Change: Save series visibility state when toggling the legend. + * Change: Save graph config to local storage instead of the server. +* UI: + * New: Show the remote app device token and id in the edit device modal. + * Change: Lock certain settings if using the Tautulli docker container. +* API: + * Fix: download_config, download_database, download_log, and download_plex_log API commands not working. + * Change: get_recently_added command 'type' parameter renamed to 'media_type'. Backwards compatibility is maintained. + * Change: get_home_stats command 'stats_type' parameter change to string 'plays' or 'duration'. Backwards compatibility is maintained. + + ## v2.1.22 (2018-10-05) * Notifications: diff --git a/plexpy/version.py b/plexpy/version.py index 2c80dd29..c33b26ce 100644 --- a/plexpy/version.py +++ b/plexpy/version.py @@ -1,2 +1,2 @@ -PLEXPY_BRANCH = "master" -PLEXPY_RELEASE_VERSION = "v2.1.22" +PLEXPY_BRANCH = "beta" +PLEXPY_RELEASE_VERSION = "v2.1.23-beta"