chore: bump 1.3.4-1 + sidebar 底部行折成单行#462
Merged
Merged
Conversation
added 2 commits
May 17, 2026 10:17
把 sidebar 底部「⚙ 设置」和「版本 v1.3.x」从上下两行折成一行: - 设置按钮 display 由 flex 改成 inline-flex,去掉 label 的 flex:1 (不再撑满 sidebar 宽度) - 版本 chip(含 BETA 标)用 marginLeft: auto 推到行尾 外观更紧凑、纵向更省、视觉重心从两行散开收到一行。
`-1` 后缀让 appVersion.ts 的 IS_BETA_BUILD 自动判为 Beta,UI 上的 BETA 标签会自动恢复显示。bump-version.sh 不收带 dash 的 prerelease 格式,所以这次手动同步 5 个文件(package.json / package-lock.json root + nested / tauri.conf.json / Cargo.toml / Cargo.lock)。 发布 tag 仍走 v<v>-beta-tauri:v1.3.4-1-beta-tauri。
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
2 tasks
appergb
added a commit
that referenced
this pull request
May 17, 2026
PR #462 把底部折成一行,结果在窄 sidebar 下「设置」被挤成两行 竖字、版本 chip 糊在旁边,可读性大幅退化。改回两行但反过来: - 上行:[BETA] 版本 v1.3.4-1(容下 BETA 标 + 完整版本号) - 下行:⚙ 设置(真正落到最底,符合最初诉求) 设置按钮恢复 display:flex + label flex:1 跟上面 nav 按钮统一风格。 Co-authored-by: baiqing <lbx12309@icloud.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
User description
Summary
flex:1,由 flex 改 inline-flex,紧贴文字。1.3.3→1.3.4-1。dash 后缀让appVersion.ts::IS_BETA_BUILD自动判为 Beta,UI 的 BETA 标签自动恢复。后续打 tagv1.3.4-1-beta-tauri走 Beta channel。本轮 Beta release 累积内容(自 v1.3.3-beta-tauri 之后):
Test plan
npx tsc --noEmitexit 0cargo checkclean(只有 pre-existing warnings)PR Type
Enhancement, Other
Description
Compact the sidebar footer layout
Align settings button and version chip
Bump app and Tauri versions
Diagram Walkthrough
File Walkthrough
FloatingShell.tsx
Compact sidebar footer into one rowopenless-all/app/src/components/FloatingShell.tsx
inline-flexand remove the stretched labelmarginLeft: autopackage.json
Bump app package versionopenless-all/app/package.json
1.3.3to1.3.4-1Cargo.toml
Bump Tauri crate versionopenless-all/app/src-tauri/Cargo.toml
1.3.3to1.3.4-1tauri.conf.json
Sync Tauri config versionopenless-all/app/src-tauri/tauri.conf.json
1.3.3to1.3.4-1