Fix: linux extension loading (#188)

* fix: change escape key behavior to navigate home instead of back

* feat: load custom ui extension with http server on Linux

Linux now uses the same loading approach as Windows due to a bug https://github.com/tauri-apps/tauri/issues/12767

* feat: add tauri-plugin-system-info-api dependency to deno.lock
This commit is contained in:
Huakun 2025-02-22 04:36:44 -05:00 committed by GitHub
parent b5ea128aca
commit ed20f9a142
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@kksh/desktop",
"version": "0.1.24",
"version": "0.1.25",
"description": "",
"type": "module",
"scripts": {

View File

@ -163,7 +163,8 @@ export async function onCustomUiCmdSelect(
extPath: ext.extPath,
dist: cmd.dist
})
if (platform() === "windows" && !useDevMain) {
const _platform = platform()
if ((_platform === "windows" || _platform === "linux") && !useDevMain) {
const addr = await spawnExtensionFileServer(winLabel) // addr has format "127.0.0.1:<port>"
console.log("Extension file server address: ", addr)
const newUrl = `http://${addr}`

View File

@ -111,7 +111,7 @@
function onkeydown(e: KeyboardEvent) {
if (e.key === "Escape") {
if (document.activeElement === listviewInputRef) {
goBack()
goHome()
}
}
}

1
deno.lock generated
View File

@ -181,6 +181,7 @@
"npm:tauri-api-adapter@~0.3.20": "0.3.20_typescript@5.6.3",
"npm:tauri-plugin-clipboard-api@^2.1.11": "2.1.11_typescript@5.6.3",
"npm:tauri-plugin-shellx-api@^2.0.14": "2.0.14",
"npm:tauri-plugin-system-info-api@2.0.8": "2.0.8_typescript@5.6.3",
"npm:ts-proto@^2.3.0": "2.6.1",
"npm:tslib@^2.8.1": "2.8.1",
"npm:turbo@^2.3.4": "2.4.0",