From 60ef3a4ff7094b66a323afccc6f5829540c9fed4 Mon Sep 17 00:00:00 2001 From: Huakun Shen Date: Fri, 21 Mar 2025 08:57:24 -0400 Subject: [PATCH] feat: Add shell permission and update process killing method in processes store --- package-lock.json | 4 ++-- package.json | 5 +++-- src/app.css | 5 +++-- src/lib/stores/processes.ts | 4 +++- 4 files changed, 11 insertions(+), 7 deletions(-) diff --git a/package-lock.json b/package-lock.json index 40932fb..572e193 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "kunkun-ext-neohtop", - "version": "1.1.2", + "version": "1.1.6", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "kunkun-ext-neohtop", - "version": "1.1.2", + "version": "1.1.6", "license": "MIT", "dependencies": { "@fortawesome/fontawesome-svg-core": "^6.6.0", diff --git a/package.json b/package.json index 61121bc..547fff6 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "type": "git", "url": "https://github.com/kunkunsh/kunkun-ext-neohtop.git" }, - "version": "1.1.5", + "version": "1.1.6", "description": "", "type": "module", "kunkun": { @@ -17,7 +17,8 @@ "https://imgur.com/D8VHDEz.png" ], "permissions": [ - "system-info:all" + "system-info:all", + "shell:kill-any" ], "icon": { "type": "remote-url", diff --git a/src/app.css b/src/app.css index 91eb9a4..804ce19 100644 --- a/src/app.css +++ b/src/app.css @@ -26,8 +26,9 @@ body { margin: 0; padding: 0; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, - sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; + font-family: + -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, + "Apple Color Emoji", "Segoe UI Emoji"; background-color: var(--base); color: var(--text); -webkit-font-smoothing: antialiased; diff --git a/src/lib/stores/processes.ts b/src/lib/stores/processes.ts index 321b6f8..e9a32a9 100644 --- a/src/lib/stores/processes.ts +++ b/src/lib/stores/processes.ts @@ -4,6 +4,7 @@ import { invoke } from "@tauri-apps/api/core"; import { sysInfo } from "@kksh/api/ui/custom"; import { processMonitor } from "$lib/utils/processMonitor"; import { systemMonitor } from "$lib/utils/systemMonitor"; +import { shell } from "@kksh/api/ui/custom"; interface ProcessStore { processes: Process[]; @@ -86,7 +87,8 @@ function createProcessStore() { const killProcess = async (pid: number) => { try { update((state) => ({ ...state, isKilling: true })); - const success = await invoke("kill_process", { pid }); + // const success = await invoke("kill_process", { pid }); + const success = await shell.killPid(pid).then(() => true); if (success) { await getProcesses(); } else {