🚀 v0.4.6

This commit is contained in:
目棃
2024-04-24 15:40:35 +08:00
parent 070ab01b22
commit 9bd9f60699
7 changed files with 32 additions and 10 deletions

View File

@@ -26,7 +26,10 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Add Rust targets(macOS) - name: Add Rust targets(macOS Intel)
if: matrix.settings.target == 'macos-intel'
run: rustup target add x86_64-apple-darwin
- name: Add Rust targets(macOS ARM)
if: matrix.settings.target == 'macos-arm' if: matrix.settings.target == 'macos-arm'
run: rustup target add aarch64-apple-darwin run: rustup target add aarch64-apple-darwin
@@ -44,7 +47,7 @@ jobs:
- name: setup pnpm - name: setup pnpm
uses: pnpm/action-setup@v2 uses: pnpm/action-setup@v2
with: with:
version: 9.0.4 version: 9.0.5
- name: remove lockfile - name: remove lockfile
run: rm pnpm-lock.yaml run: rm pnpm-lock.yaml
- name: Install frontend dependencies - name: Install frontend dependencies

View File

@@ -18,7 +18,7 @@ jobs:
- name: setup pnpm - name: setup pnpm
uses: pnpm/action-setup@v2 uses: pnpm/action-setup@v2
with: with:
version: 9.0.4 version: 9.0.5
- name: remove lockfile - name: remove lockfile
run: rm -f pnpm-lock.yaml run: rm -f pnpm-lock.yaml
- name: Install dependencies - name: Install dependencies

View File

@@ -2,12 +2,31 @@
Author: 目棃 Author: 目棃
Description: CHANGELOG Description: CHANGELOG
Date: 2024-01-15 Date: 2024-01-15
Update: 2024-04-05 Update: 2024-04-24
--- ---
> 本文档 [`Frontmatter`](https://github.com/BTMuli/MuCli#Frontmatter) 由 [MuCli](https://github.com/BTMuli/Mucli) 自动生成于 `2024-01-15 17:29:15` > 本文档 [`Frontmatter`](https://github.com/BTMuli/MuCli#Frontmatter) 由 [MuCli](https://github.com/BTMuli/Mucli) 自动生成于 `2024-01-15 17:29:15`
> >
> 更新于 `2024-04-05 14:19:04` > 更新于 `2024-04-24 15:36:42`
## [0.4.6](https://github.com/BTMuli/TeyvatGuide/releases/v0.4.6) (2024-04-24)
### Feat
- 帖子:重构文本解析,现在更加贴近应用内的渲染效果
- 应用:侧边栏点击咨讯时的参数也支持记忆了
- 应用:更新 4.6 版本的游戏资源
### Fix
- 留影叙佳期:修复侧边栏点击时初始画片数异常
- 首页:修复特定情况下日历组件左侧切换日期按钮点击无效
- 帖子:修复 `align:right` 不生效的问题
- 首页:修复特定情况下首页卡池渲染异常
### Change
- 应用:数据库更新后弹出更新日志
## [0.4.5](https://github.com/BTMuli/TeyvatGuide/releases/v0.4.5) (2024-04-05) ## [0.4.5](https://github.com/BTMuli/TeyvatGuide/releases/v0.4.5) (2024-04-05)

View File

@@ -1,9 +1,9 @@
{ {
"name": "TeyvatGuide", "name": "TeyvatGuide",
"version": "0.4.5", "version": "0.4.6",
"description": "Game Tool for Genshin Impact player", "description": "Game Tool for Genshin Impact player",
"private": true, "private": true,
"packageManager": "pnpm@9.0.4", "packageManager": "pnpm@9.0.5",
"type": "module", "type": "module",
"scripts": { "scripts": {
"build": "tauri build", "build": "tauri build",

2
src-tauri/Cargo.lock generated
View File

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

View File

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

View File

@@ -8,7 +8,7 @@
}, },
"package": { "package": {
"productName": "TeyvatGuide", "productName": "TeyvatGuide",
"version": "0.4.5" "version": "0.4.6"
}, },
"tauri": { "tauri": {
"allowlist": { "allowlist": {