From 4760f79ab57b0465d9f776d607428884155a88e4 Mon Sep 17 00:00:00 2001 From: lyswhut Date: Sun, 28 Apr 2024 18:57:22 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E6=8F=8F=E8=BF=B0=EF=BC=8C?= =?UTF-8?q?=E7=BB=9F=E4=B8=80=E5=9C=A8=E7=BA=BF=E5=AF=BC=E5=85=A5=E9=9F=B3?= =?UTF-8?q?=E6=BA=90=E5=A4=A7=E5=B0=8F=E9=99=90=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- publish/changeLog.md | 5 +++-- .../views/Setting/components/UserApiOnlineImportModal.vue | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/publish/changeLog.md b/publish/changeLog.md index 8f4f393e..b11532b3 100644 --- a/publish/changeLog.md +++ b/publish/changeLog.md @@ -1,6 +1,6 @@ ### 新增 -- 允许添加 `m4a`、`goa` 格式的本地歌曲到列表中(#1864) +- 允许添加 `m4a`、`oga` 格式的本地歌曲到列表中(#1864) ### 优化 @@ -10,7 +10,8 @@ - 修复存在多级弹窗时的背景显示问题 - 增大在线导入自定义源文件的大小限制问题(#1857) -- 在歌词滚动结束后清理窗口阴影,缓解Mac下桌面歌词出现残留阴影的问题(#1869, Thanks @zclorne) +- 修复Mac下窗口出现残留阴影的问题,这解决了Mac下桌面歌词出现残留阴影的远古bug,感谢 @zclorne (#1869, Thanks @zclorne) +- 增大在线导入自定义源文件的大小限制,解决某些音源无法导入的问题(#1857) ### 变更 diff --git a/src/renderer/views/Setting/components/UserApiOnlineImportModal.vue b/src/renderer/views/Setting/components/UserApiOnlineImportModal.vue index 1a76c499..8a062de0 100644 --- a/src/renderer/views/Setting/components/UserApiOnlineImportModal.vue +++ b/src/renderer/views/Setting/components/UserApiOnlineImportModal.vue @@ -69,7 +69,7 @@ export default { this.disabled = false this.btnText = this.$t('user_api_import_online__input_confirm') } - if (script.length > 3_000_000) { + if (script.length > 9_000_000) { void dialog(this.$t('user_api_import__failed', { message: 'Too large script', confirm: this.$t('ok'),