From 2eb82e873219c2f428347c58b3a038a91d5a52a3 Mon Sep 17 00:00:00 2001 From: samwiseg00 Date: Thu, 11 Oct 2018 16:55:45 -0400 Subject: [PATCH 1/2] Change default buffering threshold for new installs --- plexpy/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/config.py b/plexpy/config.py index 797b6a96..981b6ffa 100644 --- a/plexpy/config.py +++ b/plexpy/config.py @@ -104,7 +104,7 @@ _CONFIG_DEFINITIONS = { 'BROWSER_ON_PMSUPDATE': (int, 'Browser', 0), 'BROWSER_ON_CONCURRENT': (int, 'Browser', 0), 'BROWSER_ON_NEWDEVICE': (int, 'Browser', 0), - 'BUFFER_THRESHOLD': (int, 'Monitoring', 3), + 'BUFFER_THRESHOLD': (int, 'Monitoring', 10), 'BUFFER_WAIT': (int, 'Monitoring', 900), 'BACKUP_DAYS': (int, 'General', 3), 'BACKUP_DIR': (str, 'General', ''), From 92672ddda89d8e081b991d6b2841a759af72f63b Mon Sep 17 00:00:00 2001 From: samwiseg00 Date: Sun, 14 Oct 2018 00:08:02 -0400 Subject: [PATCH 2/2] Bump version & change default buffer from 3 to 10 --- plexpy/config.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/plexpy/config.py b/plexpy/config.py index 981b6ffa..1cf50076 100644 --- a/plexpy/config.py +++ b/plexpy/config.py @@ -921,3 +921,10 @@ class Config(object): if self.CONFIG_VERSION == 11: self.ANON_REDIRECT = self.ANON_REDIRECT.replace('http://www.nullrefer.com/?', 'https://www.nullrefer.com/?') + self.CONFIG_VERSION = 12 + + if self.CONFIG_VERSION == 12: + if self.BUFFER_THRESHOLD == 3: + self.BUFFER_THRESHOLD = 10 + + self.CONFIG_VERSION = 13