mirror of
https://github.com/kunkunsh/kunkun-ext-neohtop.git
synced 2025-04-03 17:36:41 +00:00
chore: Update version to 1.1.3 and enhance TitleBar and UI functionality
This commit is contained in:
parent
68dc3bc2b4
commit
6003ade5da
11
package.json
11
package.json
@ -5,7 +5,7 @@
|
||||
"type": "git",
|
||||
"url": "https://github.com/kunkunsh/kunkun-ext-neohtop.git"
|
||||
},
|
||||
"version": "1.1.2",
|
||||
"version": "1.1.3",
|
||||
"description": "",
|
||||
"type": "module",
|
||||
"kunkun": {
|
||||
@ -29,7 +29,14 @@
|
||||
"main": "/",
|
||||
"dist": "build",
|
||||
"devMain": "http://localhost:1420",
|
||||
"cmds": []
|
||||
"cmds": [],
|
||||
"window": {
|
||||
"title": "Neohtop",
|
||||
"hiddenTitle": true,
|
||||
"titleBarStyle": "overlay",
|
||||
"width": 1400,
|
||||
"height": 1000
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
</script>
|
||||
|
||||
<div class="title-bar" data-tauri-drag-region>
|
||||
<div class="title-bar" data-tauri-drag-region data-kunkun-drag-region>
|
||||
<div class="title">
|
||||
<img src="/32x32.png" alt="NeoHtop" class="app-icon" />
|
||||
<div class="neon">NeoHtop</div>
|
||||
|
@ -11,6 +11,7 @@
|
||||
import { themeStore, settingsStore, processStore } from "$lib/stores/index";
|
||||
import { column_definitions } from "$lib/definitions/columns";
|
||||
import { filterProcesses, sortProcesses } from "$lib/utils";
|
||||
import { ui } from "@kksh/api/ui/custom";
|
||||
|
||||
$: ({
|
||||
processes,
|
||||
@ -71,6 +72,8 @@
|
||||
}
|
||||
|
||||
onMount(async () => {
|
||||
ui.showBackButton("bottom-right");
|
||||
ui.registerDragRegion();
|
||||
try {
|
||||
await processStore.getProcesses();
|
||||
} catch (error) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user