mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2025-12-06 08:32:51 +08:00
🚀 v0.6.5
This commit is contained in:
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
@@ -43,11 +43,11 @@ jobs:
|
||||
- name: setup node
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 23.1.0
|
||||
node-version: 23.3.0
|
||||
- name: setup pnpm
|
||||
uses: pnpm/action-setup@v2
|
||||
with:
|
||||
version: 9.14.4
|
||||
version: 9.15.0
|
||||
- name: Install frontend dependencies
|
||||
run: pnpm install
|
||||
|
||||
|
||||
4
.github/workflows/qodana_code_quality.yml
vendored
4
.github/workflows/qodana_code_quality.yml
vendored
@@ -12,11 +12,11 @@ jobs:
|
||||
- name: setup node
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 23.1.0
|
||||
node-version: 23.3.0
|
||||
- name: setup pnpm
|
||||
uses: pnpm/action-setup@v2
|
||||
with:
|
||||
version: 9.14.4
|
||||
version: 9.15.0
|
||||
- name: Install dependencies
|
||||
run: pnpm install --no-frozen-lockfile
|
||||
- name: "Qodana Scan"
|
||||
|
||||
13
CHANGELOG.md
13
CHANGELOG.md
@@ -2,12 +2,21 @@
|
||||
Author: 目棃
|
||||
Description: CHANGELOG
|
||||
Date: 2024-10-09
|
||||
Update: 2024-12-03
|
||||
Update: 2024-12-11
|
||||
---
|
||||
|
||||
> 本文档 [`Frontmatter`](https://github.com/BTMuli/MuCli#Frontmatter) 由 [MuCli](https://github.com/BTMuli/Mucli) 自动生成于 `2024-10-09 15:51:43`
|
||||
>
|
||||
> 更新于 `2024-12-03 19:57:50`
|
||||
> 更新于 `2024-12-11 15:37:05`
|
||||
|
||||
## [0.6.5](https://github.com/BTMuli/TeyvatGuide/releases/v0.6.5) (2024-12-11)
|
||||
|
||||
- 🍱 添加下半卡池数据&部分资源
|
||||
- ✨ 帖子内容中涉及的话题链接支持应用内跳转
|
||||
- ♻️ 首页组件加载逻辑重构
|
||||
- ✨ UIGF4导入/导出浮窗,支持自选UID
|
||||
- 💄 调整剧诗部分数据缺失时的显示
|
||||
- 🐛 调整部分UI,修复切换账户后角色详情刷新异常
|
||||
|
||||
## [0.6.4](https://github.com/BTMuli/TeyvatGuide/releases/v0.6.4) (2024-12-03)
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "teyvatguide",
|
||||
"version": "0.6.4",
|
||||
"version": "0.6.5",
|
||||
"description": "Game Tool for GenshinImpact player",
|
||||
"private": true,
|
||||
"packageManager": "pnpm@9.14.4",
|
||||
|
||||
2
src-tauri/Cargo.lock
generated
2
src-tauri/Cargo.lock
generated
@@ -4,7 +4,7 @@ version = 3
|
||||
|
||||
[[package]]
|
||||
name = "TeyvatGuide"
|
||||
version = "0.6.4"
|
||||
version = "0.6.5"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
"log",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "TeyvatGuide"
|
||||
version = "0.6.4"
|
||||
version = "0.6.5"
|
||||
description = "Game Tool for Genshin Impact player"
|
||||
authors = ["BTMuli <bt-muli@outlook.com>"]
|
||||
license = "MIT"
|
||||
@@ -24,63 +24,63 @@ walkdir = "2.5.0"
|
||||
|
||||
# deep link 插件
|
||||
[dependencies.tauri-plugin-deep-link]
|
||||
git = "ssh://git@github.com/tauri-apps/plugins-workspace.git"
|
||||
#git = "https://github.com/tauri-apps/plugins-workspace.git"
|
||||
#git = "ssh://git@github.com/tauri-apps/plugins-workspace.git"
|
||||
git = "https://github.com/tauri-apps/plugins-workspace.git"
|
||||
branch = "v2"
|
||||
|
||||
# dialog 插件
|
||||
[dependencies.tauri-plugin-dialog]
|
||||
git = "ssh://git@github.com/tauri-apps/plugins-workspace.git"
|
||||
#git = "https://github.com/tauri-apps/plugins-workspace.git"
|
||||
#git = "ssh://git@github.com/tauri-apps/plugins-workspace.git"
|
||||
git = "https://github.com/tauri-apps/plugins-workspace.git"
|
||||
branch = "v2"
|
||||
|
||||
# fs 插件
|
||||
[dependencies.tauri-plugin-fs]
|
||||
git = "ssh://git@github.com/tauri-apps/plugins-workspace.git"
|
||||
#git = "https://github.com/tauri-apps/plugins-workspace.git"
|
||||
#git = "ssh://git@github.com/tauri-apps/plugins-workspace.git"
|
||||
git = "https://github.com/tauri-apps/plugins-workspace.git"
|
||||
branch = "v2"
|
||||
|
||||
# http 插件
|
||||
[dependencies.tauri-plugin-http]
|
||||
git = "ssh://git@github.com/tauri-apps/plugins-workspace.git"
|
||||
#git = "https://github.com/tauri-apps/plugins-workspace.git"
|
||||
#git = "ssh://git@github.com/tauri-apps/plugins-workspace.git"
|
||||
git = "https://github.com/tauri-apps/plugins-workspace.git"
|
||||
branch = "v2"
|
||||
features = ["unsafe-headers"]
|
||||
|
||||
# log 插件
|
||||
[dependencies.tauri-plugin-log]
|
||||
git = "ssh://git@github.com/tauri-apps/plugins-workspace.git"
|
||||
#git = "https://github.com/tauri-apps/plugins-workspace.git"
|
||||
#git = "ssh://git@github.com/tauri-apps/plugins-workspace.git"
|
||||
git = "https://github.com/tauri-apps/plugins-workspace.git"
|
||||
branch = "v2"
|
||||
|
||||
# os 插件
|
||||
[dependencies.tauri-plugin-os]
|
||||
git = "ssh://git@github.com/tauri-apps/plugins-workspace.git"
|
||||
#git = "https://github.com/tauri-apps/plugins-workspace.git"
|
||||
#git = "ssh://git@github.com/tauri-apps/plugins-workspace.git"
|
||||
git = "https://github.com/tauri-apps/plugins-workspace.git"
|
||||
branch = "v2"
|
||||
|
||||
# process 插件
|
||||
[dependencies.tauri-plugin-process]
|
||||
git = "ssh://git@github.com/tauri-apps/plugins-workspace.git"
|
||||
#git = "https://github.com/tauri-apps/plugins-workspace.git"
|
||||
#git = "ssh://git@github.com/tauri-apps/plugins-workspace.git"
|
||||
git = "https://github.com/tauri-apps/plugins-workspace.git"
|
||||
branch = "v2"
|
||||
|
||||
# shell 插件
|
||||
[dependencies.tauri-plugin-shell]
|
||||
git = "ssh://git@github.com/tauri-apps/plugins-workspace.git"
|
||||
#git = "https://github.com/tauri-apps/plugins-workspace.git"
|
||||
#git = "ssh://git@github.com/tauri-apps/plugins-workspace.git"
|
||||
git = "https://github.com/tauri-apps/plugins-workspace.git"
|
||||
branch = "v2"
|
||||
|
||||
# single-instance 插件
|
||||
[dependencies.tauri-plugin-single-instance]
|
||||
git = "ssh://git@github.com/tauri-apps/plugins-workspace.git"
|
||||
#git = "https://github.com/tauri-apps/plugins-workspace.git"
|
||||
#git = "ssh://git@github.com/tauri-apps/plugins-workspace.git"
|
||||
git = "https://github.com/tauri-apps/plugins-workspace.git"
|
||||
branch = "v2"
|
||||
|
||||
# sqlite 插件
|
||||
[dependencies.tauri-plugin-sql]
|
||||
git = "ssh://git@github.com/tauri-apps/plugins-workspace.git"
|
||||
#git = "https://github.com/tauri-apps/plugins-workspace.git"
|
||||
#git = "ssh://git@github.com/tauri-apps/plugins-workspace.git"
|
||||
git = "https://github.com/tauri-apps/plugins-workspace.git"
|
||||
branch = "v2"
|
||||
features = ["sqlite"]
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"productName": "TeyvatGuide",
|
||||
"identifier": "TeyvatGuide",
|
||||
"version": "0.6.4",
|
||||
"version": "0.6.5",
|
||||
"build": {
|
||||
"beforeDevCommand": "pnpm vite:dev",
|
||||
"beforeBuildCommand": "pnpm vite:build",
|
||||
|
||||
Reference in New Issue
Block a user