From bd7587e22aec9acb60b64a045dfea3aa0d0fbbaa Mon Sep 17 00:00:00 2001 From: Kiran Shila Date: Thu, 16 Jun 2022 13:23:45 -0700 Subject: [PATCH] Add season-folders in config chart and example edn --- config.edn | 1 + docs/configuration.md | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/config.edn b/config.edn index f1ae148..8a56513 100644 --- a/config.edn +++ b/config.edn @@ -12,6 +12,7 @@ ; :radarr/rootfolder "" ; :sonarrr/language-profile "" ; :sonarr/rootfolder "" + ; :sonarr/season-folders true ; :discord/max-results 10 ; :overseerr/default-id 1 ; :log-level :trace diff --git a/docs/configuration.md b/docs/configuration.md index 39f212f..ed9faa9 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -38,13 +38,14 @@ web interface to Overseerr if you need more features. ## Optional Settings | Environment Variable (Docker) | Config File Keyword | Type | Default Value | Description | -| ------------------------------ | ------------------------------ | ------- | ------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | +|--------------------------------|--------------------------------|---------|---------------|---------------------------------------------------------------------------------------------------------------------------------------------| | `DISCORD__MAX_RESULTS` | `:discord/max-results` | Integer | `25` | Sets the maximum size of the search results selection | | `DISCORD__REQUESTED_MSG_STYLE` | `:discord/requested-msg-style` | Keyword | `:plain` | Sets the style of the request alert message. One of `:plain :embed :none` | | `SONARR__QUALITY_PROFILE` | `:sonarr/quality-profile` | String | N/A | The name of the quality profile to use by default for Sonarr | | `RADARR__QUALITY_PROFILE` | `:radarr/quality-profile` | String | N/A | The name of the quality profile to use by default for Radarr | | `SONARR__ROOTFOLDER` | `:sonarr/rootfolder` | String | N/A | The root folder to use by default for Sonarr | | `RADARR__ROOTFOLDER` | `:radarr/rootfolder` | String | N/A | The root folder to use by default for Radarr | +| `SONARR__SEASON_FOLDERS` | `:sonarr/season-folders` | Boolean | `false` | Sets whether you're using season folders in Sonarr | | `SONARR__LANGUAGE_PROFILE` | `:sonarr/language-profile` | String | N/A | The name of the language profile to use by default for Sonarr | | `OVERSEERR__DEFAULT_ID` | `:overseerr/default-id` | Integer | N/A | The Overseerr user id to use by default if there is no associated discord account for the requester | | `PARTIAL_SEASONS` | `:partial-seasons` | Boolean | `true` | Sets whether users can request partial seasons. |