├── .gitattributes ├── .github └── workflows │ ├── check-dates.yml │ ├── check-paths.yml │ ├── check-trash-ids.yml │ ├── notify.yml │ ├── renovate.yaml │ └── yaml-lint.yml ├── .gitignore ├── .vscode └── settings.json ├── .yamllint ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── ci ├── CheckInvalidDates.ps1 ├── CheckInvalidTemplatePaths.ps1 └── CheckInvalidTrashIds.ps1 ├── includes.json ├── radarr ├── includes │ ├── custom-formats │ │ ├── radarr-custom-formats-anime.yml │ │ ├── radarr-custom-formats-hd-bluray-web-french-multi-vf.yml │ │ ├── radarr-custom-formats-hd-bluray-web-french-multi-vo.yml │ │ ├── radarr-custom-formats-hd-bluray-web-french-vostfr.yml │ │ ├── radarr-custom-formats-hd-bluray-web-german.yml │ │ ├── radarr-custom-formats-hd-bluray-web.yml │ │ ├── radarr-custom-formats-hd-remux-web-french-multi-vf.yml │ │ ├── radarr-custom-formats-hd-remux-web-french-multi-vo.yml │ │ ├── radarr-custom-formats-hd-remux-web-french-vostfr.yml │ │ ├── radarr-custom-formats-remux-web-1080p.yml │ │ ├── radarr-custom-formats-remux-web-2160p.yml │ │ ├── radarr-custom-formats-uhd-bluray-web-french-multi-vf.yml │ │ ├── radarr-custom-formats-uhd-bluray-web-french-multi-vo.yml │ │ ├── radarr-custom-formats-uhd-bluray-web-french-vostfr.yml │ │ ├── radarr-custom-formats-uhd-bluray-web-german.yml │ │ ├── radarr-custom-formats-uhd-bluray-web.yml │ │ ├── radarr-custom-formats-uhd-remux-web-french-multi-vf.yml │ │ ├── radarr-custom-formats-uhd-remux-web-french-multi-vo.yml │ │ ├── radarr-custom-formats-uhd-remux-web-french-vostfr.yml │ │ ├── radarr-custom-formats-uhd-remux-web-german.yml │ │ └── sqp │ │ │ ├── radarr-custom-formats-sqp-1-1080p.yml │ │ │ ├── radarr-custom-formats-sqp-1-2160p.yml │ │ │ ├── radarr-custom-formats-sqp-1-web-1080p.yml │ │ │ ├── radarr-custom-formats-sqp-1-web-2160p.yml │ │ │ ├── radarr-custom-formats-sqp-2.yml │ │ │ ├── radarr-custom-formats-sqp-3.yml │ │ │ ├── radarr-custom-formats-sqp-4.yml │ │ │ └── radarr-custom-formats-sqp-5.yml │ ├── quality-definitions │ │ ├── radarr-quality-definition-anime.yml │ │ ├── radarr-quality-definition-movie.yml │ │ └── sqp │ │ │ ├── radarr-quality-definition-sqp-streaming.yml │ │ │ └── radarr-quality-definition-sqp-uhd.yml │ └── quality-profiles │ │ ├── radarr-quality-profile-anime.yml │ │ ├── radarr-quality-profile-hd-bluray-web-french-multi-vf.yml │ │ ├── radarr-quality-profile-hd-bluray-web-french-multi-vo.yml │ │ ├── radarr-quality-profile-hd-bluray-web-french-vostfr.yml │ │ ├── radarr-quality-profile-hd-bluray-web-german.yml │ │ ├── radarr-quality-profile-hd-bluray-web.yml │ │ ├── radarr-quality-profile-hd-remux-web-french-multi-vf.yml │ │ ├── radarr-quality-profile-hd-remux-web-french-multi-vo.yml │ │ ├── radarr-quality-profile-hd-remux-web-french-vostfr.yml │ │ ├── radarr-quality-profile-remux-web-1080p.yml │ │ ├── radarr-quality-profile-remux-web-2160p.yml │ │ ├── radarr-quality-profile-uhd-bluray-web-french-multi-vf.yml │ │ ├── radarr-quality-profile-uhd-bluray-web-french-multi-vo.yml │ │ ├── radarr-quality-profile-uhd-bluray-web-french-vostfr.yml │ │ ├── radarr-quality-profile-uhd-bluray-web-german.yml │ │ ├── radarr-quality-profile-uhd-bluray-web.yml │ │ ├── radarr-quality-profile-uhd-remux-web-french-multi-vf.yml │ │ ├── radarr-quality-profile-uhd-remux-web-french-multi-vo.yml │ │ ├── radarr-quality-profile-uhd-remux-web-french-vostfr.yml │ │ ├── radarr-quality-profile-uhd-remux-web-german.yml │ │ └── sqp │ │ ├── radarr-quality-profile-sqp-1-1080p.yml │ │ ├── radarr-quality-profile-sqp-1-2160p-4k-only-default.yml │ │ ├── radarr-quality-profile-sqp-1-2160p-4k-only-imax-e.yml │ │ ├── radarr-quality-profile-sqp-1-2160p-default.yml │ │ ├── radarr-quality-profile-sqp-1-2160p-imax-e.yml │ │ ├── radarr-quality-profile-sqp-1-web-1080p.yml │ │ ├── radarr-quality-profile-sqp-1-web-2160p-4k-only.yml │ │ ├── radarr-quality-profile-sqp-1-web-2160p.yml │ │ ├── radarr-quality-profile-sqp-2.yml │ │ ├── radarr-quality-profile-sqp-3.yml │ │ ├── radarr-quality-profile-sqp-4.yml │ │ └── radarr-quality-profile-sqp-5.yml └── templates │ ├── anime-radarr.yml │ ├── french-hd-bluray-web.yml │ ├── french-hd-remux-web.yml │ ├── french-uhd-bluray-web.yml │ ├── french-uhd-remux-web.yml │ ├── german-hd-bluray-web.yml │ ├── german-uhd-bluray-web.yml │ ├── german-uhd-remux-web.yml │ ├── hd-bluray-web.yml │ ├── remux-web-1080p.yml │ ├── remux-web-2160p.yml │ ├── sqp │ ├── sqp-1-1080p.yml │ ├── sqp-1-2160p.yml │ ├── sqp-1-web-1080p.yml │ ├── sqp-1-web-2160p.yml │ ├── sqp-2.yml │ ├── sqp-3.yml │ ├── sqp-4.yml │ └── sqp-5.yml │ └── uhd-bluray-web.yml ├── renovate.json5 ├── sonarr ├── includes │ ├── custom-formats │ │ ├── sonarr-v4-custom-formats-1080p-french-anime-multi.yml │ │ ├── sonarr-v4-custom-formats-1080p-french-anime-vostfr.yml │ │ ├── sonarr-v4-custom-formats-anime.yml │ │ ├── sonarr-v4-custom-formats-bluray-web-1080p-french-multi-vf.yml │ │ ├── sonarr-v4-custom-formats-bluray-web-1080p-french-multi-vo.yml │ │ ├── sonarr-v4-custom-formats-bluray-web-1080p-french-vostfr.yml │ │ ├── sonarr-v4-custom-formats-bluray-web-2160p-french-multi-vf.yml │ │ ├── sonarr-v4-custom-formats-bluray-web-2160p-french-multi-vo.yml │ │ ├── sonarr-v4-custom-formats-bluray-web-2160p-french-vostfr.yml │ │ ├── sonarr-v4-custom-formats-hd-bluray-web-german.yml │ │ ├── sonarr-v4-custom-formats-hd-remux-web-german.yml │ │ ├── sonarr-v4-custom-formats-uhd-bluray-web-german.yml │ │ ├── sonarr-v4-custom-formats-uhd-remux-web-german.yml │ │ ├── sonarr-v4-custom-formats-web-1080p.yml │ │ └── sonarr-v4-custom-formats-web-2160p.yml │ ├── quality-definitions │ │ ├── sonarr-quality-definition-anime.yml │ │ └── sonarr-quality-definition-series.yml │ └── quality-profiles │ │ ├── sonarr-v4-quality-profile-1080p-french-anime-multi.yml │ │ ├── sonarr-v4-quality-profile-1080p-french-anime-vostfr.yml │ │ ├── sonarr-v4-quality-profile-anime.yml │ │ ├── sonarr-v4-quality-profile-bluray-web-1080p-french-multi-vf.yml │ │ ├── sonarr-v4-quality-profile-bluray-web-1080p-french-multi-vo.yml │ │ ├── sonarr-v4-quality-profile-bluray-web-1080p-french-vostfr.yml │ │ ├── sonarr-v4-quality-profile-bluray-web-2160p-french-multi-vf.yml │ │ ├── sonarr-v4-quality-profile-bluray-web-2160p-french-multi-vo.yml │ │ ├── sonarr-v4-quality-profile-bluray-web-2160p-french-vostfr.yml │ │ ├── sonarr-v4-quality-profile-hd-bluray-web-german.yml │ │ ├── sonarr-v4-quality-profile-hd-remux-web-german.yml │ │ ├── sonarr-v4-quality-profile-uhd-bluray-web-german.yml │ │ ├── sonarr-v4-quality-profile-uhd-remux-web-german.yml │ │ ├── sonarr-v4-quality-profile-web-1080p-alternative.yml │ │ ├── sonarr-v4-quality-profile-web-1080p.yml │ │ ├── sonarr-v4-quality-profile-web-2160p-alternative.yml │ │ └── sonarr-v4-quality-profile-web-2160p.yml └── templates │ ├── anime-sonarr-v4.yml │ ├── french-anime-1080p-v4.yml │ ├── french-bluray-web-1080p-v4.yml │ ├── french-bluray-web-2160p-v4.yml │ ├── german-hd-bluray-web-v4.yml │ ├── german-hd-remux-web-v4.yml │ ├── german-uhd-bluray-web-v4.yml │ ├── german-uhd-remux-web-v4.yml │ ├── web-1080p-v4.yml │ └── web-2160p-v4.yml └── templates.json /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/workflows/check-dates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/.github/workflows/check-dates.yml -------------------------------------------------------------------------------- /.github/workflows/check-paths.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/.github/workflows/check-paths.yml -------------------------------------------------------------------------------- /.github/workflows/check-trash-ids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/.github/workflows/check-trash-ids.yml -------------------------------------------------------------------------------- /.github/workflows/notify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/.github/workflows/notify.yml -------------------------------------------------------------------------------- /.github/workflows/renovate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/.github/workflows/renovate.yaml -------------------------------------------------------------------------------- /.github/workflows/yaml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/.github/workflows/yaml-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.env 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/.yamllint -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/README.md -------------------------------------------------------------------------------- /ci/CheckInvalidDates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/ci/CheckInvalidDates.ps1 -------------------------------------------------------------------------------- /ci/CheckInvalidTemplatePaths.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/ci/CheckInvalidTemplatePaths.ps1 -------------------------------------------------------------------------------- /ci/CheckInvalidTrashIds.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/ci/CheckInvalidTrashIds.ps1 -------------------------------------------------------------------------------- /includes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/includes.json -------------------------------------------------------------------------------- /radarr/includes/custom-formats/radarr-custom-formats-anime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/radarr-custom-formats-anime.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/radarr-custom-formats-hd-bluray-web-french-multi-vf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/radarr-custom-formats-hd-bluray-web-french-multi-vf.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/radarr-custom-formats-hd-bluray-web-french-multi-vo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/radarr-custom-formats-hd-bluray-web-french-multi-vo.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/radarr-custom-formats-hd-bluray-web-french-vostfr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/radarr-custom-formats-hd-bluray-web-french-vostfr.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/radarr-custom-formats-hd-bluray-web-german.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/radarr-custom-formats-hd-bluray-web-german.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/radarr-custom-formats-hd-bluray-web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/radarr-custom-formats-hd-bluray-web.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/radarr-custom-formats-hd-remux-web-french-multi-vf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/radarr-custom-formats-hd-remux-web-french-multi-vf.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/radarr-custom-formats-hd-remux-web-french-multi-vo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/radarr-custom-formats-hd-remux-web-french-multi-vo.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/radarr-custom-formats-hd-remux-web-french-vostfr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/radarr-custom-formats-hd-remux-web-french-vostfr.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/radarr-custom-formats-remux-web-1080p.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/radarr-custom-formats-remux-web-1080p.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/radarr-custom-formats-remux-web-2160p.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/radarr-custom-formats-remux-web-2160p.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/radarr-custom-formats-uhd-bluray-web-french-multi-vf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/radarr-custom-formats-uhd-bluray-web-french-multi-vf.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/radarr-custom-formats-uhd-bluray-web-french-multi-vo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/radarr-custom-formats-uhd-bluray-web-french-multi-vo.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/radarr-custom-formats-uhd-bluray-web-french-vostfr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/radarr-custom-formats-uhd-bluray-web-french-vostfr.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/radarr-custom-formats-uhd-bluray-web-german.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/radarr-custom-formats-uhd-bluray-web-german.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/radarr-custom-formats-uhd-bluray-web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/radarr-custom-formats-uhd-bluray-web.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/radarr-custom-formats-uhd-remux-web-french-multi-vf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/radarr-custom-formats-uhd-remux-web-french-multi-vf.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/radarr-custom-formats-uhd-remux-web-french-multi-vo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/radarr-custom-formats-uhd-remux-web-french-multi-vo.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/radarr-custom-formats-uhd-remux-web-french-vostfr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/radarr-custom-formats-uhd-remux-web-french-vostfr.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/radarr-custom-formats-uhd-remux-web-german.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/radarr-custom-formats-uhd-remux-web-german.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/sqp/radarr-custom-formats-sqp-1-1080p.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/sqp/radarr-custom-formats-sqp-1-1080p.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/sqp/radarr-custom-formats-sqp-1-2160p.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/sqp/radarr-custom-formats-sqp-1-2160p.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/sqp/radarr-custom-formats-sqp-1-web-1080p.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/sqp/radarr-custom-formats-sqp-1-web-1080p.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/sqp/radarr-custom-formats-sqp-1-web-2160p.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/sqp/radarr-custom-formats-sqp-1-web-2160p.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/sqp/radarr-custom-formats-sqp-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/sqp/radarr-custom-formats-sqp-2.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/sqp/radarr-custom-formats-sqp-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/sqp/radarr-custom-formats-sqp-3.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/sqp/radarr-custom-formats-sqp-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/sqp/radarr-custom-formats-sqp-4.yml -------------------------------------------------------------------------------- /radarr/includes/custom-formats/sqp/radarr-custom-formats-sqp-5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/custom-formats/sqp/radarr-custom-formats-sqp-5.yml -------------------------------------------------------------------------------- /radarr/includes/quality-definitions/radarr-quality-definition-anime.yml: -------------------------------------------------------------------------------- 1 | quality_definition: 2 | type: anime 3 | -------------------------------------------------------------------------------- /radarr/includes/quality-definitions/radarr-quality-definition-movie.yml: -------------------------------------------------------------------------------- 1 | quality_definition: 2 | type: movie 3 | -------------------------------------------------------------------------------- /radarr/includes/quality-definitions/sqp/radarr-quality-definition-sqp-streaming.yml: -------------------------------------------------------------------------------- 1 | quality_definition: 2 | type: sqp-streaming 3 | -------------------------------------------------------------------------------- /radarr/includes/quality-definitions/sqp/radarr-quality-definition-sqp-uhd.yml: -------------------------------------------------------------------------------- 1 | quality_definition: 2 | type: sqp-uhd 3 | -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/radarr-quality-profile-anime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/radarr-quality-profile-anime.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/radarr-quality-profile-hd-bluray-web-french-multi-vf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/radarr-quality-profile-hd-bluray-web-french-multi-vf.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/radarr-quality-profile-hd-bluray-web-french-multi-vo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/radarr-quality-profile-hd-bluray-web-french-multi-vo.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/radarr-quality-profile-hd-bluray-web-french-vostfr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/radarr-quality-profile-hd-bluray-web-french-vostfr.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/radarr-quality-profile-hd-bluray-web-german.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/radarr-quality-profile-hd-bluray-web-german.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/radarr-quality-profile-hd-bluray-web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/radarr-quality-profile-hd-bluray-web.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/radarr-quality-profile-hd-remux-web-french-multi-vf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/radarr-quality-profile-hd-remux-web-french-multi-vf.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/radarr-quality-profile-hd-remux-web-french-multi-vo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/radarr-quality-profile-hd-remux-web-french-multi-vo.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/radarr-quality-profile-hd-remux-web-french-vostfr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/radarr-quality-profile-hd-remux-web-french-vostfr.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/radarr-quality-profile-remux-web-1080p.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/radarr-quality-profile-remux-web-1080p.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/radarr-quality-profile-remux-web-2160p.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/radarr-quality-profile-remux-web-2160p.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/radarr-quality-profile-uhd-bluray-web-french-multi-vf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/radarr-quality-profile-uhd-bluray-web-french-multi-vf.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/radarr-quality-profile-uhd-bluray-web-french-multi-vo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/radarr-quality-profile-uhd-bluray-web-french-multi-vo.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/radarr-quality-profile-uhd-bluray-web-french-vostfr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/radarr-quality-profile-uhd-bluray-web-french-vostfr.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/radarr-quality-profile-uhd-bluray-web-german.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/radarr-quality-profile-uhd-bluray-web-german.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/radarr-quality-profile-uhd-bluray-web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/radarr-quality-profile-uhd-bluray-web.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/radarr-quality-profile-uhd-remux-web-french-multi-vf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/radarr-quality-profile-uhd-remux-web-french-multi-vf.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/radarr-quality-profile-uhd-remux-web-french-multi-vo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/radarr-quality-profile-uhd-remux-web-french-multi-vo.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/radarr-quality-profile-uhd-remux-web-french-vostfr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/radarr-quality-profile-uhd-remux-web-french-vostfr.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/radarr-quality-profile-uhd-remux-web-german.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/radarr-quality-profile-uhd-remux-web-german.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/sqp/radarr-quality-profile-sqp-1-1080p.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/sqp/radarr-quality-profile-sqp-1-1080p.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/sqp/radarr-quality-profile-sqp-1-2160p-4k-only-default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/sqp/radarr-quality-profile-sqp-1-2160p-4k-only-default.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/sqp/radarr-quality-profile-sqp-1-2160p-4k-only-imax-e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/sqp/radarr-quality-profile-sqp-1-2160p-4k-only-imax-e.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/sqp/radarr-quality-profile-sqp-1-2160p-default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/sqp/radarr-quality-profile-sqp-1-2160p-default.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/sqp/radarr-quality-profile-sqp-1-2160p-imax-e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/sqp/radarr-quality-profile-sqp-1-2160p-imax-e.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/sqp/radarr-quality-profile-sqp-1-web-1080p.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/sqp/radarr-quality-profile-sqp-1-web-1080p.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/sqp/radarr-quality-profile-sqp-1-web-2160p-4k-only.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/sqp/radarr-quality-profile-sqp-1-web-2160p-4k-only.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/sqp/radarr-quality-profile-sqp-1-web-2160p.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/sqp/radarr-quality-profile-sqp-1-web-2160p.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/sqp/radarr-quality-profile-sqp-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/sqp/radarr-quality-profile-sqp-2.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/sqp/radarr-quality-profile-sqp-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/sqp/radarr-quality-profile-sqp-3.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/sqp/radarr-quality-profile-sqp-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/sqp/radarr-quality-profile-sqp-4.yml -------------------------------------------------------------------------------- /radarr/includes/quality-profiles/sqp/radarr-quality-profile-sqp-5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/includes/quality-profiles/sqp/radarr-quality-profile-sqp-5.yml -------------------------------------------------------------------------------- /radarr/templates/anime-radarr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/templates/anime-radarr.yml -------------------------------------------------------------------------------- /radarr/templates/french-hd-bluray-web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/templates/french-hd-bluray-web.yml -------------------------------------------------------------------------------- /radarr/templates/french-hd-remux-web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/templates/french-hd-remux-web.yml -------------------------------------------------------------------------------- /radarr/templates/french-uhd-bluray-web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/templates/french-uhd-bluray-web.yml -------------------------------------------------------------------------------- /radarr/templates/french-uhd-remux-web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/templates/french-uhd-remux-web.yml -------------------------------------------------------------------------------- /radarr/templates/german-hd-bluray-web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/templates/german-hd-bluray-web.yml -------------------------------------------------------------------------------- /radarr/templates/german-uhd-bluray-web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/templates/german-uhd-bluray-web.yml -------------------------------------------------------------------------------- /radarr/templates/german-uhd-remux-web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/templates/german-uhd-remux-web.yml -------------------------------------------------------------------------------- /radarr/templates/hd-bluray-web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/templates/hd-bluray-web.yml -------------------------------------------------------------------------------- /radarr/templates/remux-web-1080p.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/templates/remux-web-1080p.yml -------------------------------------------------------------------------------- /radarr/templates/remux-web-2160p.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/templates/remux-web-2160p.yml -------------------------------------------------------------------------------- /radarr/templates/sqp/sqp-1-1080p.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/templates/sqp/sqp-1-1080p.yml -------------------------------------------------------------------------------- /radarr/templates/sqp/sqp-1-2160p.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/templates/sqp/sqp-1-2160p.yml -------------------------------------------------------------------------------- /radarr/templates/sqp/sqp-1-web-1080p.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/templates/sqp/sqp-1-web-1080p.yml -------------------------------------------------------------------------------- /radarr/templates/sqp/sqp-1-web-2160p.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/templates/sqp/sqp-1-web-2160p.yml -------------------------------------------------------------------------------- /radarr/templates/sqp/sqp-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/templates/sqp/sqp-2.yml -------------------------------------------------------------------------------- /radarr/templates/sqp/sqp-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/templates/sqp/sqp-3.yml -------------------------------------------------------------------------------- /radarr/templates/sqp/sqp-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/templates/sqp/sqp-4.yml -------------------------------------------------------------------------------- /radarr/templates/sqp/sqp-5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/templates/sqp/sqp-5.yml -------------------------------------------------------------------------------- /radarr/templates/uhd-bluray-web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/radarr/templates/uhd-bluray-web.yml -------------------------------------------------------------------------------- /renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/renovate.json5 -------------------------------------------------------------------------------- /sonarr/includes/custom-formats/sonarr-v4-custom-formats-1080p-french-anime-multi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/custom-formats/sonarr-v4-custom-formats-1080p-french-anime-multi.yml -------------------------------------------------------------------------------- /sonarr/includes/custom-formats/sonarr-v4-custom-formats-1080p-french-anime-vostfr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/custom-formats/sonarr-v4-custom-formats-1080p-french-anime-vostfr.yml -------------------------------------------------------------------------------- /sonarr/includes/custom-formats/sonarr-v4-custom-formats-anime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/custom-formats/sonarr-v4-custom-formats-anime.yml -------------------------------------------------------------------------------- /sonarr/includes/custom-formats/sonarr-v4-custom-formats-bluray-web-1080p-french-multi-vf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/custom-formats/sonarr-v4-custom-formats-bluray-web-1080p-french-multi-vf.yml -------------------------------------------------------------------------------- /sonarr/includes/custom-formats/sonarr-v4-custom-formats-bluray-web-1080p-french-multi-vo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/custom-formats/sonarr-v4-custom-formats-bluray-web-1080p-french-multi-vo.yml -------------------------------------------------------------------------------- /sonarr/includes/custom-formats/sonarr-v4-custom-formats-bluray-web-1080p-french-vostfr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/custom-formats/sonarr-v4-custom-formats-bluray-web-1080p-french-vostfr.yml -------------------------------------------------------------------------------- /sonarr/includes/custom-formats/sonarr-v4-custom-formats-bluray-web-2160p-french-multi-vf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/custom-formats/sonarr-v4-custom-formats-bluray-web-2160p-french-multi-vf.yml -------------------------------------------------------------------------------- /sonarr/includes/custom-formats/sonarr-v4-custom-formats-bluray-web-2160p-french-multi-vo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/custom-formats/sonarr-v4-custom-formats-bluray-web-2160p-french-multi-vo.yml -------------------------------------------------------------------------------- /sonarr/includes/custom-formats/sonarr-v4-custom-formats-bluray-web-2160p-french-vostfr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/custom-formats/sonarr-v4-custom-formats-bluray-web-2160p-french-vostfr.yml -------------------------------------------------------------------------------- /sonarr/includes/custom-formats/sonarr-v4-custom-formats-hd-bluray-web-german.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/custom-formats/sonarr-v4-custom-formats-hd-bluray-web-german.yml -------------------------------------------------------------------------------- /sonarr/includes/custom-formats/sonarr-v4-custom-formats-hd-remux-web-german.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/custom-formats/sonarr-v4-custom-formats-hd-remux-web-german.yml -------------------------------------------------------------------------------- /sonarr/includes/custom-formats/sonarr-v4-custom-formats-uhd-bluray-web-german.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/custom-formats/sonarr-v4-custom-formats-uhd-bluray-web-german.yml -------------------------------------------------------------------------------- /sonarr/includes/custom-formats/sonarr-v4-custom-formats-uhd-remux-web-german.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/custom-formats/sonarr-v4-custom-formats-uhd-remux-web-german.yml -------------------------------------------------------------------------------- /sonarr/includes/custom-formats/sonarr-v4-custom-formats-web-1080p.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/custom-formats/sonarr-v4-custom-formats-web-1080p.yml -------------------------------------------------------------------------------- /sonarr/includes/custom-formats/sonarr-v4-custom-formats-web-2160p.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/custom-formats/sonarr-v4-custom-formats-web-2160p.yml -------------------------------------------------------------------------------- /sonarr/includes/quality-definitions/sonarr-quality-definition-anime.yml: -------------------------------------------------------------------------------- 1 | quality_definition: 2 | type: anime 3 | -------------------------------------------------------------------------------- /sonarr/includes/quality-definitions/sonarr-quality-definition-series.yml: -------------------------------------------------------------------------------- 1 | quality_definition: 2 | type: series 3 | -------------------------------------------------------------------------------- /sonarr/includes/quality-profiles/sonarr-v4-quality-profile-1080p-french-anime-multi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/quality-profiles/sonarr-v4-quality-profile-1080p-french-anime-multi.yml -------------------------------------------------------------------------------- /sonarr/includes/quality-profiles/sonarr-v4-quality-profile-1080p-french-anime-vostfr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/quality-profiles/sonarr-v4-quality-profile-1080p-french-anime-vostfr.yml -------------------------------------------------------------------------------- /sonarr/includes/quality-profiles/sonarr-v4-quality-profile-anime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/quality-profiles/sonarr-v4-quality-profile-anime.yml -------------------------------------------------------------------------------- /sonarr/includes/quality-profiles/sonarr-v4-quality-profile-bluray-web-1080p-french-multi-vf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/quality-profiles/sonarr-v4-quality-profile-bluray-web-1080p-french-multi-vf.yml -------------------------------------------------------------------------------- /sonarr/includes/quality-profiles/sonarr-v4-quality-profile-bluray-web-1080p-french-multi-vo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/quality-profiles/sonarr-v4-quality-profile-bluray-web-1080p-french-multi-vo.yml -------------------------------------------------------------------------------- /sonarr/includes/quality-profiles/sonarr-v4-quality-profile-bluray-web-1080p-french-vostfr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/quality-profiles/sonarr-v4-quality-profile-bluray-web-1080p-french-vostfr.yml -------------------------------------------------------------------------------- /sonarr/includes/quality-profiles/sonarr-v4-quality-profile-bluray-web-2160p-french-multi-vf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/quality-profiles/sonarr-v4-quality-profile-bluray-web-2160p-french-multi-vf.yml -------------------------------------------------------------------------------- /sonarr/includes/quality-profiles/sonarr-v4-quality-profile-bluray-web-2160p-french-multi-vo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/quality-profiles/sonarr-v4-quality-profile-bluray-web-2160p-french-multi-vo.yml -------------------------------------------------------------------------------- /sonarr/includes/quality-profiles/sonarr-v4-quality-profile-bluray-web-2160p-french-vostfr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/quality-profiles/sonarr-v4-quality-profile-bluray-web-2160p-french-vostfr.yml -------------------------------------------------------------------------------- /sonarr/includes/quality-profiles/sonarr-v4-quality-profile-hd-bluray-web-german.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/quality-profiles/sonarr-v4-quality-profile-hd-bluray-web-german.yml -------------------------------------------------------------------------------- /sonarr/includes/quality-profiles/sonarr-v4-quality-profile-hd-remux-web-german.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/quality-profiles/sonarr-v4-quality-profile-hd-remux-web-german.yml -------------------------------------------------------------------------------- /sonarr/includes/quality-profiles/sonarr-v4-quality-profile-uhd-bluray-web-german.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/quality-profiles/sonarr-v4-quality-profile-uhd-bluray-web-german.yml -------------------------------------------------------------------------------- /sonarr/includes/quality-profiles/sonarr-v4-quality-profile-uhd-remux-web-german.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/quality-profiles/sonarr-v4-quality-profile-uhd-remux-web-german.yml -------------------------------------------------------------------------------- /sonarr/includes/quality-profiles/sonarr-v4-quality-profile-web-1080p-alternative.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/quality-profiles/sonarr-v4-quality-profile-web-1080p-alternative.yml -------------------------------------------------------------------------------- /sonarr/includes/quality-profiles/sonarr-v4-quality-profile-web-1080p.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/quality-profiles/sonarr-v4-quality-profile-web-1080p.yml -------------------------------------------------------------------------------- /sonarr/includes/quality-profiles/sonarr-v4-quality-profile-web-2160p-alternative.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/quality-profiles/sonarr-v4-quality-profile-web-2160p-alternative.yml -------------------------------------------------------------------------------- /sonarr/includes/quality-profiles/sonarr-v4-quality-profile-web-2160p.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/includes/quality-profiles/sonarr-v4-quality-profile-web-2160p.yml -------------------------------------------------------------------------------- /sonarr/templates/anime-sonarr-v4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/templates/anime-sonarr-v4.yml -------------------------------------------------------------------------------- /sonarr/templates/french-anime-1080p-v4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/templates/french-anime-1080p-v4.yml -------------------------------------------------------------------------------- /sonarr/templates/french-bluray-web-1080p-v4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/templates/french-bluray-web-1080p-v4.yml -------------------------------------------------------------------------------- /sonarr/templates/french-bluray-web-2160p-v4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/templates/french-bluray-web-2160p-v4.yml -------------------------------------------------------------------------------- /sonarr/templates/german-hd-bluray-web-v4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/templates/german-hd-bluray-web-v4.yml -------------------------------------------------------------------------------- /sonarr/templates/german-hd-remux-web-v4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/templates/german-hd-remux-web-v4.yml -------------------------------------------------------------------------------- /sonarr/templates/german-uhd-bluray-web-v4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/templates/german-uhd-bluray-web-v4.yml -------------------------------------------------------------------------------- /sonarr/templates/german-uhd-remux-web-v4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/templates/german-uhd-remux-web-v4.yml -------------------------------------------------------------------------------- /sonarr/templates/web-1080p-v4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/templates/web-1080p-v4.yml -------------------------------------------------------------------------------- /sonarr/templates/web-2160p-v4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/sonarr/templates/web-2160p-v4.yml -------------------------------------------------------------------------------- /templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recyclarr/config-templates/HEAD/templates.json --------------------------------------------------------------------------------