Skip to content

Commit 1f2b49c

Browse files
committed
update changelog for stable version 0.17.1
1 parent b0be94e commit 1f2b49c

6 files changed

Lines changed: 26 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,8 @@ jobs:
209209
# 解析 Linux 产物 (AppImage & deb)
210210
X64_APPIMAGE=$(echo "$ASSETS_JSON" | grep -E "amd64.*\.AppImage$" || echo "")
211211
X64_DEB=$(echo "$ASSETS_JSON" | grep -E "amd64.*\.deb$" || echo "")
212+
ARM64_APPIMAGE=$(echo "$ASSETS_JSON" | grep -E "arm64.*\.AppImage$" || echo "")
213+
ARM64_DEB=$(echo "$ASSETS_JSON" | grep -E "arm64.*\.deb$" || echo "")
212214
213215
CHANGELOG="${{ needs.prepare.outputs.changelog }}"
214216
@@ -227,6 +229,8 @@ jobs:
227229
**Linux**
228230
- [**AppImage (x64)**]($BASE_URL/$X64_APPIMAGE)
229231
- [**Debian/Ubuntu (.deb x64)**]($BASE_URL/$X64_DEB)
232+
- [**AppImage (ARM64)**]($BASE_URL/$ARM64_APPIMAGE)
233+
- [**Debian/Ubuntu (.deb ARM64)**]($BASE_URL/$ARM64_DEB)
230234
231235
### ⚠️ **安装提醒 (Installation Notice)**
232236
不建议安装在 **C:\Program Files** 目录下。该目录需要以管理员权限运行软件才能正常使用以下功能:

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## [0.17.1](https://github.com/huoshen80/ReinaManager/compare/v0.17.0...v0.17.1) (2026-03-14)
2+
3+
<details>
4+
<summary>查看中文版本</summary>
5+
6+
### Bug 修复
7+
* 游戏库滚动条状态会继承到详情页的问题 ([791b726](https://github.com/huoshen80/ReinaManager/commit/791b7268db95ba9b9c1474fbfead3fdb856de0fc))
8+
* 同步本地按钮无法选择本地可执行文件的问题 ([daa98d8](https://github.com/huoshen80/ReinaManager/commit/daa98d8854396be841cce1c4f0b03f3a4e18e4e1))
9+
10+
</details>
11+
12+
### Bug Fixes
13+
14+
* carry over the scrollbar state of the game library to the detail page ([791b726](https://github.com/huoshen80/ReinaManager/commit/791b7268db95ba9b9c1474fbfead3fdb856de0fc))
15+
* the issue of sync local button cannot select local executable file ([daa98d8](https://github.com/huoshen80/ReinaManager/commit/daa98d8854396be841cce1c4f0b03f3a4e18e4e1))
16+
17+
18+
119
## [0.17.0](https://github.com/huoshen80/ReinaManager/compare/v0.16.3...v0.17.0) (2026-03-13)
220

321

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "reinamanager",
33
"private": true,
4-
"version": "0.17.0",
4+
"version": "0.17.1",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["reina-path", "migration"]
33

44
[package]
55
name = "ReinaManager"
6-
version = "0.17.0"
6+
version = "0.17.1"
77
description = "A lightweight visual novel manager"
88
authors = ["huoshen80"]
99
license = "GNU AFFERO GENERAL PUBLIC LICENSE"

vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ export default defineConfig({
99
server: {
1010
// Tauri 工作于固定端口,如果端口不可用则报错
1111
strictPort: true,
12-
host: "0.0.0.0",
1312
port: 5173,
1413
},
1514
clearScreen: false,
1615
// 添加有关当前构建目标的额外前缀,使这些 CLI 设置的 Tauri 环境变量可以在客户端代码中访问
1716
envPrefix: ["VITE_", "TAURI_ENV_"],
1817
build: {
18+
minify: !process.env.TAURI_ENV_DEBUG ? "esbuild" : false,
1919
// 在 debug 构建中生成 sourcemap
2020
sourcemap: !!process.env.TAURI_ENV_DEBUG,
2121
},

0 commit comments

Comments
 (0)