From 436ce11f52c1958a459c346c483fe37a5f03d0c8 Mon Sep 17 00:00:00 2001 From: Daniel Maksymilian Syrnicki Date: Mon, 20 Apr 2026 17:47:19 +0200 Subject: [PATCH] =?UTF-8?q?feat(catalog):=2026.8-alpha=20=E2=80=94=20add?= =?UTF-8?q?=20open=5Furl=20to=20fileshare=20+=20uptime-kuma?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Both apps grow an `open_url` manifest field so the core UI can render an Open button that deep-links into the app. fileshare uses smb:// to trigger the OS file manager; uptime-kuma uses http://{host}:3001/ for the browser. No image or compose changes. - fileshare 0.1.1 → 0.1.2 - uptime-kuma 1.0.0 → 1.0.1 --- CHANGELOG.md | 13 ++++++++++++- apps/fileshare/manifest.json | 3 ++- apps/uptime-kuma/manifest.json | 5 +++-- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c779c69..5710574 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,16 @@ Versioning: CalVer (`YY.N`) — same scheme as the core Furtka repo. ## [Unreleased] +## [26.8-alpha] - 2026-04-21 + +### Changed + +- **fileshare** bumped to v0.1.2: adds `open_url` (`smb://{host}/files`) + so the core UI can render an Open button that deep-links to the share. +- **Uptime Kuma** bumped to v1.0.1: adds `open_url` + (`http://{host}:3001/`) for the same UI Open button. No image or + compose changes. + ## [26.7-alpha] - 2026-04-20 ### Added @@ -31,6 +41,7 @@ Versioning: CalVer (`YY.N`) — same scheme as the core Furtka repo. the vendored `furtka.manifest.load_manifest` + cross-checks compose volume references). -[Unreleased]: https://forgejo.sourcegate.online/daniel/furtka-apps/compare/26.7-alpha...HEAD +[Unreleased]: https://forgejo.sourcegate.online/daniel/furtka-apps/compare/26.8-alpha...HEAD +[26.8-alpha]: https://forgejo.sourcegate.online/daniel/furtka-apps/releases/tag/26.8-alpha [26.7-alpha]: https://forgejo.sourcegate.online/daniel/furtka-apps/releases/tag/26.7-alpha [26.6-alpha]: https://forgejo.sourcegate.online/daniel/furtka-apps/releases/tag/26.6-alpha diff --git a/apps/fileshare/manifest.json b/apps/fileshare/manifest.json index eb0a8e3..a78a253 100644 --- a/apps/fileshare/manifest.json +++ b/apps/fileshare/manifest.json @@ -1,12 +1,13 @@ { "name": "fileshare", "display_name": "Network Files", - "version": "0.1.1", + "version": "0.1.2", "description": "SMB share for Mac, Windows, Linux and Android devices on the LAN.", "description_long": "Alle Geräte im WLAN sehen einen gemeinsamen Ordner. Funktioniert mit Windows, Mac, Linux und Android. Verbinden zu smb://furtka.local — Anmeldung mit dem hier gesetzten Benutzernamen und Passwort.", "volumes": ["files"], "ports": [445, 139], "icon": "icon.svg", + "open_url": "smb://{host}/files", "settings": [ { "name": "SMB_USER", diff --git a/apps/uptime-kuma/manifest.json b/apps/uptime-kuma/manifest.json index c714a61..f0278be 100644 --- a/apps/uptime-kuma/manifest.json +++ b/apps/uptime-kuma/manifest.json @@ -1,10 +1,11 @@ { "name": "uptime-kuma", "display_name": "Uptime Kuma", - "version": "1.0.0", + "version": "1.0.1", "description": "Self-hosted status monitor for services, ports, and devices on the LAN.", "description_long": "Überwacht andere Geräte und Dienste im Netzwerk und schickt dir Bescheid, wenn etwas ausfällt. Nach der Installation den Admin-Account direkt im Browser unter http://furtka.local:3001 anlegen, dann Monitore (Ping, Webseite, Port, Docker-Container) hinzufügen.", "volumes": ["data"], "ports": [3001], - "icon": "icon.svg" + "icon": "icon.svg", + "open_url": "http://{host}:3001/" }