diff --git a/CHANGES.md b/CHANGES.md index be558210..13dc44ed 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -130,6 +130,10 @@ * Change subtitle addons no longer need to be saved before Search Subtitles is enabled as a forbidden action to reuse an exited FindSubtitles thread is no longer attempted * Fix tools menu not opening for some browsers +* Change overhaul handling of PROPERS/REPACKS/REAL +* Add restriction to allow only same release group for repacks +* Change try all episode names with 'real', 'repack', 'proper' +* Add tip to search settings/media search about improved matching with optional regex library [develop changelog] diff --git a/SickBeard.py b/SickBeard.py index 8e2c802e..0a2d3f8c 100755 --- a/SickBeard.py +++ b/SickBeard.py @@ -438,6 +438,13 @@ class SickGear(object): startup_background_tasks = threading.Thread(name='FETCH-XEMDATA', target=sickbeard.scene_exceptions.get_xem_ids) startup_background_tasks.start() + # check history snatched_proper update + if not db.DBConnection().has_flag('history_snatch_proper'): + # noinspection PyUnresolvedReferences + history_snatched_proper_task = threading.Thread(name='UPGRADE-HISTORY-ACTION', + target=sickbeard.history.history_snatched_proper_fix) + history_snatched_proper_task.start() + if sickbeard.USE_FAILED_DOWNLOADS: failed_history.remove_old_history() diff --git a/gui/slick/interfaces/default/config_search.tmpl b/gui/slick/interfaces/default/config_search.tmpl index ee6bcb6b..237fd4ba 100755 --- a/gui/slick/interfaces/default/config_search.tmpl +++ b/gui/slick/interfaces/default/config_search.tmpl @@ -47,7 +47,7 @@
-
+
+ +

Optional: to improve matching, install the OS dependent regex python library

+

at a command line, simply enter ... python -m pip install regex

+