⬆️ 更新依赖

This commit is contained in:
BTMuli
2026-01-11 12:36:31 +08:00
parent 49afdfc2b0
commit 16f6289b15
6 changed files with 596 additions and 602 deletions

View File

@@ -3,7 +3,7 @@
"version": "0.9.0",
"description": "Game Tool for GenshinImpact player",
"private": true,
"packageManager": "pnpm@10.27.0",
"packageManager": "pnpm@10.28.0",
"type": "module",
"scripts": {
"build": "tsx scripts/auto-build.ts",
@@ -77,13 +77,13 @@
"@skipperndt/plugin-machine-uid": "^0.1.3",
"@tauri-apps/api": "^2.9.1",
"@tauri-apps/plugin-cli": "^2.4.1",
"@tauri-apps/plugin-deep-link": "^2.4.5",
"@tauri-apps/plugin-dialog": "^2.4.2",
"@tauri-apps/plugin-fs": "^2.4.4",
"@tauri-apps/plugin-deep-link": "^2.4.6",
"@tauri-apps/plugin-dialog": "^2.5.0",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-http": "github:tauri-apps/tauri-plugin-http",
"@tauri-apps/plugin-log": "^2.7.1",
"@tauri-apps/plugin-log": "^2.8.0",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2.5.2",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-sql": "^2.3.1",
@@ -99,7 +99,7 @@
"pinia-plugin-persistedstate": "^4.7.1",
"qrcode.vue": "^3.6.0",
"rsa-oaep-encryption": "^1.1.0",
"sass-embedded": "^1.97.1",
"sass-embedded": "^1.97.2",
"swiper": "^12.0.3",
"uuid": "^13.0.0",
"vue": "^3.5.26",
@@ -118,9 +118,9 @@
"@tauri-apps/cli": "2.9.6",
"@types/fs-extra": "^11.0.4",
"@types/js-md5": "^0.8.0",
"@types/node": "^25.0.3",
"@typescript-eslint/parser": "^8.51.0",
"@typescript/native-preview": "7.0.0-dev.20260101.1",
"@types/node": "^25.0.6",
"@typescript-eslint/parser": "^8.52.0",
"@typescript/native-preview": "7.0.0-dev.20260109.1",
"@vitejs/plugin-vue": "^6.0.3",
"app-root-path": "^3.1.0",
"concurrently": "^9.2.1",
@@ -133,12 +133,12 @@
"eslint-plugin-vue": "^10.6.2",
"eslint-plugin-yml": "^1.19.1",
"fs-extra": "^11.3.3",
"globals": "^16.5.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"jsonc-eslint-parser": "^2.4.2",
"lint-staged": "^16.2.7",
"oxlint": "^1.36.0",
"postcss-preset-env": "^10.6.0",
"oxlint": "^1.38.0",
"postcss-preset-env": "^10.6.1",
"prettier": "3.7.4",
"stylelint": "^16.26.1",
"stylelint-config-idiomatic-order": "^10.0.0",
@@ -151,12 +151,12 @@
"stylelint-scss": "^6.14.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.51.0",
"vite": "npm:rolldown-vite@^7.3.0",
"typescript-eslint": "^8.52.0",
"vite": "npm:rolldown-vite@^7.3.1",
"vite-plugin-vue-devtools": "^8.0.5",
"vite-plugin-vuetify": "^2.1.2",
"vue-eslint-parser": "^10.2.0",
"vue-tsc": "^3.2.1",
"vue-tsc": "^3.2.2",
"yaml-eslint-parser": "^1.3.2"
}
}

732
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

414
src-tauri/Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -23,15 +23,15 @@ tauri-build = { version = "2.5.3", features = [] }
chrono = "0.4.42"
image = "0.25.9"
log = "0.4.29"
prost = "0.14.1"
prost-types = "0.14.1"
sentry = { version = "0.46.0", features = ["backtrace", "panic"] }
prost = "0.14.3"
prost-types = "0.14.3"
sentry = { version = "0.46.1", features = ["backtrace", "panic"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.147"
serde_json = "1.0.149"
tauri = { version = "2.9.5", features = ["tray-icon"] }
tauri-utils = "2.8.1"
tauri-plugin-machine-uid = "0.1.3"
url = "2.5.7"
url = "2.5.8"
walkdir = "2.5.0"
widestring = "1.2.1"

View File

@@ -8,7 +8,7 @@ mod utils;
use tauri::{AppHandle, Manager, WebviewWindowBuilder};
use tauri_utils::config::WebviewUrl;
static BBS_VERSION: &'static str = "2.99.1";
static BBS_VERSION: &'static str = "2.100.0";
#[tauri::command]
pub async fn create_mhy_client(handle: AppHandle, func: String, url: String) {

View File

@@ -9,18 +9,18 @@
*/
export type SaltKey = "K2" | "LK2" | "X4" | "X6" | "PROD";
const BBS_VERSION: Readonly<string> = "2.99.1";
const BBS_VERSION: Readonly<string> = "2.100.0";
const BBS_UA_MOBILE: Readonly<string> = `Mozilla/5.0 (Linux; Android 12) Mobile miHoYoBBS/${BBS_VERSION}`;
const BBS_UA_PC: Readonly<string> = `Mozilla/5.0 (Windows NT 10.0; Win64; x64) miHoYoBBS/${BBS_VERSION}`;
/**
* salt 值
* @since Beta v0.9.1
* @remarks 2.99.1
* @remarks 2.100.0
*/
const BBS_SALT: Readonly<Record<SaltKey, string>> = {
K2: "b0EofkfMKq2saWV9fwux18J5vzcFTlex",
LK2: "DlOUwIupfU6YespEUWDJmXtutuXV6owG",
K2: "SVHcDPuPJYhcm57aSLDe7IwI5gvjgAib",
LK2: "AUtLYA9P6PLDXW6VC7pEBDLRarap3RsA",
X4: "xV8v4Qu54lUKrEYFZkJhB8cuOh9Asafs",
X6: "t0qEgfub6cvueAPgR5m9aQWWVciEer7v",
PROD: "t0qEgfub6cvueAPgR5m9aQWWVciEer7v",