Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rssguard for openSUSE:Factory checked in at 2022-01-13 00:22:33 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rssguard (Old) and /work/SRC/openSUSE:Factory/.rssguard.new.1892 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rssguard" Thu Jan 13 00:22:33 2022 rev:33 rq:945872 version:4.1.2 Changes: -------- --- /work/SRC/openSUSE:Factory/rssguard/rssguard.changes 2022-01-08 23:24:29.638274487 +0100 +++ /work/SRC/openSUSE:Factory/.rssguard.new.1892/rssguard.changes 2022-01-13 00:23:31.523980119 +0100 @@ -1,0 +2,14 @@ +Tue Jan 11 08:29:23 UTC 2022 - Luigi Baldoni <aloi...@gmx.com> + +- Update to version 4.1.2 + Fixed: + * Make webengine cookies synchronization one-way because it + was crashing in some instances. This is likely temporary fix. + * Fixed RSS Guard crashing when using MariaDB backend. Problem + was in buggy runtime generation of DDL SQL scripts. + * Expanding/collapsing of categories is now EVEN MORE properly + persistent and behaves more correctly when filtering feed + list in some way. +- Add rssguard-4.1.2-Qt512.patch + +------------------------------------------------------------------- Old: ---- rssguard-4.1.1.tar.gz New: ---- rssguard-4.1.2-Qt512.patch rssguard-4.1.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rssguard.spec ++++++ --- /var/tmp/diff_new_pack.9IgmVe/_old 2022-01-13 00:23:31.979980447 +0100 +++ /var/tmp/diff_new_pack.9IgmVe/_new 2022-01-13 00:23:31.983980451 +0100 @@ -16,9 +16,9 @@ # -%define libver 4_1_1 +%define libver 4_1_2 Name: rssguard -Version: 4.1.1 +Version: 4.1.2 Release: 0 Summary: RSS/ATOM/RDF feed reader License: AGPL-3.0-or-later AND GPL-3.0-only @@ -27,6 +27,8 @@ Source1: %{name}.changes # PATCH-FIX-OPENSUSE rssguard-4.0.2-add_library_version.patch aloi...@gmx.com -- add version to shared library Patch2: rssguard-4.0.2-add_library_version.patch +# PATCH-FIX-UPSTREAM rssguard-4.1.2-Qt512.patch +Patch3: rssguard-4.1.2-Qt512.patch BuildRequires: fdupes BuildRequires: gcc-c++ BuildRequires: hicolor-icon-theme ++++++ rssguard-4.1.2-Qt512.patch ++++++ >From b1d4bd93ec3172fb8886fdcb12af246de65bccf3 Mon Sep 17 00:00:00 2001 From: Martin Rotter <rot...@praktik.cz> Date: Wed, 12 Jan 2022 09:11:21 +0100 Subject: [PATCH] fix 5.12 build --- src/librssguard/gui/feedsview.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/librssguard/gui/feedsview.cpp b/src/librssguard/gui/feedsview.cpp index 971204006..667184567 100644 --- a/src/librssguard/gui/feedsview.cpp +++ b/src/librssguard/gui/feedsview.cpp @@ -609,7 +609,13 @@ void FeedsView::expandItemDelayed(const QModelIndex& source_idx) { // NOTE: These changes are caused by filtering mechanisms // and we don't want to store the values. m_dontSaveExpandState = true; + +#if QT_VERSION >= 0x050D00 // Qt >= 5.13.0 expandRecursively(pidx); +#else + setExpanded(pidx, true); +#endif + m_dontSaveExpandState = false; //}); ++++++ rssguard-4.1.1.tar.gz -> rssguard-4.1.2.tar.gz ++++++ /work/SRC/openSUSE:Factory/rssguard/rssguard-4.1.1.tar.gz /work/SRC/openSUSE:Factory/.rssguard.new.1892/rssguard-4.1.2.tar.gz differ: char 12, line 1