Skip to content

Commit ed87159

Browse files
committed
release:v3.0.5-alpha.4
1 parent 939d03c commit ed87159

File tree

3 files changed

+23
-8
lines changed

3 files changed

+23
-8
lines changed

docs/2.更新记录.md

+21-5
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,17 @@
1717

1818
---
1919

20-
## v3.0.4-alpha.4 发布日期:2024.1.28
20+
## v3.0.5-alpha.6 发布日期:待定
2121

2222
### 功能
2323

24-
- [x] 本地壁纸,添加右键菜单
25-
- [x] 显示播放进度
26-
- [x] 设置播放进度
2724
- [ ] 播放列表
2825
- [ ] 添加到列表
2926
- [ ] 从列表删除
3027
- [ ] 清空列表
31-
- [ ] 保存列表
28+
- [ ] 保存列表
29+
- [ ] 底部工具栏
30+
- [ ] 上下切换
3231
- [ ] 列表播放模式
3332
- [ ] 单壁纸
3433
- [ ] 顺序
@@ -42,6 +41,23 @@
4241
- [x] 更新mpv(mpv-x86_64-20240121-git-a39f9b6.7z),尝试解决部分系统无法启动
4342
---
4443

44+
## v3.0.5-alpha.4 发布日期:2024.2.1
45+
46+
### 功能
47+
48+
- [x] 本地壁纸,添加右键菜单
49+
- [x] 显示播放进度
50+
- [x] 设置播放进度
51+
- [x] 创建列表
52+
- [x] 列表顺序播放壁纸
53+
54+
### 修复
55+
56+
- [x] 导航栏选中样式不正确
57+
- [x] 视频偶尔被意外暂停
58+
- [x] 更新mpv(mpv-x86_64-20240121-git-a39f9b6.7z),尝试解决部分系统无法启动
59+
---
60+
4561
## v3.0.4-alpha.3 发布日期:2024.1.14
4662

4763
### 功能

src/giantapp-wallpaper-client/Client/Client.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<Platforms>x64</Platforms>
1111
<AssemblyName>LiveWallpaper3</AssemblyName>
1212
<ApplicationIcon>Assets\Img\logo.ico</ApplicationIcon>
13-
<Version>3.0.4-alpha3</Version>
13+
<Version>3.0.5-alpha4</Version>
1414
<PackageProjectUrl>https://giantapp.cn</PackageProjectUrl>
1515
<Authors>巨应君 | Giantapp Studio</Authors>
1616
<ApplicationManifest>app.manifest</ApplicationManifest>

src/giantapp-wallpaper-ui/src/app/(local)/_components/tool-bar/index.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -295,8 +295,7 @@ export function ToolBar({ playingStatus, onChangePlayingStatus }: ToolBarProps)
295295
</PopoverContent>
296296
</Popover> */}
297297
{
298-
(WallpaperMeta.isPlaylist(selectedWallpaper?.meta))
299-
&& <PlaylistSheet selectedWallpaper={selectedWallpaper} />
298+
showPlaylistButton && <PlaylistSheet selectedWallpaper={selectedWallpaper} />
300299
}
301300
</div>
302301
</div>

0 commit comments

Comments
 (0)