fix(radarr): IMAX CF false positives (#1655)

pull/1658/head
nuxen 6 months ago committed by GitHub
parent 662834c21e
commit 339fe13a43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -3,6 +3,7 @@
"trash_scores": {
"default": 800
},
"trash_regex": "https://regex101.com/r/e7ugxU/1",
"name": "IMAX Enhanced",
"includeCustomFormatWhenRenaming": true,
"specifications": [
@ -12,7 +13,7 @@
"negate": false,
"required": true,
"fields": {
"value": "^(?=.*(DSNP|Disney\\+|CORE(?=[ ._-]web[ ._-]?(dl|rip)\\b)|\\bBC(?=[ ._-]web[ ._-]?(dl|rip)\\b)|IMAX[- .]Enhanced)\\b)(?=.*\\b(IMAX|IMAX[- .]Enhanced)\\b).*"
"value": "^(?=.*\\b((DSNP|Disney\\+|BC|B?CORE)(?=[ ._-]web[ ._-]?(dl|rip)\\b)))(?=.*\\b((?<!NON[ ._-])IMAX)\\b)|^(?=.*\\b(IMAX[ ._-]Enhanced)\\b)"
}
}
]

@ -3,6 +3,7 @@
"trash_scores": {
"default": 800
},
"trash_regex": "https://regex101.com/r/e7ugxU/1",
"name": "IMAX",
"includeCustomFormatWhenRenaming": false,
"specifications": [
@ -12,7 +13,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\bIMAX\\b"
"value": "\\b((?<!NON[ ._-])IMAX)\\b"
}
},
{
@ -21,7 +22,7 @@
"negate": true,
"required": true,
"fields": {
"value": "^(?=.*(DSNP|CORE(?=[ ._-]web[ ._-]?(dl|rip)\\b)|\\bBC(?=[ ._-]web[ ._-]?(dl|rip)\\b)|IMAX[- .]Enhanced)\\b)(?=.*\\b(IMAX|IMAX[- .]Enhanced)\\b).*"
"value": "^(?=.*\\b((DSNP|Disney\\+|BC|B?CORE)(?=[ ._-]web[ ._-]?(dl|rip)\\b)))(?=.*\\b((?<!NON[ ._-])IMAX)\\b)|^(?=.*\\b(IMAX[ ._-]Enhanced)\\b)"
}
}
]

Loading…
Cancel
Save