diff --git a/docs/Sonarr/Sonarr-Release-Profile-RegEx.md b/docs/Sonarr/Sonarr-Release-Profile-RegEx.md index eb24f0ddb..192f7652e 100644 --- a/docs/Sonarr/Sonarr-Release-Profile-RegEx.md +++ b/docs/Sonarr/Sonarr-Release-Profile-RegEx.md @@ -295,7 +295,7 @@ Add this to your `Preferred (3)` with a score of [10] Add this to your `Preferred (3)` with a score of [-100] ```bash -/(TBS|-BRiNK|-CHX|-XLF|-worldmkv|-GHOSTS|-VIDEOHOLE|nhanc3|Pahe\.ph|Pahe\.in|-NERO)\b/i +/(TBS|-BRiNK|MeGusta|-CHX|-XLF|-worldmkv|-GHOSTS|-VIDEOHOLE|nhanc3|Pahe\.ph|Pahe\.in|-NERO)\b/i ``` !!! danger "Caution" diff --git a/docs/json/radarr/cf/opus.json b/docs/json/radarr/cf/opus.json index fb9bfa34e..648822223 100644 --- a/docs/json/radarr/cf/opus.json +++ b/docs/json/radarr/cf/opus.json @@ -11,5 +11,14 @@ "fields": { "value": "\\bOPUS(\\b|\\d)" } + }, + { + "name": "Not OPUS Release Group", + "implementation": "ReleaseGroupSpecification", + "negate": true, + "required": true, + "fields": { + "value": "OPUS" + } }] } diff --git a/docs/json/sonarr/cf/lq.json b/docs/json/sonarr/cf/lq.json index bd135456b..0f9992102 100644 --- a/docs/json/sonarr/cf/lq.json +++ b/docs/json/sonarr/cf/lq.json @@ -40,6 +40,15 @@ "value": "\\bGHOSTS\\b" } }, + { + "name": "MeGusta", + "implementation": "ReleaseGroupSpecification", + "negate": false, + "required": false, + "fields": { + "value": "\\b(MeGusta)\\b" + } + }, { "name": "NERO", "implementation": "ReleaseGroupSpecification", diff --git a/docs/json/sonarr/cf/opus.json b/docs/json/sonarr/cf/opus.json index 3d65fdb32..237655bce 100644 --- a/docs/json/sonarr/cf/opus.json +++ b/docs/json/sonarr/cf/opus.json @@ -11,5 +11,14 @@ "fields": { "value": "\\bOPUS(\\b|\\d)" } + }, + { + "name": "Not OPUS Release Group", + "implementation": "ReleaseGroupSpecification", + "negate": true, + "required": true, + "fields": { + "value": "OPUS" + } }] } diff --git a/docs/json/sonarr/rp/lqGroups.json b/docs/json/sonarr/rp/lqGroups.json index 39759cc1e..3189f2f41 100644 --- a/docs/json/sonarr/rp/lqGroups.json +++ b/docs/json/sonarr/rp/lqGroups.json @@ -6,7 +6,7 @@ "preferred": [{ "score": -100, "terms": [ - "/(-BRiNK|-CHX|-GHOSTS|-NERO|nhanc3|Pahe\\.ph|Pahe\\.in|TBS|-VIDEOHOLE|-worldmkv|-XLF)\\b/i" + "/(-BRiNK|-CHX|-GHOSTS|MeGusta|-NERO|nhanc3|Pahe\\.ph|Pahe\\.in|TBS|-VIDEOHOLE|-worldmkv|-XLF)\\b/i" ] }], "ignored": [] diff --git a/docs/updates.txt b/docs/updates.txt index 8954c0f4d..ae9894810 100644 --- a/docs/updates.txt +++ b/docs/updates.txt @@ -1,3 +1,7 @@ +# 2022-11-03 19:20 +- Add: `MeGusta` to the Sonarr `LQ` CF and Release Profile. #946 +- Add: Group negation for `OPUS` in the `Opus` CF. #946 + # 2022-11-02 20:40 **[Radarr]** - NEW: Publish Radarr Anime guide. #942