-
+
通用版
.AppImage
-
+
Debian / Ubuntu
.deb
diff --git a/docs/update/latest.json b/docs/update/latest.json
index e0a7b69..ee20b11 100644
--- a/docs/update/latest.json
+++ b/docs/update/latest.json
@@ -1,6 +1,6 @@
{
"version": "0.15.2",
- "minAppVersion": "0.15.2",
+ "minAppVersion": "0.15.3",
"hash": "sha256:e4d7f9fbebf64ce0394b78201ab5671b03750edf7657556d5b8c9af437e62be2",
"url": "https://github.com/qingchencloud/clawpanel/releases/download/v0.15.2/web-0.15.2.zip",
"size": 2489131,
diff --git a/package-lock.json b/package-lock.json
index 5864fd5..3f58f11 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "clawpanel",
- "version": "0.15.1",
+ "version": "0.15.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "clawpanel",
- "version": "0.15.1",
+ "version": "0.15.3",
"license": "AGPL-3.0",
"dependencies": {
"@tauri-apps/api": "^2.5.0",
diff --git a/package.json b/package.json
index f1a560f..a4c9ad2 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "clawpanel",
- "version": "0.15.2",
+ "version": "0.15.3",
"private": true,
"description": "ClawPanel - OpenClaw 可视化管理面板,基于 Tauri v2 的跨平台桌面应用",
"type": "module",
diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock
index cf6bbe8..dd30394 100644
--- a/src-tauri/Cargo.lock
+++ b/src-tauri/Cargo.lock
@@ -366,7 +366,7 @@ dependencies = [
[[package]]
name = "clawpanel"
-version = "0.15.2"
+version = "0.15.3"
dependencies = [
"base64 0.22.1",
"chrono",
diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml
index 5f0a93f..9c75a00 100644
--- a/src-tauri/Cargo.toml
+++ b/src-tauri/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "clawpanel"
-version = "0.15.2"
+version = "0.15.3"
edition = "2021"
description = "ClawPanel - OpenClaw 可视化管理面板"
authors = ["qingchencloud"]
diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs
index f084cda..f48e678 100644
--- a/src-tauri/src/lib.rs
+++ b/src-tauri/src/lib.rs
@@ -290,20 +290,7 @@ pub fn run() {
})
.build(tauri::generate_context!())
.expect("启动 ClawPanel 失败")
- .run(|_app, event| {
- if let tauri::RunEvent::Exit = event {
- #[cfg(target_os = "windows")]
- {
- // 退出时关闭 Gateway 终端窗口
- use std::os::windows::process::CommandExt;
- const CREATE_NO_WINDOW: u32 = 0x08000000;
- let _ = std::process::Command::new("taskkill")
- .args(["/fi", "WINDOWTITLE eq OpenClaw Gateway"])
- .creation_flags(CREATE_NO_WINDOW)
- .output();
- }
- }
- });
+ .run(|_app, _event| {});
}
/// 启动时清理落后版本的热更新目录(issue #261)。
diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json
index 142660b..9372c3d 100644
--- a/src-tauri/tauri.conf.json
+++ b/src-tauri/tauri.conf.json
@@ -1,7 +1,7 @@
{
"$schema": "https://raw.githubusercontent.com/tauri-apps/tauri/dev/crates/tauri-config-schema/schema.json",
"productName": "ClawPanel",
- "version": "0.15.2",
+ "version": "0.15.3",
"identifier": "ai.openclaw.clawpanel",
"build": {
"frontendDist": "../dist",