furtka-apps/apps/fileshare/manifest.json
Daniel Maksymilian Syrnicki 436ce11f52
All checks were successful
CI / validate (push) Successful in 29s
CI / shellcheck (push) Successful in 56s
Release / release (push) Successful in 25s
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
2026-04-20 17:47:19 +02:00

28 lines
939 B
JSON

{
"name": "fileshare",
"display_name": "Network Files",
"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",
"label": "Benutzername",
"description": "Der Name, mit dem sich Geräte am Share anmelden.",
"type": "text",
"default": "furtka",
"required": true
},
{
"name": "SMB_PASSWORD",
"label": "Passwort",
"description": "Mindestens 8 Zeichen. Wird nie angezeigt — auch dir nicht.",
"type": "password",
"required": true
}
]
}