mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00
fix(desktop): global hot key register during init must be after appConfig.init (#113)
This commit is contained in:
parent
f1cace38d4
commit
4221b574c9
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@kksh/desktop",
|
||||
"version": "0.1.21",
|
||||
"version": "0.1.22",
|
||||
"description": "",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
@ -14,10 +14,10 @@ export function init() {
|
||||
}
|
||||
|
||||
if (!dev) {
|
||||
document.addEventListener("contextmenu", function (event) {
|
||||
event.preventDefault()
|
||||
console.warn("contextmenu disabled in release mode", event)
|
||||
})
|
||||
// document.addEventListener("contextmenu", function (event) {
|
||||
// event.preventDefault()
|
||||
// console.warn("contextmenu disabled in release mode", event)
|
||||
// })
|
||||
}
|
||||
}
|
||||
|
||||
@ -31,6 +31,6 @@ export function initMainWindow() {
|
||||
info(`Registering hotkey: ${hotkeyStr}`)
|
||||
registerAppHotkey(hotkeyStr)
|
||||
} else {
|
||||
console.log("No hotkey found in confi")
|
||||
console.log("No hotkey found in config")
|
||||
}
|
||||
}
|
||||
|
@ -1,16 +1,10 @@
|
||||
<script lang="ts">
|
||||
import { ParaglideJS } from "@inlang/paraglide-sveltekit"
|
||||
import { i18n } from "$lib/i18n"
|
||||
import { onMount } from "svelte"
|
||||
import "../app.css"
|
||||
import { init } from "@/utils/init"
|
||||
import { ModeWatcher, ThemeWrapper } from "@kksh/svelte5"
|
||||
import { Toaster } from "svelte-sonner"
|
||||
|
||||
onMount(() => {
|
||||
init()
|
||||
})
|
||||
|
||||
let { children } = $props()
|
||||
</script>
|
||||
|
||||
|
@ -6,6 +6,7 @@
|
||||
import { appsLoader } from "@/stores/apps"
|
||||
import { initDeeplink } from "@/utils/deeplink"
|
||||
import { updateAppHotkey } from "@/utils/hotkey"
|
||||
import { init as initApp } from "@/utils/init"
|
||||
import { globalKeyDownHandler, globalKeyUpHandler, goBackOrCloseOnEscape } from "@/utils/key"
|
||||
import { listenToWindowBlur } from "@/utils/tauri-events"
|
||||
import { isInMainWindow } from "@/utils/window"
|
||||
@ -63,6 +64,7 @@
|
||||
.catch(error)
|
||||
quickLinks.init()
|
||||
appConfig.init().then(() => {
|
||||
initApp()
|
||||
console.log("appConfig.language", $appConfig.language)
|
||||
setLanguageTag($appConfig.language as AvailableLanguageTag)
|
||||
switchToLanguage($appConfig.language as AvailableLanguageTag)
|
||||
|
Loading…
x
Reference in New Issue
Block a user