From 3cc3b2ff86f2e3fa12cfcd20938efde6f11e07e0 Mon Sep 17 00:00:00 2001 From: acknologia <64101826+acknologia@users.noreply.github.com> Date: Sat, 28 Mar 2026 03:33:34 -0400 Subject: [PATCH 1/7] qui install script --- .../apps/install-scripts/curated/index.md | 1 + docs/public/install-scripts/qui.json | 44 +++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 docs/public/install-scripts/qui.json diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index 66a848cb..39391ae3 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -16,6 +16,7 @@ | `plex` | [plex.json](/install-scripts/plex.json) | 3.4 KB | 2025-12-12 | | `prowlarr` | [prowlarr.json](/install-scripts/prowlarr.json) | 766 B | 2025-12-04 | | `qbittorrent` | [qbittorrent.json](/install-scripts/qbittorrent.json) | 1.0 KB | 2025-12-04 | +| `qui` | [qui.json](/install-scripts/qui.json) | 821 B | 2026-03-28 | | `radarr` | [radarr.json](/install-scripts/radarr.json) | 1.2 KB | 2025-12-04 | | `scrutiny` | [scrutiny.json](/install-scripts/scrutiny.json) | 1.3 KB | 2026-03-15 | | `sonarr` | [sonarr.json](/install-scripts/sonarr.json) | 1.2 KB | 2025-12-04 | diff --git a/docs/public/install-scripts/qui.json b/docs/public/install-scripts/qui.json new file mode 100644 index 00000000..d247609a --- /dev/null +++ b/docs/public/install-scripts/qui.json @@ -0,0 +1,44 @@ +{ + "version": 3, + "script": { + "version": "1.0.0", + "changeLog": "Initial Script" + }, + "requirements": { + "locations": [ + "ApplicationsPerformance" + ], + "specifications": [ + "2CORE", + "256MB" + ], + "permissions": [ + "READ_WRITE_LOCATIONS" + ], + "ports": [30318] + }, + "ensure_directories_exists": [ + { + "path": "$LOCATION(ApplicationsPerformance)", + "network_share": true + }, + "$LOCATION(ApplicationsPerformance)/qui/config" + ], + "app_values": { + "storage": { + "config": "$HOST_PATH($LOCATION(ApplicationsPerformance)/qui/config)" + } + }, + "network": { + "web_port": { + "bind_mode": "published", + "port_number": 30318 + } + }, + "resources": { + "limits": { + "cpus": 2, + "memory": "$MEMORY(5%, 1024)" + } + } +} \ No newline at end of file From 3958835774a4526efe022de0511ea1725011bfc9 Mon Sep 17 00:00:00 2001 From: acknologia <64101826+acknologia@users.noreply.github.com> Date: Fri, 1 May 2026 02:15:36 -0400 Subject: [PATCH 2/7] mkvtoolnix install script --- .../apps/install-scripts/curated/index.md | 1 + docs/public/install-scripts/mkvtoolnix.json | 100 ++++++++++++++++++ 2 files changed, 101 insertions(+) create mode 100644 docs/public/install-scripts/mkvtoolnix.json diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index 66a848cb..2f755fa3 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -11,6 +11,7 @@ | `immich` | [immich.json](/install-scripts/immich.json) | 1.7 KB | 2026-03-15 | | `jellyfin` | [jellyfin.json](/install-scripts/jellyfin.json) | 2.2 KB | 2026-03-15 | | `lidarr` | [lidarr.json](/install-scripts/lidarr.json) | 1.4 KB | 2026-03-15 | +| `mkvtoolnix` | [mkvtoolnix.json](/install-scripts/mkvtoolnix.json) | 2.1 KB | 2026-05-01 | | `nextcloud` | [nextcloud.json](/install-scripts/nextcloud.json) | 3.5 KB | 2026-03-15 | | `peanut` | [peanut.json](/install-scripts/peanut.json) | 834 B | 2026-03-15 | | `plex` | [plex.json](/install-scripts/plex.json) | 3.4 KB | 2025-12-12 | diff --git a/docs/public/install-scripts/mkvtoolnix.json b/docs/public/install-scripts/mkvtoolnix.json new file mode 100644 index 00000000..8dc7ecd4 --- /dev/null +++ b/docs/public/install-scripts/mkvtoolnix.json @@ -0,0 +1,100 @@ +{ + "version": 3, + "script": { + "version": "1.0.0", + "changeLog": "Initial Install script" + }, + "installation_questions": [ + { + "question": "Enable Dark mode", + "type": "select", + "key": "DARK_MODE", + "required": true, + "options": [ + { + "text": "Yes", + "value": "1" + }, + { + "text": "No", + "value": "0" + } + ] + } + ], + "requirements": { + "locations": [ + "ApplicationsPerformance", + "Videos", + "Documents", + "Media", + "Shows", + "Movies" + ], + "specifications": [ + "2CORE", "1024MB"], + "permissions": [ + "READ_WRITE_LOCATIONS" + ], + "ports": [30309] + }, + "ensure_directories_exists": [ + { + "path": "$LOCATION(ApplicationsPerformance)", + "network_share": true + }, + { + "path": "$LOCATION(Media)", + "network_share": true + }, + { + "path": "$LOCATION(Shows)", + "network_share": true + }, + { + "path": "$LOCATION(Movies)", + "network_share": true + }, + { + "path": "$LOCATION(Documents)", + "network_share": true + }, + { + "path": "$LOCATION(Videos)", + "network_share": true + }, + "$LOCATION(ApplicationsPerformance)/mkvtoolnix/config", + "$LOCATION(Documents)/mkvtoolnix-storage" + ], + "app_values": { + "mkvtoolnix": { + "additional_envs": [ + { + "name": "DARK_MODE", + "value": "$QUESTION(DARK_MODE)" + } + ] + }, + "storage": { + "config": "$HOST_PATH($LOCATION(ApplicationsPerformance)/mkvtoolnix/config)", + "storage": "$HOST_PATH($LOCATION(Documents)/mkvtoolnix-storage)", + "additional_storage": [ + "$MOUNTED_HOST_PATH($LOCATION(Media), /Media)", + "$MOUNTED_HOST_PATH($LOCATION(Videos), /Videos)", + "$MOUNTED_HOST_PATH($LOCATION(Shows), /Shows)", + "$MOUNTED_HOST_PATH($LOCATION(Movies), /Movies)" + ] + }, + "network": { + "web_port": { + "port_number": 30309 + } + }, + "resources": { + "limits": { + "cpus": 4, + "memory": "$MEMORY(10%, 4096)" + } + } + } +} \ No newline at end of file From 22975c68d3bb208ec84ae201a7009cae466c5fe6 Mon Sep 17 00:00:00 2001 From: acknologia <64101826+acknologia@users.noreply.github.com> Date: Sun, 31 May 2026 19:14:50 -0400 Subject: [PATCH 3/7] updated to v4 --- docs/features/apps/install-scripts/curated/index.md | 2 +- docs/public/install-scripts/qui.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index 39391ae3..31f1944e 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -16,7 +16,7 @@ | `plex` | [plex.json](/install-scripts/plex.json) | 3.4 KB | 2025-12-12 | | `prowlarr` | [prowlarr.json](/install-scripts/prowlarr.json) | 766 B | 2025-12-04 | | `qbittorrent` | [qbittorrent.json](/install-scripts/qbittorrent.json) | 1.0 KB | 2025-12-04 | -| `qui` | [qui.json](/install-scripts/qui.json) | 821 B | 2026-03-28 | +| `qui` | [qui.json](/install-scripts/qui.json) | 895 B | 2026-03-28 | | `radarr` | [radarr.json](/install-scripts/radarr.json) | 1.2 KB | 2025-12-04 | | `scrutiny` | [scrutiny.json](/install-scripts/scrutiny.json) | 1.3 KB | 2026-03-15 | | `sonarr` | [sonarr.json](/install-scripts/sonarr.json) | 1.2 KB | 2025-12-04 | diff --git a/docs/public/install-scripts/qui.json b/docs/public/install-scripts/qui.json index d247609a..31168d31 100644 --- a/docs/public/install-scripts/qui.json +++ b/docs/public/install-scripts/qui.json @@ -1,5 +1,5 @@ { - "version": 3, + "version": 4, "script": { "version": "1.0.0", "changeLog": "Initial Script" @@ -22,7 +22,7 @@ "path": "$LOCATION(ApplicationsPerformance)", "network_share": true }, - "$LOCATION(ApplicationsPerformance)/qui/config" + { "path": "$LOCATION(ApplicationsPerformance)/qui/config", "owner": { "user": "apps" }, "snapshot": { "id": "config" } } ], "app_values": { "storage": { From 655b6c01c527d04958698911da8f75ef79d80251 Mon Sep 17 00:00:00 2001 From: acknologia <64101826+acknologia@users.noreply.github.com> Date: Sun, 31 May 2026 19:25:00 -0400 Subject: [PATCH 4/7] v4 script --- docs/features/apps/install-scripts/curated/index.md | 2 +- docs/public/install-scripts/mkvtoolnix.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index 2f755fa3..d261863e 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -11,7 +11,7 @@ | `immich` | [immich.json](/install-scripts/immich.json) | 1.7 KB | 2026-03-15 | | `jellyfin` | [jellyfin.json](/install-scripts/jellyfin.json) | 2.2 KB | 2026-03-15 | | `lidarr` | [lidarr.json](/install-scripts/lidarr.json) | 1.4 KB | 2026-03-15 | -| `mkvtoolnix` | [mkvtoolnix.json](/install-scripts/mkvtoolnix.json) | 2.1 KB | 2026-05-01 | +| `mkvtoolnix` | [mkvtoolnix.json](/install-scripts/mkvtoolnix.json) | 2.2 KB | 2026-05-01 | | `nextcloud` | [nextcloud.json](/install-scripts/nextcloud.json) | 3.5 KB | 2026-03-15 | | `peanut` | [peanut.json](/install-scripts/peanut.json) | 834 B | 2026-03-15 | | `plex` | [plex.json](/install-scripts/plex.json) | 3.4 KB | 2025-12-12 | diff --git a/docs/public/install-scripts/mkvtoolnix.json b/docs/public/install-scripts/mkvtoolnix.json index 8dc7ecd4..198fb8fb 100644 --- a/docs/public/install-scripts/mkvtoolnix.json +++ b/docs/public/install-scripts/mkvtoolnix.json @@ -1,5 +1,5 @@ { - "version": 3, + "version": 4, "script": { "version": "1.0.0", "changeLog": "Initial Install script" @@ -63,8 +63,8 @@ "path": "$LOCATION(Videos)", "network_share": true }, - "$LOCATION(ApplicationsPerformance)/mkvtoolnix/config", - "$LOCATION(Documents)/mkvtoolnix-storage" + { "path": "$LOCATION(ApplicationsPerformance)/mkvtoolnix/config", "owner": { "user": "apps" }, "snapshot": { "id": "data" } }, + { "path": "$LOCATION(Documents)/mkvtoolnix-storage", "owner": { "user": "apps" } } ], "app_values": { "mkvtoolnix": { From 70b5aa6bfb12ea1055fd2f47dd0635588b6784f2 Mon Sep 17 00:00:00 2001 From: acknologia <64101826+acknologia@users.noreply.github.com> Date: Thu, 4 Jun 2026 23:44:48 -0400 Subject: [PATCH 5/7] removed owner and renamed "storage" --- docs/features/apps/install-scripts/curated/index.md | 2 +- docs/public/install-scripts/mkvtoolnix.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index d261863e..13cfcc69 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -11,7 +11,7 @@ | `immich` | [immich.json](/install-scripts/immich.json) | 1.7 KB | 2026-03-15 | | `jellyfin` | [jellyfin.json](/install-scripts/jellyfin.json) | 2.2 KB | 2026-03-15 | | `lidarr` | [lidarr.json](/install-scripts/lidarr.json) | 1.4 KB | 2026-03-15 | -| `mkvtoolnix` | [mkvtoolnix.json](/install-scripts/mkvtoolnix.json) | 2.2 KB | 2026-05-01 | +| `mkvtoolnix` | [mkvtoolnix.json](/install-scripts/mkvtoolnix.json) | 2.2 KB | 2026-05-31 | | `nextcloud` | [nextcloud.json](/install-scripts/nextcloud.json) | 3.5 KB | 2026-03-15 | | `peanut` | [peanut.json](/install-scripts/peanut.json) | 834 B | 2026-03-15 | | `plex` | [plex.json](/install-scripts/plex.json) | 3.4 KB | 2025-12-12 | diff --git a/docs/public/install-scripts/mkvtoolnix.json b/docs/public/install-scripts/mkvtoolnix.json index 198fb8fb..c95ed968 100644 --- a/docs/public/install-scripts/mkvtoolnix.json +++ b/docs/public/install-scripts/mkvtoolnix.json @@ -64,7 +64,7 @@ "network_share": true }, { "path": "$LOCATION(ApplicationsPerformance)/mkvtoolnix/config", "owner": { "user": "apps" }, "snapshot": { "id": "data" } }, - { "path": "$LOCATION(Documents)/mkvtoolnix-storage", "owner": { "user": "apps" } } + { "path": "$LOCATION(Documents)/mkvtoolnix"} ], "app_values": { "mkvtoolnix": { @@ -77,7 +77,7 @@ }, "storage": { "config": "$HOST_PATH($LOCATION(ApplicationsPerformance)/mkvtoolnix/config)", - "storage": "$HOST_PATH($LOCATION(Documents)/mkvtoolnix-storage)", + "storage": "$HOST_PATH($LOCATION(Documents)/mkvtoolnix)", "additional_storage": [ "$MOUNTED_HOST_PATH($LOCATION(Media), /Media)", "$MOUNTED_HOST_PATH($LOCATION(Videos), /Videos)", From 71e6f416bfe98f2a95522daec8af4ce55f839b92 Mon Sep 17 00:00:00 2001 From: acknologia <64101826+acknologia@users.noreply.github.com> Date: Thu, 4 Jun 2026 23:49:00 -0400 Subject: [PATCH 6/7] removed owner from config dataset --- docs/features/apps/install-scripts/curated/index.md | 2 +- docs/public/install-scripts/qui.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index 31f1944e..51444933 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -16,7 +16,7 @@ | `plex` | [plex.json](/install-scripts/plex.json) | 3.4 KB | 2025-12-12 | | `prowlarr` | [prowlarr.json](/install-scripts/prowlarr.json) | 766 B | 2025-12-04 | | `qbittorrent` | [qbittorrent.json](/install-scripts/qbittorrent.json) | 1.0 KB | 2025-12-04 | -| `qui` | [qui.json](/install-scripts/qui.json) | 895 B | 2026-03-28 | +| `qui` | [qui.json](/install-scripts/qui.json) | 865 B | 2026-05-31 | | `radarr` | [radarr.json](/install-scripts/radarr.json) | 1.2 KB | 2025-12-04 | | `scrutiny` | [scrutiny.json](/install-scripts/scrutiny.json) | 1.3 KB | 2026-03-15 | | `sonarr` | [sonarr.json](/install-scripts/sonarr.json) | 1.2 KB | 2025-12-04 | diff --git a/docs/public/install-scripts/qui.json b/docs/public/install-scripts/qui.json index 31168d31..e6c795fd 100644 --- a/docs/public/install-scripts/qui.json +++ b/docs/public/install-scripts/qui.json @@ -22,7 +22,7 @@ "path": "$LOCATION(ApplicationsPerformance)", "network_share": true }, - { "path": "$LOCATION(ApplicationsPerformance)/qui/config", "owner": { "user": "apps" }, "snapshot": { "id": "config" } } + { "path": "$LOCATION(ApplicationsPerformance)/qui/config", "snapshot": { "id": "config" } } ], "app_values": { "storage": { From f4964e05086d165e6ffd331cf2ff401b2cf2db1a Mon Sep 17 00:00:00 2001 From: acknologia <64101826+acknologia@users.noreply.github.com> Date: Sat, 6 Jun 2026 17:35:22 -0400 Subject: [PATCH 7/7] updated release notes for new apps 6/6/26 release notes --- docs/.vitepress/sidebar.ts | 1 + docs/release-notes/command-deck/2026-06-06.md | 10 ++++++++++ docs/release-notes/command-deck/index.md | 1 + docs/release-notes/index.md | 2 +- 4 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 docs/release-notes/command-deck/2026-06-06.md diff --git a/docs/.vitepress/sidebar.ts b/docs/.vitepress/sidebar.ts index dc386309..4aa4c165 100644 --- a/docs/.vitepress/sidebar.ts +++ b/docs/.vitepress/sidebar.ts @@ -155,6 +155,7 @@ const sidebar: DefaultTheme.SidebarItem[] = [ collapsed: true, items: [ // auto-generated-release-notes-start + { text: '2026-06-06', link: '/release-notes/command-deck/2026-06-06' }, { text: '2026-05-29', link: '/release-notes/command-deck/2026-05-29' }, { text: '2026-05-20', link: '/release-notes/command-deck/2026-05-20' }, { text: '2026-05-13', link: '/release-notes/command-deck/2026-05-13' }, diff --git a/docs/release-notes/command-deck/2026-06-06.md b/docs/release-notes/command-deck/2026-06-06.md new file mode 100644 index 00000000..0d70841f --- /dev/null +++ b/docs/release-notes/command-deck/2026-06-06.md @@ -0,0 +1,10 @@ +# June 6, 2026 - New curated applications + +## App Curations + +Continuing the promise to double our curations, we are releasing 3 more curations to supercharge your media server experience. + +[MKVToolNix](https://mkvtoolnix.download/index.html) - MKVToolNix is a set of tools to create, alter and inspect Matroska files. + +[qui](https://getqui.com) - qui is a fast and powerful qBittorrent web UI. + diff --git a/docs/release-notes/command-deck/index.md b/docs/release-notes/command-deck/index.md index cd2d1ed6..56529f80 100644 --- a/docs/release-notes/command-deck/index.md +++ b/docs/release-notes/command-deck/index.md @@ -11,6 +11,7 @@ For users who are actively connected during an update, there may be a brief down ## 2026 Releases +- [**2026-06-06**](./2026-06-06) - New curated applications - [**2026-05-29**](./2026-05-29) - New curated applications - [**2026-05-20**](./2026-05-20) - App install script v4, New app curations, Curation beta program - [**2026-05-13**](./2026-05-13) - TrueNAS Compatibility, App Install Improvements & Buddy Backup Foundations diff --git a/docs/release-notes/index.md b/docs/release-notes/index.md index 08212161..a8b5542f 100644 --- a/docs/release-notes/index.md +++ b/docs/release-notes/index.md @@ -8,7 +8,7 @@ The Command Deck is the HexOS web interface. Updates are automatically deployed **[View Command Deck Release Notes →](/release-notes/command-deck/)** -**Latest:** [2026-05-29 — New curated applications](/release-notes/command-deck/2026-05-29) +**Latest:** [2026-06-06 — New curated applications](/release-notes/command-deck/2026-06-06) ## TrueNAS