Merge pull request #623 from TRaSH-/Sonarr-CF-dv-hdr10-fix-for-bad-(re)named-files

Sonarr cf dv hdr10 fix for bad (re)named files
pull/633/head
TRaSH 2 years ago committed by GitHub
commit 82a72fb673
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -46,6 +46,24 @@
"fields": { "fields": {
"value": "-GLHF\\b" "value": "-GLHF\\b"
} }
},
{
"name": "KOGI",
"implementation": "ReleaseTitleSpecification",
"negate": false,
"required": false,
"fields": {
"value": "-KOGI\\b"
}
},
{
"name": "GOSSIP",
"implementation": "ReleaseTitleSpecification",
"negate": false,
"required": false,
"fields": {
"value": "-GOSSIP\\b"
}
} }
] ]
} }

@ -8,7 +8,7 @@
"negate": false, "negate": false,
"required": true, "required": true,
"fields": { "fields": {
"value": "\\b(DV[ .]HDR10)\\b" "value": "\\b(DV[ .]HDR10|HDR10[ .]DV)\\b"
} }
}, },
{ {

@ -17,7 +17,7 @@
"negate": true, "negate": true,
"required": true, "required": true,
"fields": { "fields": {
"value": "\\b(DV[ .]HDR10)\\b" "value": "\\b(DV[ .]HDR10|HDR10[ .]DV)\\b"
} }
}, },
{ {

@ -17,7 +17,7 @@
"negate": true, "negate": true,
"required": true, "required": true,
"fields": { "fields": {
"value": "\\b(DV[ .]HDR10)\\b" "value": "\\b(DV[ .]HDR10|HDR10[ .]DV)\\b"
} }
}, },
{ {

@ -39,12 +39,12 @@
} }
}, },
{ {
"name": "DV HDR10", "name": "Not DV HDR10",
"implementation": "ReleaseTitleSpecification", "implementation": "ReleaseTitleSpecification",
"negate": true, "negate": true,
"required": true, "required": true,
"fields": { "fields": {
"value": "\\b(DV[ .]HDR10)\\b" "value": "\\b(DV[ .]HDR10|HDR10[ .]DV)\\b"
} }
} }
] ]

@ -17,7 +17,7 @@
"negate": true, "negate": true,
"required": true, "required": true,
"fields": { "fields": {
"value": "\\b(DV[ .]HDR10)\\b" "value": "\\b(DV[ .]HDR10|HDR10[ .]DV)\\b"
} }
}, },
{ {

@ -17,7 +17,7 @@
"negate": true, "negate": true,
"required": true, "required": true,
"fields": { "fields": {
"value": "\\b(DV[ .]HDR10)\\b" "value": "\\b(DV[ .]HDR10|HDR10[ .]DV)\\b"
} }
}, },
{ {
@ -55,6 +55,15 @@
"fields": { "fields": {
"value": "\\bSDR(\\b|\\d)" "value": "\\bSDR(\\b|\\d)"
} }
},
{
"name": "Not DV",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(dv|dovi|dolby[ .]?vision)\\b"
}
} }
] ]
} }

@ -17,7 +17,7 @@
"negate": true, "negate": true,
"required": true, "required": true,
"fields": { "fields": {
"value": "\\b(DV[ .]HDR10)\\b" "value": "\\b(DV[ .]HDR10|HDR10[ .]DV)\\b"
} }
}, },
{ {

Loading…
Cancel
Save