-
-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Radarr): Add new Black and White Editions custom format (#2241)
Add new Black and White Editions custom format for Radarr - Create new Black and White Editions custom format JSON for Radarr - Add a default score of -10000 - Add to all Radarr profile optional panels and profile JSON files - Add to Radarr Collection of Custom Formats
- Loading branch information
Showing
10 changed files
with
180 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
{ | ||
"trash_id": "cc444569854e9de0b084ab2b8b1532b2", | ||
"trash_scores": { | ||
"default": -10000 | ||
}, | ||
"name": "Black and White Editions", | ||
"includeCustomFormatWhenRenaming": false, | ||
"specifications": [ | ||
{ | ||
"name": "Blackout/B&W/Black&Chrome", | ||
"implementation": "ReleaseTitleSpecification", | ||
"negate": false, | ||
"required": false, | ||
"fields": { | ||
"value": "\\b((B(lack)?[ ._-]?(out|(and|[n&])[ ._-]?(W(hite)?|Chrome))))\\b(?!$)" | ||
} | ||
}, | ||
{ | ||
"name": "Monochrome", | ||
"implementation": "ReleaseTitleSpecification", | ||
"negate": false, | ||
"required": false, | ||
"fields": { | ||
"value": "\\b(Monochrome)\\b(?!$)" | ||
} | ||
}, | ||
{ | ||
"name": "Noir", | ||
"implementation": "ReleaseTitleSpecification", | ||
"negate": false, | ||
"required": false, | ||
"fields": { | ||
"value": "(?<=\\b[12]\\d{3}\\b).*\\b(Noir)\\b(?!$)" | ||
} | ||
}, | ||
{ | ||
"name": "Shush Cut", | ||
"implementation": "ReleaseTitleSpecification", | ||
"negate": false, | ||
"required": false, | ||
"fields": { | ||
"value": "\\b(Shush[ ._-]?Cut)\\b(?!$)" | ||
} | ||
}, | ||
{ | ||
"name": "No/Minus Color", | ||
"implementation": "ReleaseTitleSpecification", | ||
"negate": false, | ||
"required": false, | ||
"fields": { | ||
"value": "\\b((No|Minus)[ ._-]?Colou?r)\\b(?!$)" | ||
} | ||
}, | ||
{ | ||
"name": "Grayscale", | ||
"implementation": "ReleaseTitleSpecification", | ||
"negate": false, | ||
"required": false, | ||
"fields": { | ||
"value": "(?<=\\b[12]\\d{3}\\b).*\\b(Gr[ae]y([ ._-]?(scale))?)\\b(?!$)" | ||
} | ||
}, | ||
{ | ||
"name": "Darkness and Light", | ||
"implementation": "ReleaseTitleSpecification", | ||
"negate": false, | ||
"required": false, | ||
"fields": { | ||
"value": "\\b(Darkness?[ ._-]?(and|&)[ ._-]?(Light))\\b(?!$)" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.