Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package QMPlay2 for openSUSE:Factory checked in at 2024-12-09 21:11:07 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/QMPlay2 (Old) and /work/SRC/openSUSE:Factory/.QMPlay2.new.29675 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "QMPlay2" Mon Dec 9 21:11:07 2024 rev:86 rq:1229075 version:24.12.06 Changes: -------- --- /work/SRC/openSUSE:Factory/QMPlay2/QMPlay2.changes 2024-06-17 19:30:38.912787347 +0200 +++ /work/SRC/openSUSE:Factory/.QMPlay2.new.29675/QMPlay2.changes 2024-12-09 21:12:24.303058125 +0100 @@ -1,0 +2,23 @@ +Sat Dec 7 12:59:18 UTC 2024 - Simon Vogl <simon.v...@gmx.net> + +- Update to version 24.12.06: + * optimize visualizations when wallpaper is used (especially for + Qt6), + * fix issues with some unsupported codecs for DXVA2/D3D11VA, + * fix loading Vulkan library for some Linux distributions, + * fix displaying covers for radio stations (regression), + * improve applying custom styles for ASS/SSA subtitles, + * fix enlarging small covers when blur is disabled, + * add displaying frequency limit for FFT spectrum, + * fix MediaBrowser download file names on Qt 6.8, + * add bold font style for text subtitles, + * read CUE files containing binary data, + * use white subtitles color as default, + * fix playlist sorting for mixed case, + * allow to scale bitmap subtitles, + * add more YouTubeDL settings, + * update translations files, + * other minor fixes. +- Add 0001-fix-log-message.patch to fix excessive log generation + +------------------------------------------------------------------- Old: ---- QMPlay2-24.06.16.1718569701.935a51e.obscpio New: ---- 0001-fix-log-message.patch QMPlay2-24.12.06.1733505608.797bfde.obscpio BETA DEBUG BEGIN: New: * other minor fixes. - Add 0001-fix-log-message.patch to fix excessive log generation BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ QMPlay2.spec ++++++ --- /var/tmp/diff_new_pack.OsZqWB/_old 2024-12-09 21:12:27.919209419 +0100 +++ /var/tmp/diff_new_pack.OsZqWB/_new 2024-12-09 21:12:27.931209921 +0100 @@ -19,11 +19,11 @@ %define __builder Ninja %bcond_without qt6 -%define _mtime 1718569701 -%define _commit 935a51e +%define _mtime 1733505608 +%define _commit 797bfde Name: QMPlay2 -Version: 24.06.16 +Version: 24.12.06 Release: 0 Summary: A Qt based media player, streamer and downloader License: LGPL-3.0-or-later @@ -32,6 +32,8 @@ Source: %{name}-%{version}.%{_mtime}.%{_commit}.tar.gz # PATCH-FEATURE-OPENSUSE 0001-add-opensuse-customizations.patch -- Fix python executable detection and add branding Patch1: 0001-add-opensuse-customizations.patch +# PATCH-FIX-UPSTREAM 0001-fix-log-message.patch -- Fix excessive error log messages +Patch2: 0001-fix-log-message.patch BuildRequires: clang BuildRequires: cmake >= 3.16 BuildRequires: llvm-gold @@ -110,6 +112,7 @@ %autosetup -p1 -n %{name}-%{version}.%{_mtime}.%{_commit} # %setup -q -n %{name}-%{version}.%{_mtime}.%{_commit} # %patch1 -p1 +# %patch2 -p1 %build # Build options ++++++ 0001-fix-log-message.patch ++++++ >From 2ded75d71b78ce7859bc0b9b11f30e2dfd39da95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C5=82a=C5=BCej=20Szczygie=C5=82?= <mumei6...@gmail.com> Date: Sat, 7 Dec 2024 09:06:02 +0100 Subject: [PATCH] DemuxerThr: Don't try to decode image from empty array Closes #789 --- src/gui/DemuxerThr.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/gui/DemuxerThr.cpp b/src/gui/DemuxerThr.cpp index 33930bd9e..1ac889309 100644 --- a/src/gui/DemuxerThr.cpp +++ b/src/gui/DemuxerThr.cpp @@ -93,7 +93,10 @@ void DemuxerThr::loadImage() if (isDemuxerReady()) { const QByteArray demuxerImage = demuxer->image(); - QImage img = QImage::fromData(demuxerImage); + QImage img = demuxerImage.isEmpty() + ? QImage() + : QImage::fromData(demuxerImage) + ; if (!img.isNull()) emit QMPlay2Core.coverDataFromMediaFile(demuxerImage); else ++++++ QMPlay2-24.06.16.1718569701.935a51e.obscpio -> QMPlay2-24.12.06.1733505608.797bfde.obscpio ++++++ /work/SRC/openSUSE:Factory/QMPlay2/QMPlay2-24.06.16.1718569701.935a51e.obscpio /work/SRC/openSUSE:Factory/.QMPlay2.new.29675/QMPlay2-24.12.06.1733505608.797bfde.obscpio differ: char 48, line 1 ++++++ QMPlay2.obsinfo ++++++ --- /var/tmp/diff_new_pack.OsZqWB/_old 2024-12-09 21:12:28.423230507 +0100 +++ /var/tmp/diff_new_pack.OsZqWB/_new 2024-12-09 21:12:28.447231511 +0100 @@ -1,5 +1,5 @@ name: QMPlay2 -version: 24.06.16.1718569701.935a51e -mtime: 1718569701 -commit: 935a51ecf20afe48145af7f9aa7c413c79e85fe9 +version: 24.12.06.1733505608.797bfde +mtime: 1733505608 +commit: 797bfdeb7389edbac806bdbf795bf585b56595ec ++++++ _service ++++++ --- /var/tmp/diff_new_pack.OsZqWB/_old 2024-12-09 21:12:28.659240381 +0100 +++ /var/tmp/diff_new_pack.OsZqWB/_new 2024-12-09 21:12:28.695241887 +0100 @@ -1,8 +1,8 @@ <services> <service name="obs_scm" mode="manual"> - <param name="versionprefix">24.06.16</param> + <param name="versionprefix">24.12.06</param> <param name="url">https://github.com/zaps166/QMPlay2.git</param> - <param name="revision">935a51ecf20afe48145af7f9aa7c413c79e85fe9</param> + <param name="revision">797bfdeb7389edbac806bdbf795bf585b56595ec</param> <param name="scm">git</param> <param name="submodules">enable</param> <param name="changesgenerate">disable</param>