♻️ 重构祈愿页面数据刷新逻辑

This commit is contained in:
BTMuli
2026-02-17 12:34:43 +08:00
parent c071538ecc
commit be48c32d0d
7 changed files with 1064 additions and 757 deletions

531
src-tauri/Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -25,7 +25,7 @@ image = "0.25.9"
log = "0.4.29"
prost = "=0.14.1"
prost-types = "=0.14.1"
sentry = { version = "0.46.1", features = ["backtrace", "panic"] }
sentry = { version = "0.46.2", features = ["backtrace", "panic"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
tauri = { version = "2.10.2", features = ["tray-icon"] }

View File

@@ -1,6 +1,6 @@
//! @file src/client/mod.rs
//! @desc 客户端模块,负责操作米游社客户端
//! @since Beta v0.9.1
//! @since Beta v0.9.6
mod menu;
mod utils;
@@ -8,7 +8,7 @@ mod utils;
use tauri::{AppHandle, Manager, WebviewWindowBuilder};
use tauri_utils::config::WebviewUrl;
static BBS_VERSION: &'static str = "2.100.0";
static BBS_VERSION: &'static str = "2.102.1";
#[tauri::command]
pub async fn create_mhy_client(handle: AppHandle, func: String, url: String) {