feat(catalog): 26.8-alpha — add open_url to fileshare + uptime-kuma
All checks were successful
CI / validate (push) Successful in 29s
CI / shellcheck (push) Successful in 56s
Release / release (push) Successful in 25s

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
This commit is contained in:
Daniel Maksymilian Syrnicki 2026-04-20 17:47:19 +02:00
parent f377a5a387
commit 436ce11f52
3 changed files with 17 additions and 4 deletions

View file

@ -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

View file

@ -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",

View file

@ -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/"
}