Skip to content

Commit ed2927a

Browse files
soso
authored andcommitted
Release v0.1.4
1 parent fc65ca7 commit ed2927a

4 files changed

Lines changed: 41 additions & 8 deletions

File tree

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.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "emby302gateway-rs"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
edition = "2024"
55
license = "MIT"
66

docs/changelog.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# 版本更新日志
22

3+
## v0.1.4
4+
5+
发布时间:2026-05-27
6+
7+
### 新增
8+
9+
- 新增本次发布版本记录,版本号从 `v0.1.3` 升级到 `v0.1.4`
10+
11+
### 优化
12+
13+
- 优化移动端顶部导航布局,品牌区域、菜单和退出登录按钮在窄屏下分行排布,减少互相挤压。
14+
- 移动端品牌版本文字改为省略显示,避免长版本状态撑开顶部栏。
15+
16+
### 修复
17+
18+
- 修复手机端前端 UI 中 logo 只显示蓝色 `E` 图标、品牌名称和版本信息被隐藏的问题。
19+
- 修复小屏宽度下退出登录按钮占满整行导致导航区域高度异常的问题。
20+
21+
### 验证
22+
23+
- `cargo fmt`
24+
- `cargo check`
25+
- `cd frontend && npx vue-tsc -b --noEmit`
26+
327
## v0.1.3
428

529
发布时间:2026-05-27

frontend/src/style.css

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1926,7 +1926,7 @@ textarea:focus {
19261926
top: 0;
19271927
height: auto;
19281928
display: grid;
1929-
grid-template-columns: auto minmax(0, 1fr) auto;
1929+
grid-template-columns: minmax(0, 1fr) auto;
19301930
align-items: center;
19311931
gap: 10px;
19321932
border-right: 0;
@@ -1935,15 +1935,21 @@ textarea:focus {
19351935
}
19361936

19371937
.sidebar .brand-row.compact {
1938+
min-width: 0;
19381939
padding: 0;
19391940
}
19401941

1941-
.sidebar .brand-row.compact strong,
1942-
.sidebar .brand-row.compact small {
1943-
display: none;
1942+
.sidebar .brand-version strong,
1943+
.sidebar .brand-version small {
1944+
overflow: hidden;
1945+
max-width: 42vw;
1946+
text-overflow: ellipsis;
1947+
white-space: nowrap;
19441948
}
19451949

19461950
nav {
1951+
grid-column: 1 / -1;
1952+
grid-row: 2;
19471953
display: flex;
19481954
gap: 6px;
19491955
min-width: 0;
@@ -1966,6 +1972,8 @@ textarea:focus {
19661972
}
19671973

19681974
.nav-item.logout {
1975+
grid-column: 2;
1976+
grid-row: 1;
19691977
width: auto;
19701978
margin-top: 0;
19711979
min-width: max-content;
@@ -2264,11 +2272,12 @@ textarea:focus {
22642272
}
22652273

22662274
.sidebar {
2267-
grid-template-columns: 30px minmax(0, 1fr);
2275+
grid-template-columns: minmax(0, 1fr) auto;
22682276
}
22692277

22702278
.nav-item.logout {
2271-
grid-column: 1 / -1;
2279+
grid-column: 2;
2280+
grid-row: 1;
22722281
justify-content: center;
22732282
}
22742283

0 commit comments

Comments
 (0)