From 2d91cfd3db1da03a3a258d9bee385e8206737bac Mon Sep 17 00:00:00 2001 From: JonnyWong16 Date: Sun, 22 May 2016 16:22:35 -0700 Subject: [PATCH 1/2] Fix basic auth --- plexpy/webstart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/webstart.py b/plexpy/webstart.py index e498ce29..11eb7886 100644 --- a/plexpy/webstart.py +++ b/plexpy/webstart.py @@ -74,7 +74,7 @@ def initialize(options): basic_auth_enabled = False cherrypy.tools.auth = cherrypy.Tool('before_handler', webauth.check_auth) else: - auth_enabled = session_enabled = False + auth_enabled = session_enabled = basic_auth_enabled = False if not options['http_root'] or options['http_root'] == '/': plexpy.HTTP_ROOT = options['http_root'] = '/' From a93dc68e6cd17c423667c287fc51d8e7e9f18049 Mon Sep 17 00:00:00 2001 From: JonnyWong16 Date: Sun, 22 May 2016 16:24:01 -0700 Subject: [PATCH 2/2] v1.4.3 --- CHANGELOG.md | 5 +++++ plexpy/version.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70aef766..92d19a7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v1.4.3 (2016-05-22) + +* Fix: PlexPy not starting without any authentication method. + + ## v1.4.2 (2016-05-22) * New: Option to use HTTP basic authentication instead of the HTML login form. diff --git a/plexpy/version.py b/plexpy/version.py index c685b594..e17a8551 100644 --- a/plexpy/version.py +++ b/plexpy/version.py @@ -1,2 +1,2 @@ PLEXPY_VERSION = "master" -PLEXPY_RELEASE_VERSION = "1.4.2" +PLEXPY_RELEASE_VERSION = "1.4.3"