Update for new recyclarr feature

Update metadata json and schema to support recyclarr templates feature. Addes templates.json to catalog available templates. Relocate recyclarr-configs to /docs so they're in a central location.
pull/1164/head
yammes08 1 year ago committed by TRaSH
parent 99cd7df722
commit 6c9d94c87c

@ -0,0 +1,66 @@
{
"radarr": [
{
"template": "radarr/hd_bluray_web.yml",
"id": "hd-bluray-web"
},
{
"template": "radarr/uhd_bluray_web.yml",
"id": "uhd-bluray-web"
},
{
"template": "radarr/remux_web_1080p.yml",
"id": "remux-web-1080p"
},
{
"template": "radarr/remux_web_2160p.yml",
"id": "remux-web-2160p"
},
{
"template": "radarr/sqp-1.yml",
"id": "sqp-1"
},
{
"template": "radarr/sqp-2.yml",
"id": "sqp-2"
},
{
"template": "radarr/sqp-3.yml",
"id": "sqp-3"
},
{
"template": "radarr/sqp-4.yml",
"id": "sqp-4"
},
{
"template": "radarr/sqp-5.yml",
"id": "sqp-5"
}
],
"sonarr": [
{
"template": "sonarr/french_anime_multi_v4.yml",
"id": "french-anime-multi-v4"
},
{
"template": "sonarr/french_anime_vostfr_v4.yml",
"id": "french-anime-vostfr-v4"
},
{
"template": "sonarr/french_web_1080p_multi_v4.yml",
"id": "french-web-1080p-multi-v4"
},
{
"template": "sonarr/french_web_1080p_vostfr_v4.yml",
"id": "french-web-1080p-vostfr-v4"
},
{
"template": "sonarr/web_1080p_v4.yml",
"id": "web-1080p-v4"
},
{
"template": "sonarr/web_2160p_v4.yml",
"id": "web-2160p-v4"
}
]
}

@ -11,6 +11,9 @@
"custom_formats": ["docs/json/sonarr/cf"],
"qualities": ["docs/json/sonarr/quality-size"],
"naming": ["docs/json/sonarr/naming"]
},
"recyclarr": {
"templates": "docs/recyclarr-configs"
}
}
}

@ -10,7 +10,8 @@
"additionalProperties": false,
"properties": {
"radarr": { "$ref": "#/$defs/radarr" },
"sonarr": { "$ref": "#/$defs/sonarr" }
"sonarr": { "$ref": "#/$defs/sonarr" },
"recyclarr": { "$ref": "#/$defs/recyclarr" }
}
}
},
@ -37,6 +38,13 @@
"qualities": { "$ref": "#/$defs/paths_object" },
"naming": { "$ref": "#/$defs/paths_object" }
}
},
"recyclarr": {
"type": "object",
"additionalProperties": false,
"properties": {
"templates": { "type": "string" }
}
}
}
}

Loading…
Cancel
Save