Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rssguard for openSUSE:Factory checked in at 2025-06-01 21:36:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rssguard (Old) and /work/SRC/openSUSE:Factory/.rssguard.new.16005 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rssguard" Sun Jun 1 21:36:49 2025 rev:53 rq:1281628 version:4.8.5 Changes: -------- --- /work/SRC/openSUSE:Factory/rssguard/rssguard.changes 2025-04-14 16:50:27.028738275 +0200 +++ /work/SRC/openSUSE:Factory/.rssguard.new.16005/rssguard.changes 2025-06-01 21:37:19.067187551 +0200 @@ -1,0 +2,41 @@ +Thu May 29 21:00:46 UTC 2025 - Jaime Marquínez Ferrándiz <jaime.marquinez.ferran...@fastmail.net> + +- Update to version 4.8.5 + + Added: + - All dropdown filters (for both feed and article lists) can now be + assigned to keyboard shortcuts. + - "Add account" dialog was bit updated. + + Fixed: + - Fixed unwanted "feed error" dialog, now properly configurable. + - Fixed text-based filtering for feed list. + - Dropdown feed list filtering now properly filters out categories and + labels too. + - Selected item behavior when filtering is enabled was refined. +- Update to version 4.8.4 + + Added: + - Notification when feed fetch fails was added. + (gh#martinrotter/rssguard#1698) + - Application can now start in minimized state even without tray icon being + enabled. (gh#martinrotter/rssguard#1713) + - Columns in feed list are now resizeable. + - Feed list now also offers filtering dropdown toolbar button. This allows + easy filtering of feed list the same way as article list already does. + - User can now explicitly disable showing of modal dialogs depending on + notification type. + - Added option to manually reload active skin without restarting the app. + - Unread article dot color is now taken from active skin. + + Fixed: + - HTML formatting was kind of broken for some specific feeds including + bracket symbols. (gh#martinrotter/rssguard#1692) + - AdBlock was not sometimes working. (gh#martinrotter/rssguard#1702) + - Fix blank window upstream bug when doing specific stuff with tray icon. + (gh#martinrotter/rssguard#1672) + - Export folder for database/configuration files is properly remembered. + (gh#martinrotter/rssguard#1667) + - More forgiving OPML parsing. (gh#martinrotter/rssguard#1688, + gh#martinrotter/rssguard#1719) + - Clear eTag headers when feed is purged. + - OpenSSL Qt plugin is properly copied. +- Add fix_missing_returns.patch + +------------------------------------------------------------------- Old: ---- rssguard-4.8.3.tar.gz New: ---- fix_missing_returns.patch rssguard-4.8.5.tar.gz BETA DEBUG BEGIN: New: - OpenSSL Qt plugin is properly copied. - Add fix_missing_returns.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rssguard.spec ++++++ --- /var/tmp/diff_new_pack.EgLxsE/_old 2025-06-01 21:37:19.799217871 +0200 +++ /var/tmp/diff_new_pack.EgLxsE/_new 2025-06-01 21:37:19.803218038 +0200 @@ -16,9 +16,9 @@ # -%define libver 4_8_3 +%define libver 4_8_5 Name: rssguard -Version: 4.8.3 +Version: 4.8.5 Release: 0 Summary: RSS/ATOM/RDF feed reader Group: Productivity/Networking/News/Clients @@ -28,6 +28,8 @@ Source1: %{name}.changes # PATCH-FIX-OPENSUSE rssguard-4.8.1-add_library_version.patch aloi...@gmx.com -- add version to shared library Patch0: rssguard-4.8.1-add_library_version.patch +# PATCH-FIX-OPENSUSE https://github.com/martinrotter/rssguard/pull/1740 +Patch1: fix_missing_returns.patch BuildRequires: fdupes BuildRequires: hicolor-icon-theme BuildRequires: cmake(Qt6Concurrent) ++++++ fix_missing_returns.patch ++++++ >From a4cecfcf8008704c9ff8f447adf1158b426b149d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Marqui=CC=81nez=20Ferra=CC=81ndiz?= <jaime.marquinez.ferran...@fastmail.net> Date: Thu, 29 May 2025 23:48:18 +0200 Subject: [PATCH] Fix build error with the -Werror=return-type flag This flag is automatically enabled in openSUSE Tumbleweed. --- src/librssguard-standard/src/standardfeed.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/librssguard-standard/src/standardfeed.cpp b/src/librssguard-standard/src/standardfeed.cpp index fb0da2b8c..7a52ba1a3 100644 --- a/src/librssguard-standard/src/standardfeed.cpp +++ b/src/librssguard-standard/src/standardfeed.cpp @@ -480,6 +480,9 @@ QString StandardFeed::getHttpDescription() const { case NetworkFactory::Http2Status::Disabled: return tr("disabled"); + + default: + return tr("unknown state"); } } ++++++ rssguard-4.8.3.tar.gz -> rssguard-4.8.5.tar.gz ++++++ /work/SRC/openSUSE:Factory/rssguard/rssguard-4.8.3.tar.gz /work/SRC/openSUSE:Factory/.rssguard.new.16005/rssguard-4.8.5.tar.gz differ: char 13, line 1