diff --git a/docs/docs/configuration/config-file.md b/docs/docs/configuration/config-file.md index 2e50795..4d944f1 100644 --- a/docs/docs/configuration/config-file.md +++ b/docs/docs/configuration/config-file.md @@ -188,10 +188,13 @@ radarr: assign_scores_to: - name: HD Bluray + WEB score: 0 + quality_profiles: - name: HD Bluray + WEB upgrade: min_format_score: 200 + # Support added with 1.7.0. Not support in all *arr applications. Check the application if it is supported. + language: Any # The name must match available names in *arr # experimental support: check https://configarr.rayak.de/docs/configuration/experimental-support whisparr: {} diff --git a/docs/docs/intro.md b/docs/docs/intro.md index 54f8815..5a25eab 100644 --- a/docs/docs/intro.md +++ b/docs/docs/intro.md @@ -74,6 +74,13 @@ Ready to streamline your media server configuration? Let's get started with the - [Notifiarr](https://notifiarr.com/) - [Profilarr](https://github.com/Dictionarry-Hub/profilarr) +## Changes / Changelog + +You can find the changes and new features in Github. See: + +- [Changelog](https://github.com/raydak-labs/configarr/blob/main/CHANGELOG.md) +- or [Github Releases](https://github.com/raydak-labs/configarr/releases) + :::tip New to media server management? Check out our [concepts guide](./concepts.md) to understand the basics of custom formats and quality profiles. ::: diff --git a/docs/docs/profiles/index.mdx b/docs/docs/profiles/index.mdx index fa42587..6b44745 100644 --- a/docs/docs/profiles/index.mdx +++ b/docs/docs/profiles/index.mdx @@ -117,3 +117,21 @@ Thanks for providing prepared configs from discord user `zombobrain`. {SonarrGermanCustomConfig} + +## Modifications / Adjustments + +- Adjusting the `language` of a QualityProfile. + TRaSH-Guide profiles has added support for the `language` in their provided JSON files. + This will be used if available. + But you can also adjust the value also in the config file. + + ```yaml title="config.yml" + radarr: + instance1: + # ... + + quality_profiles: + - name: HD Bluray + WEB + # Support added with 1.7.0. Not support in all *arr applications. Check the application if it is supported. + language: Any # The name must match available names in *arr + ```