diff --git a/CHANGELOG.md b/CHANGELOG.md index a091a16f..c46593a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,35 @@ Author: 目棃 Description: CHANGELOG Date: 2024-01-15 -Update: 2024-01-19 +Update: 2024-01-30 --- > 本文档 [`Frontmatter`](https://github.com/BTMuli/MuCli#Frontmatter) 由 [MuCli](https://github.com/BTMuli/Mucli) 自动生成于 `2024-01-15 17:29:15` > -> 更新于 `2024-01-19 10:25:54` +> 更新于 `2024-01-30 13:33:39` + +## [0.4.2](https://github.com/BTMuli/TeyvatGuide/releases/v0.4.2) (2024-01-30) + +### Feat + +- 应用:支持日志记录 [`#83`](https://github.com/BTMuli/TeyvatGuide/issues/83) +- 图鉴:角色/武器图鉴支持查看材料详细信息 +- 资源:游戏资源更新至 4.4 版本 [`#86`](https://github.com/BTMuli/TeyvatGuide/issues/86) +- 成就:支持查看成就详细信息,数据来源于 [`amos-data`](https://github.com/yuehaiteam/amos-data) +- 首页:祈愿卡池 Up 角色支持直接跳转到对应图鉴界面 + +### Fix + +- 应用:完善用户账号数据返回,修复部分用户数据获取失败 +- 应用:修复深渊页面分享图生成错误,完善分享&上传判断 +- 首页:采用 `emit` 替代 `interval`,提升性能 +- JSBridge:修复特定情况下的 `panic` + +### Change + +- 应用:设置页面重构 +- 应用:首页组件配置移至首页 +- 帖子:调整别野卡片、合集 overlay 样式 ## [0.4.1](https://github.com/BTMuli/TeyvatGuide/releases/v0.4.1) (2024-01-19) diff --git a/README.md b/README.md index 1982b093..083adafe 100644 --- a/README.md +++ b/README.md @@ -2,12 +2,12 @@ Author: 目棃 Description: 说明文档 Date: 2023-03-05 -Update: 2024-01-15 +Update: 2024-01-30 --- > 本文档 [`Frontmatter`](https://github.com/BTMuli/MuCli#Frontmatter) 由 [MuCli](https://github.com/BTMuli/Mucli) 自动生成于 `2023-03-05 14:41:55` > -> 更新于 `2024-01-15 17:32:59` +> 更新于 `2024-01-30 13:25:48` ![](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) @@ -127,6 +127,7 @@ Game Tool for Genshin Impact player, supports Windows and macOS. - [gs-helper](https://github.com/vikiboss/gs-helper) - [paimon-moe](https://github.com/MadeBaruna/paimon-moe) - [Adachi-BOT](https://github.com/Arondight/Adachi-BOT) +- [amos-data](https://github.com/yuehaiteam/amos-data) 感谢 JetBrains 提供的开源许可证。 diff --git "a/docs/\351\241\271\347\233\256\350\265\204\346\272\220\350\257\264\346\230\216.md" "b/docs/\351\241\271\347\233\256\350\265\204\346\272\220\350\257\264\346\230\216.md" index e4d8dbe2..93ad7310 100644 --- "a/docs/\351\241\271\347\233\256\350\265\204\346\272\220\350\257\264\346\230\216.md" +++ "b/docs/\351\241\271\347\233\256\350\265\204\346\272\220\350\257\264\346\230\216.md" @@ -2,12 +2,12 @@ Author: 目棃 Description: 项目资源说明 Date: 2023-03-10 -Update: 2024-01-01 +Update: 2024-01-30 --- > 本文档 [`Frontmatter`](https://github.com/BTMuli/MuCli#Frontmatter) 由 [MuCli](https://github.com/BTMuli/Mucli) 自动生成于 `2023-03-10 22:05:44` > -> 更新于 `2024-01-01 00:19:35` +> 更新于 `2024-01-30 13:34:21` ## 说明 @@ -22,6 +22,7 @@ Update: 2024-01-01 - [TGAssistant](https://github.com/BTMuli/TGAssistant):项目下游仓库,用于处理项目数据。 - [Snap.Metadata](https://github.com/DGP-Studio/Snap.Metadata):胡桃元数据仓库,项目大部分数据来源于此。 - [Snap.Static](https://github.com/DGP-Studio/Snap.Static):胡桃静态资源仓库,项目部分图像资源来源于此。 +- [amos-data](https://github.com/yuehaiteam/amos-data):成就数据仓库,成就数据的详细信息来源于此。 ## 字体 diff --git a/package.json b/package.json index 061495e3..56ac2ba4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "TeyvatGuide", - "version": "0.4.1", + "version": "0.4.2", "description": "Game Tool for Genshin Impact player", "private": true, "packageManager": "pnpm@8.14.1", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index e8e98e90..bd6a37c5 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "TeyvatGuide" -version = "0.4.1" +version = "0.4.2" dependencies = [ "chrono", "log", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index cabcdfae..e9efa753 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "TeyvatGuide" -version = "0.4.1" +version = "0.4.2" description = "Game Tool for Genshin Impact player" authors = ["BTMuli "] license = "MIT" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index d1a5b8ea..3dcf857f 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "TeyvatGuide", - "version": "0.4.1" + "version": "0.4.2" }, "tauri": { "allowlist": { diff --git a/tsconfig.json b/tsconfig.json index 01a617ae..afe0eab2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,7 +13,7 @@ "lib": ["DOM", "ESNext"], "types": ["vite/client"], "allowSyntheticDefaultImports": true, - "composite": true + "composite": true, }, "include": [ "*.yml", @@ -23,6 +23,6 @@ "src/**/*.vue", "src/data/**/*.json", "tsconfig.json", - "vite.config.ts" - ] + "vite.config.ts", + ], }