feat(sonarr): Add Single Episode and Multi-Episode CFs

pull/1873/head
owine 2 months ago
parent b60126957f
commit 4a3dfbfca7
No known key found for this signature in database

@ -1146,6 +1146,38 @@ We've made 3 guides related to this.
---
### Single Episode
??? question "Single Episode - [Click to show/hide]"
This Custom Format will recognize single episode releases (as opposed to multi-episode or season packs) using Sonarr's built in parser. Depending on your preferences, you can give it a negative score, a positive score, or just skip adding it altogether.
??? example "JSON - [Click to show/hide]"
```json
[[% filter indent(width=4) %]][[% include 'json/sonarr/cf/single-episode.json' %]][[% endfilter %]]
```
<sub><sup>[TOP](#index)</sup>
---
### Multi-Episode
??? question "Multi-Episode - [Click to show/hide]"
This Custom Format will recognize multi-episode releases (as opposed to single episode or season packs) using Sonarr's built in parser. Depending on your preferences, you can give it a negative score, a positive score, or just skip adding it altogether.
??? example "JSON - [Click to show/hide]"
```json
[[% filter indent(width=4) %]][[% include 'json/sonarr/cf/multi-episode.json' %]][[% endfilter %]]
```
<sub><sup>[TOP](#index)</sup>
---
### Season Pack
??? question "Season Pack - [Click to show/hide]"

@ -0,0 +1,16 @@
{
"trash_id": "4a20cfb76b5f92a8ca22b894b32e71be",
"name": "Multi-Episode",
"includeCustomFormatWhenRenaming": false,
"specifications": [
{
"name": "Multi-Episode",
"implementation": "ReleaseTypeSpecification",
"negate": false,
"required": false,
"fields": {
"value": 2
}
}
]
}

@ -0,0 +1,16 @@
{
"trash_id": "e0c1a67f23908a55b6ae9834e8ed6727",
"name": "Single Episode",
"includeCustomFormatWhenRenaming": false,
"specifications": [
{
"name": "Single Episode",
"implementation": "ReleaseTypeSpecification",
"negate": false,
"required": false,
"fields": {
"value": 1
}
}
]
}
Loading…
Cancel
Save