diff --git a/FAQ.md b/FAQ.md index a5f5456f..52b725ee 100644 --- a/FAQ.md +++ b/FAQ.md @@ -34,7 +34,7 @@ or the `environment:` section in `compose.yaml` file. | YTP_PIP_IGNORE_UPDATES | Do not update the custom pip packages | `false` | | YTP_BASIC_MODE | Whether to run WebUI in basic mode | `false` | | YTP_PICTURES_BACKENDS | A comma separated list of pictures urls to use | `empty string` | -| YTP_BROWSER_ENABLED | Whether to enable the file browser | `false` | +| YTP_BROWSER_ENABLED | Whether to enable the file browser | `true` | | YTP_BROWSER_CONTROL_ENABLED | Whether to enable the file browser actions | `false` | | YTP_YTDLP_AUTO_UPDATE | Whether to enable the auto update for yt-dlp | `true` | | YTP_YTDLP_DEBUG | Whether to turn debug logging for the internal `yt-dlp` package | `false` | diff --git a/app/library/config.py b/app/library/config.py index d70ca70c..a45fb16c 100644 --- a/app/library/config.py +++ b/app/library/config.py @@ -164,7 +164,7 @@ class Config: console_enabled: bool = False "Enable direct access to yt-dlp console." - browser_enabled: bool = False + browser_enabled: bool = True "Enable file browser access." browser_control_enabled: bool = False diff --git a/ui/app/pages/index.vue b/ui/app/pages/index.vue index 5b796796..ffd3042d 100644 --- a/ui/app/pages/index.vue +++ b/ui/app/pages/index.vue @@ -86,6 +86,12 @@ The Basic mode (which limited the interface to the new download form) is being removed. Everything except what is available behind configurable flag will become part of the standard interface. +
YTP_BROWSER_ENABLED will be removed, We will keep the
+ YTP_BROWSER_CONTROL_ENABLED to control whether you want to enable the file management
+ features or not. it will default to false.
+