From 85039f78d920990c41ef64cb9d3f2c77701f5ee4 Mon Sep 17 00:00:00 2001 From: Nicolas Meienberger <47644445+meienberger@users.noreply.github.com> Date: Mon, 8 May 2023 16:19:38 +0200 Subject: [PATCH] chore: small updates to categories and fields (#485) * chore(chatpad, chatgpt): change category to ai * chore(dailytxt): use boolean value for env variable * chore(deluge): change download folder following trash's guide * chore(deluge): change download folder following trash's guide --------- Co-authored-by: DrMxrcy <58747968+DrMxrcy@users.noreply.github.com> --- apps/chatgpt-ui/config.json | 4 ++-- apps/chatpad/config.json | 6 ++++-- apps/dailytxt/config.json | 11 +++++++---- apps/deluge/docker-compose.yml | 2 +- apps/deluge/metadata/description.md | 2 +- 5 files changed, 15 insertions(+), 10 deletions(-) diff --git a/apps/chatgpt-ui/config.json b/apps/chatgpt-ui/config.json index 0351b13e..1bf67c23 100644 --- a/apps/chatgpt-ui/config.json +++ b/apps/chatgpt-ui/config.json @@ -5,10 +5,10 @@ "available": true, "exposable": true, "id": "chatgpt-ui", - "tipi_version": 6, + "tipi_version": 7, "version": "2.5.4", "categories": [ - "utilities" + "ai" ], "description": "A ChatGPT web client that supports multiple users, multiple languages, and multiple database connections for persistent data storage", "short_desc": "A ChatGPT web client that supports multiple users, multiple languages, and multiple database connections for persistent data storage", diff --git a/apps/chatpad/config.json b/apps/chatpad/config.json index 21416e21..1f46fbdb 100644 --- a/apps/chatpad/config.json +++ b/apps/chatpad/config.json @@ -5,9 +5,11 @@ "exposable": true, "port": 8179, "id": "chatpad", - "tipi_version": 1, + "tipi_version": 2, "version": "latest", - "categories": ["utilities"], + "categories": [ + "ai" + ], "description": "Not just another ChatGPT user-interface!", "short_desc": "Not just another ChatGPT user-interface!", "author": "Andrei Canta", diff --git a/apps/dailytxt/config.json b/apps/dailytxt/config.json index e43ecb4c..2c04ade1 100644 --- a/apps/dailytxt/config.json +++ b/apps/dailytxt/config.json @@ -5,9 +5,11 @@ "available": true, "exposable": true, "id": "dailytxt", - "tipi_version": 1, + "tipi_version": 2, "version": "1.0.12", - "categories": ["utilities"], + "categories": [ + "utilities" + ], "description": "DailyTxT is an encrypted Diary Web-App to write down your stories of the day and to find them again easily.", "short_desc": "Encrypted Diary Web-App", "author": "PhiTux", @@ -20,11 +22,12 @@ "env_variable": "DAILYTXT_SECRET_KEY" }, { - "type": "text", + "type": "boolean", "label": "Allow User Registrastion", - "hint": "Set it to false to disallow registration of new users.", + "hint": "Set it to true intially to create the first user.", "placeholder": "true", "required": true, + "default": true, "env_variable": "DAILYTXT_ALLOW_REGISTRATION" } ] diff --git a/apps/deluge/docker-compose.yml b/apps/deluge/docker-compose.yml index ff89e62f..0c9bef55 100644 --- a/apps/deluge/docker-compose.yml +++ b/apps/deluge/docker-compose.yml @@ -10,7 +10,7 @@ services: - DELUGE_LOGLEVEL=error #optional volumes: - ${APP_DATA_DIR}/data/deluge/config:/config - - ${ROOT_FOLDER_HOST}/media/torrents:/downloads + - ${ROOT_FOLDER_HOST}/media/torrents:/media/torrents ports: - ${APP_PORT}:8112 - 6881:6881 diff --git a/apps/deluge/metadata/description.md b/apps/deluge/metadata/description.md index c5f2e442..1c7236a5 100644 --- a/apps/deluge/metadata/description.md +++ b/apps/deluge/metadata/description.md @@ -10,7 +10,7 @@ Password: deluge | Root Folder | Container Folder | |----------------------------------------------|------------------| | /runtipi/app-data/deluge/data/deluge/config | /config | -| /runtipi/media/torrents | /downloads | +| /runtipi/media/torrents | /media/torrents | ---