fix(fnos): open LangBot embedded inside fnOS desktop instead of external browser

Change desktop entry type from 'url' (opens external browser) to 'iframe'
(embeds the web UI inside the fnOS desktop window), per the official
Application Entry documentation at developer.fnnas.com/docs/core-concepts/app-entry.
This commit is contained in:
“sheetung”
2026-09-18 17:05:47 +08:00
parent 34f1e3d56f
commit d705861d25
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"title": "LangBot", "title": "LangBot",
"icon": "images/icon-256.png", "icon": "images/icon-256.png",
"type": "url", "type": "iframe",
"protocol": "http", "protocol": "http",
"port": "${wizard_port}", "port": "${wizard_port}",
"url": "/", "url": "/",
+1 -1
View File
@@ -3,7 +3,7 @@
"langbot.main": { "langbot.main": {
"title": "LangBot", "title": "LangBot",
"icon": "images/icon-{0}.png", "icon": "images/icon-{0}.png",
"type": "url", "type": "iframe",
"protocol": "http", "protocol": "http",
"port": "${wizard_port}", "port": "${wizard_port}",
"url": "/", "url": "/",