chore: Update version to 1.1.3 and enhance TitleBar and UI functionality

This commit is contained in:
Huakun Shen 2025-03-18 08:00:43 -04:00
parent 68dc3bc2b4
commit 6003ade5da
No known key found for this signature in database
3 changed files with 13 additions and 3 deletions

View File

@ -5,7 +5,7 @@
"type": "git", "type": "git",
"url": "https://github.com/kunkunsh/kunkun-ext-neohtop.git" "url": "https://github.com/kunkunsh/kunkun-ext-neohtop.git"
}, },
"version": "1.1.2", "version": "1.1.3",
"description": "", "description": "",
"type": "module", "type": "module",
"kunkun": { "kunkun": {
@ -29,7 +29,14 @@
"main": "/", "main": "/",
"dist": "build", "dist": "build",
"devMain": "http://localhost:1420", "devMain": "http://localhost:1420",
"cmds": [] "cmds": [],
"window": {
"title": "Neohtop",
"hiddenTitle": true,
"titleBarStyle": "overlay",
"width": 1400,
"height": 1000
}
} }
] ]
}, },

View File

@ -1,7 +1,7 @@
<script lang="ts"> <script lang="ts">
</script> </script>
<div class="title-bar" data-tauri-drag-region> <div class="title-bar" data-tauri-drag-region data-kunkun-drag-region>
<div class="title"> <div class="title">
<img src="/32x32.png" alt="NeoHtop" class="app-icon" /> <img src="/32x32.png" alt="NeoHtop" class="app-icon" />
<div class="neon">NeoHtop</div> <div class="neon">NeoHtop</div>

View File

@ -11,6 +11,7 @@
import { themeStore, settingsStore, processStore } from "$lib/stores/index"; import { themeStore, settingsStore, processStore } from "$lib/stores/index";
import { column_definitions } from "$lib/definitions/columns"; import { column_definitions } from "$lib/definitions/columns";
import { filterProcesses, sortProcesses } from "$lib/utils"; import { filterProcesses, sortProcesses } from "$lib/utils";
import { ui } from "@kksh/api/ui/custom";
$: ({ $: ({
processes, processes,
@ -71,6 +72,8 @@
} }
onMount(async () => { onMount(async () => {
ui.showBackButton("bottom-right");
ui.registerDragRegion();
try { try {
await processStore.getProcesses(); await processStore.getProcesses();
} catch (error) { } catch (error) {