From bb0be85d066fe69bdb3cc275aa809dec0d6bf3b6 Mon Sep 17 00:00:00 2001 From: Junkbite Date: Tue, 19 May 2020 19:47:47 -0400 Subject: [PATCH] make instanceB path optional; add test run flag --- README.md | 1 + config.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c0ea155..e44072a 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ Syncs two Radarr/Sonarr/Lidarr servers through the web API. Useful for syncing a * Set language profiles (Sonarr v3 only) * Filter syncing by content file quality (Radarr only) * Filter syncing by tags (Sonarr/Radarr v3 only) +* Allow for a test run using `test_run` flag (does everything but actually sync) ## Configuration diff --git a/config.py b/config.py index 4c130b7..dd6bdd3 100644 --- a/config.py +++ b/config.py @@ -9,7 +9,7 @@ import configparser DEV = os.environ.get('DEV') -VER = '1.8.0' +VER = '1.9.0' DEBUG_LINE = '-' * 20 V1_API_PATH = 'v1/'