🚀 v0.9.3

This commit is contained in:
BTMuli
2026-01-19 12:47:36 +08:00
parent 1eb36bd606
commit a7bb92df0c
8 changed files with 16 additions and 11 deletions

View File

@@ -1,3 +1,3 @@
VITE_SENTRY_RELEASE=TeyvatGuide@0.9.2
VITE_COMMIT_HASH=40cf7edb
VITE_BUILD_TIME=1768742260
VITE_SENTRY_RELEASE=TeyvatGuide@0.9.3
VITE_COMMIT_HASH=1eb36bd6
VITE_BUILD_TIME=1768798003

View File

@@ -107,7 +107,7 @@ jobs:
run: |
echo "Uploading release: $SENTRY_RELEASE"
sentry-cli releases new "$SENTRY_RELEASE"
sentry-cli upload-dif src-tauri/target/release/TeyvatGuide.pdb
sentry-cli debug-files upload --include-sources src-tauri/src src-tauri/target/release/TeyvatGuide.pdb
sentry-cli releases finalize "$SENTRY_RELEASE"
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}

View File

@@ -2,12 +2,17 @@
Author: 目棃
Description: CHANGELOG
Date: 2025-09-09
Update: 2026-01-18
Update: 2026-01-19
---
> 本文档 [`Frontmatter`](https://github.com/BTMuli/MuCli#Frontmatter) 由 [MuCli](https://github.com/BTMuli/Mucli) 自动生成于 `2025-09-09 14:30:56`
>
> 更新于 `2026-01-18 20:35:21`
> 更新于 `2026-01-19 12:43:24`
## [0.9.3](https://github.com/BTMuli/TeyvatGuide/releases/v0.9.3) (2025-01-19)
- 🐛 修复导入调用参数异常
- 🚸 设置页胡桃云用户信息刷新防抖处理
## [0.9.2](https://github.com/BTMuli/TeyvatGuide/releases/v0.9.2) (2025-01-18)

View File

@@ -6,7 +6,6 @@ import pluginYml from "eslint-plugin-yml";
import * as ymlParser from "yaml-eslint-parser";
const eslintConfigYml = [
...pluginYml.configs.recommended,
{
files: ["**/*.yml", "**/*.yaml"],
plugins: { yml: pluginYml },

View File

@@ -1,6 +1,6 @@
{
"name": "teyvatguide",
"version": "0.9.2",
"version": "0.9.3",
"description": "Game Tool for GenshinImpact player",
"private": true,
"packageManager": "pnpm@10.28.0",

View File

@@ -1,6 +1,6 @@
[package]
name = "TeyvatGuide"
version = "0.9.2"
version = "0.9.3"
description = "Game Tool for Genshin Impact player"
authors = ["BTMuli <bt-muli@outlook.com>"]
license = "MIT"

View File

@@ -2,7 +2,7 @@
"$schema": "https://schema.tauri.app/config/2",
"productName": "TeyvatGuide",
"identifier": "TeyvatGuide",
"version": "0.9.2",
"version": "0.9.3",
"build": {
"beforeDevCommand": "pnpm vite:dev",
"beforeBuildCommand": "pnpm vite:build",

View File

@@ -720,7 +720,8 @@ async function checkData(): Promise<void> {
await showLoading.update(`尝试获取Hakushi数据`);
await loadHakushi();
}
const find2 = hakushiData.value.find((i) => i.name === data.name && i.type === data.type);
// TODO: 如果有名字重复的需要注意
const find2 = hakushiData.value.find((i) => i.name === data.name);
if (find2) {
await showLoading.update(`${data.name} -> ${find2.id}`);
await TSUserGacha.update.itemId(data, find2.id);