diff --git a/publish/changeLog.md b/publish/changeLog.md index b61d5f2d..5888f269 100644 --- a/publish/changeLog.md +++ b/publish/changeLog.md @@ -7,6 +7,7 @@ ### 优化 - 优化播放详情页背景显示,现在有背景图片的主题可以在播放详情页显示它的图片了 +- 在全屏状态下的播放详情页仍会显示退出播放详情页按钮,同时在其旁边添加退出全屏按钮 ### 修复 diff --git a/src/lang/en-us.json b/src/lang/en-us.json index 63a800bc..1fdce610 100644 --- a/src/lang/en-us.json +++ b/src/lang/en-us.json @@ -53,6 +53,7 @@ "download__runing": "Downloading", "download__status": "Status", "export": "Export", + "fullscreen_exit": "Exit Full Screen", "history_clear": "Clear History", "history_remove": "Right click to remove this entry", "history_search": "History Searches", diff --git a/src/lang/zh-cn.json b/src/lang/zh-cn.json index 37daa6b6..f5241d1d 100644 --- a/src/lang/zh-cn.json +++ b/src/lang/zh-cn.json @@ -53,6 +53,7 @@ "download__runing": "正在下载", "download__status": "状态", "export": "导出", + "fullscreen_exit": "退出全屏", "history_clear": "清空搜索历史", "history_remove": "右击移除该历史", "history_search": "历史搜索", diff --git a/src/lang/zh-tw.json b/src/lang/zh-tw.json index dc8ac77b..d1781ce9 100644 --- a/src/lang/zh-tw.json +++ b/src/lang/zh-tw.json @@ -53,6 +53,7 @@ "download__runing": "正在下載", "download__status": "狀態", "export": "導出", + "fullscreen_exit": "退出全屏", "history_clear": "清空搜索歷史", "history_remove": "右擊移除該歷史", "history_search": "歷史搜索", diff --git a/src/renderer/assets/svgs/fullscreen-exit.svg b/src/renderer/assets/svgs/fullscreen-exit.svg new file mode 100644 index 00000000..1f443d9b --- /dev/null +++ b/src/renderer/assets/svgs/fullscreen-exit.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/renderer/components/core/PlayDetail/index.vue b/src/renderer/components/core/PlayDetail/index.vue index f709017b..1449558d 100644 --- a/src/renderer/components/core/PlayDetail/index.vue +++ b/src/renderer/components/core/PlayDetail/index.vue @@ -1,6 +1,6 @@