From 4334dc8d4bca4f8ea69be0cc73f4eb81261512f3 Mon Sep 17 00:00:00 2001 From: renbin Date: Wed, 3 Apr 2024 14:39:48 +0800 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20=E8=B0=83=E6=95=B4=E6=9C=BA=E5=9E=8B?= =?UTF-8?q?=E6=A3=80=E6=B5=8B=E7=AD=96=E7=95=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 根据适配邮件调整HW机型的匹配方式 Log: 调整部分解码问题 Bug: https://pms.uniontech.com/bug-view-249087.html --- src/backends/mpv/mpv_proxy.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/backends/mpv/mpv_proxy.cpp b/src/backends/mpv/mpv_proxy.cpp index ca121827..788ca273 100644 --- a/src/backends/mpv/mpv_proxy.cpp +++ b/src/backends/mpv/mpv_proxy.cpp @@ -738,7 +738,7 @@ bool isSpecialHWHardware() return false; } - QStringList specilDev{"KLVV", "KLVU", "PGUV", "PGUW", "PGUX", "L540", "W585"}; + QStringList specilDev{"KLVV", "KLVU", "PGUV", "PGUW", "L540", "W585"}; for (const QString &dev : specilDev) { if (info.contains(dev)) { s_DevType = IsHWDev; @@ -748,10 +748,10 @@ bool isSpecialHWHardware() if (NotHWDev == s_DevType) { // dmidecode | grep -i “String 4”中的值来区分主板类型,PWC30表示PanguW(也就是W525) - process.start("bash", {"-c", "dmidecode | grep -i \"String 4\""}); + process.start("bash", {"-c", "dmidecode -t 11 | grep -i \"String 4\""}); process.waitForFinished(100); info = process.readAll(); - if (info.contains("PWC30")) { + if (info.contains("PWC30") || info.contains("PGUX")) { s_DevType = IsHWDev; } } From 67d194fd42b9ded875215133e6b04fa557b0f98f Mon Sep 17 00:00:00 2001 From: renbin Date: Wed, 3 Apr 2024 14:58:27 +0800 Subject: [PATCH 2/2] chore: Bump version to 5.10.48 chore: Bump version to 5.10.48 PR: * https://github.com/linuxdeepin/deepin-movie-reborn/pull/435 * https://github.com/linuxdeepin/deepin-movie-reborn/pull/436 * https://github.com/linuxdeepin/deepin-movie-reborn/pull/437 * https://github.com/linuxdeepin/deepin-movie-reborn/pull/439 * https://github.com/linuxdeepin/deepin-movie-reborn/pull/440 Log: Bump version to 5.10.48 --- debian/changelog | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/debian/changelog b/debian/changelog index 8ce68158..3b61a43a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +deepin-movie-reborn (5.10.48) unstable; urgency=medium + + * New version 5.10.48 + * fix: yuv444p format uses software decoding (Bug: 247589) + * fix: sw jmgpu uses hardware decoding (Bug: 240393) + * fix: cropped rounded corners exist during full-screen playback (Bug: 247735) + * fix: pause icon still displayed when minimized (Bug: 247791) + * fix: HW device hardware decoding detection adjustment (Bug: 249087) + * fix: Adjust device detection strategy (Bug: 249087) + + -- renbin Wed, 03 Apr 2024 14:56:28 +0800 + deepin-movie-reborn (5.10.47) unstable; urgency=medium * New version 5.10.47