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
28 lines
939 B
JSON
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
|
|
}
|
|
]
|
|
}
|