diff --git a/CHANGELOG b/CHANGELOG index a39c2f9..b6e80ef 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +0.1.9 +- only allow owned servers by default; can be disabled + 0.1.8-2 - properly set device name on plex auth (esp. docker) diff --git a/README.md b/README.md index e003da5..6028e9b 100644 --- a/README.md +++ b/README.md @@ -130,6 +130,8 @@ optional arguments: Connection timeout to the PMS (default: 5) -pt PLEXTV_TIMEOUT, --plextv-timeout PLEXTV_TIMEOUT Connection timeout to the Plex.TV API (default: 15) + --allow-not-owned [BOOL] + Allow access to not-owned servers? (default: False) BOOL can be: True: "y, yes, t, true, True, on, 1" diff --git a/kitana.py b/kitana.py index 99e212f..d3e9d07 100644 --- a/kitana.py +++ b/kitana.py @@ -59,7 +59,7 @@ def maintenance(): class Kitana(object): PRODUCT_IDENTIFIER = "Kitana" - VERSION = "0.1.8-2" + VERSION = "0.1.9" CLIENT_IDENTIFIER_BASE = "{}_{}".format(PRODUCT_IDENTIFIER, VERSION) initialized = False timeout = 5