feat(catalog): 26.8-alpha — add open_url to fileshare + uptime-kuma
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:
parent
f377a5a387
commit
436ce11f52
3 changed files with 17 additions and 4 deletions
13
CHANGELOG.md
13
CHANGELOG.md
|
|
@ -6,6 +6,16 @@ Versioning: CalVer (`YY.N`) — same scheme as the core Furtka repo.
|
||||||
|
|
||||||
## [Unreleased]
|
## [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
|
## [26.7-alpha] - 2026-04-20
|
||||||
|
|
||||||
### Added
|
### 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
|
the vendored `furtka.manifest.load_manifest` + cross-checks compose
|
||||||
volume references).
|
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.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
|
[26.6-alpha]: https://forgejo.sourcegate.online/daniel/furtka-apps/releases/tag/26.6-alpha
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,13 @@
|
||||||
{
|
{
|
||||||
"name": "fileshare",
|
"name": "fileshare",
|
||||||
"display_name": "Network Files",
|
"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": "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.",
|
"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"],
|
"volumes": ["files"],
|
||||||
"ports": [445, 139],
|
"ports": [445, 139],
|
||||||
"icon": "icon.svg",
|
"icon": "icon.svg",
|
||||||
|
"open_url": "smb://{host}/files",
|
||||||
"settings": [
|
"settings": [
|
||||||
{
|
{
|
||||||
"name": "SMB_USER",
|
"name": "SMB_USER",
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,11 @@
|
||||||
{
|
{
|
||||||
"name": "uptime-kuma",
|
"name": "uptime-kuma",
|
||||||
"display_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": "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.",
|
"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"],
|
"volumes": ["data"],
|
||||||
"ports": [3001],
|
"ports": [3001],
|
||||||
"icon": "icon.svg"
|
"icon": "icon.svg",
|
||||||
|
"open_url": "http://{host}:3001/"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue