From 902a8610b387bf522e00b25f236c08b5ba62d239 Mon Sep 17 00:00:00 2001 From: DuanRay Date: Thu, 19 Oct 2023 16:11:37 +0800 Subject: [PATCH 1/2] fix: complie error --- ...t-mpv-options-compatible-with-high-and-low-mpv-version.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/0010-adjust-mpv-options-compatible-with-high-and-low-mpv-version.patch b/0010-adjust-mpv-options-compatible-with-high-and-low-mpv-version.patch index a1fe426..c30d8b9 100644 --- a/0010-adjust-mpv-options-compatible-with-high-and-low-mpv-version.patch +++ b/0010-adjust-mpv-options-compatible-with-high-and-low-mpv-version.patch @@ -18,7 +18,7 @@ index 0e9d66f..ab9e3da 100755 + int cache = value.toInt(); + if (cache > 31) { + if (isOptionAvailable("--demuxer-max-bytes")) { -+ int byte = value.toString().toInt() * 1024; ++ int bytes = value.toString().toInt() * 1024; + arg << "--demuxer-max-bytes=" << QString::number(bytes); + }else { + arg << "--cache=" + value.toString(); -- Gitee From 5347d29b35357886a79ae8540bfb7fbb1c39cd82 Mon Sep 17 00:00:00 2001 From: DuanRay Date: Thu, 19 Oct 2023 16:15:21 +0800 Subject: [PATCH 2/2] chore: update spec --- nfs-mplayer.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nfs-mplayer.spec b/nfs-mplayer.spec index 78158a8..c4058d0 100644 --- a/nfs-mplayer.spec +++ b/nfs-mplayer.spec @@ -1,6 +1,6 @@ Name: nfs-mplayer Version: 1.0.0 -Release: 13%{?dist} +Release: 14%{?dist} Summary: A great media player Group: Applications/Multimedia License: GPLv2+ @@ -117,6 +117,9 @@ update-desktop-database &> /dev/null || : %changelog +* Thu Oct 19 2023 ruizhe - 1.0.0-14 +- fix variable name error + * Wed Oct 18 2023 ruizhe - 1.0.0-13 - fix setting-dialog font style error -- Gitee