🚀 v0.5.5

This commit is contained in:
目棃
2024-09-17 09:05:07 +08:00
parent 5b9f8478e1
commit f6d658e9ce
9 changed files with 38 additions and 18 deletions

View File

@@ -43,11 +43,11 @@ jobs:
- name: setup node
uses: actions/setup-node@v3
with:
node-version: 22.3.0
node-version: 22.8.0
- name: setup pnpm
uses: pnpm/action-setup@v2
with:
version: 9.9.0
version: 9.10.0
- name: Install frontend dependencies
run: pnpm install

View File

@@ -14,13 +14,11 @@ jobs:
- name: setup node
uses: actions/setup-node@v3
with:
node-version: 22.0.0
node-version: 22.8.0
- name: setup pnpm
uses: pnpm/action-setup@v2
with:
version: 9.9.0
- name: remove lockfile
run: rm -f pnpm-lock.yaml
version: 9.10.0
- name: Install dependencies
run: pnpm install
- name: "Qodana Scan"

View File

@@ -2,12 +2,36 @@
Author: 目棃
Description: CHANGELOG
Date: 2024-07-09
Update: 2024-08-27
Update: 2024-09-17
---
> 本文档 [`Frontmatter`](https://github.com/BTMuli/MuCli#Frontmatter) 由 [MuCli](https://github.com/BTMuli/Mucli) 自动生成于 `2024-07-09 14:16:16`
>
> 更新于 `2024-08-27 12:07:18`
> 更新于 `2024-09-17 09:03:55`
## [0.5.5](https://github.com/BTMuli/TeyvatGuide/releases/v0.5.5) (2024-09-17)
- ✨ 帖子回复&子回复查看&分享
- 🐛 修复特定条件下活动组件点击异常
- 💄 战绩页面适配纳塔版本数据部分数据添加icon
- 💄 祈愿页面修复特定条件下的内容溢出
- ♻️ 重构`tp-image`的放缩逻辑及其浮窗的放缩逻辑
- 💄 固定帖子子窗口`主题切换` `图片分享` `收藏编辑`等按钮
- ♻️ 重构数据解析逻辑&公告数据转换逻辑
- 💄 优化图片加载显示
- 🐛 修复特定条件下的帖子数据未能正确解析
- 🐛 添加hoyoverse域名准入修复公告页无法加载国际服数据
- 🎨 设置页缓存即时显示
- 🐛 修复祈愿页面全量刷新逻辑异常
- 🍱 更新5.0数据
- 🐛 修复成就导出时间戳异常 [`#125`](https://github.com/BTMuli/TeyvatGuide/issues/125)
- 🐛 修正子窗口label&子窗口回正异常
- 🐛 修复AppOnInit报错
- ♻️ 重构帖子页面的代码逻辑
- 💄 调整成就系列IconUI调整纳塔Icon浅色模式下的样式
- 💄 祈愿页数据行样式美化
- 🎨 帖子合集浮窗自动平滑滚动到当前帖子
- 🐛 修复子窗口分辨率适应异常
## [0.5.3](https://github.com/BTMuli/TeyvatGuide/releases/v0.5.3) (2024-08-27)

View File

@@ -2,12 +2,12 @@
Author: 目棃
Description: 说明文档
Date: 2023-03-05
Update: 2024-09-04
Update: 2024-09-17
---
> 本文档 [`Frontmatter`](https://github.com/BTMuli/MuCli#Frontmatter) 由 [MuCli](https://github.com/BTMuli/Mucli) 自动生成于 `2023-03-05 14:41:55`
>
> 更新于 `2024-09-04 08:25:09`
> 更新于 `2024-09-17 08:55:09`
![](https://img.shields.io/github/last-commit/BTMuli/TeyvatGuide?style=for-the-badge) ![](https://img.shields.io/github/commits-since/BTMuli/TeyvatGuide/latest?include_prereleases&style=for-the-badge)
@@ -51,6 +51,7 @@ Game Tool for Genshin Impact player, supports Windows and macOS.
- [x] 祈愿管理UIGF v3.0UIGF v4.0
- [x] 留影叙佳期画片查看
- [x] 帖子收藏
- [x] 帖子评论查看&分享
- 登陆功能:

View File

@@ -1,6 +1,6 @@
{
"name": "TeyvatGuide",
"version": "0.5.3",
"version": "0.5.5",
"description": "Game Tool for Genshin Impact player",
"private": true,
"type": "module",

2
src-tauri/Cargo.lock generated
View File

@@ -4,7 +4,7 @@ version = 3
[[package]]
name = "TeyvatGuide"
version = "0.5.3"
version = "0.5.5"
dependencies = [
"chrono",
"log",

View File

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

View File

@@ -1,7 +1,7 @@
{
"productName": "TeyvatGuide",
"identifier": "TeyvatGuide",
"version": "0.5.3",
"version": "0.5.5",
"build": {
"beforeDevCommand": "pnpm vite:dev",
"beforeBuildCommand": "pnpm vite:build",

View File

@@ -1,6 +1,6 @@
-- @file plugins/Sqlite/sql/createTable.sql
-- @brief sqlite数据库创建表语句
-- @since Beta v0.5.3
-- @since Beta v0.5.5
-- @brief 创建成就数据表
create table if not exists Achievements
@@ -114,9 +114,6 @@ create table if not exists UserRecord
updated text
);
-- @brief 删除旧的角色数据表
drop table if exists UserCharacters;
-- @brief 创建角色数据表
create table if not exists UserCharacters
(