mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00
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:
parent
b5ea128aca
commit
ed20f9a142
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@kksh/desktop",
|
"name": "@kksh/desktop",
|
||||||
"version": "0.1.24",
|
"version": "0.1.25",
|
||||||
"description": "",
|
"description": "",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -163,7 +163,8 @@ export async function onCustomUiCmdSelect(
|
|||||||
extPath: ext.extPath,
|
extPath: ext.extPath,
|
||||||
dist: cmd.dist
|
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>"
|
const addr = await spawnExtensionFileServer(winLabel) // addr has format "127.0.0.1:<port>"
|
||||||
console.log("Extension file server address: ", addr)
|
console.log("Extension file server address: ", addr)
|
||||||
const newUrl = `http://${addr}`
|
const newUrl = `http://${addr}`
|
||||||
|
@ -111,7 +111,7 @@
|
|||||||
function onkeydown(e: KeyboardEvent) {
|
function onkeydown(e: KeyboardEvent) {
|
||||||
if (e.key === "Escape") {
|
if (e.key === "Escape") {
|
||||||
if (document.activeElement === listviewInputRef) {
|
if (document.activeElement === listviewInputRef) {
|
||||||
goBack()
|
goHome()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
1
deno.lock
generated
1
deno.lock
generated
@ -181,6 +181,7 @@
|
|||||||
"npm:tauri-api-adapter@~0.3.20": "0.3.20_typescript@5.6.3",
|
"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-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-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:ts-proto@^2.3.0": "2.6.1",
|
||||||
"npm:tslib@^2.8.1": "2.8.1",
|
"npm:tslib@^2.8.1": "2.8.1",
|
||||||
"npm:turbo@^2.3.4": "2.4.0",
|
"npm:turbo@^2.3.4": "2.4.0",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user