Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rssguard for openSUSE:Factory checked in at 2023-05-01 18:51:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rssguard (Old) and /work/SRC/openSUSE:Factory/.rssguard.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rssguard" Mon May 1 18:51:15 2023 rev:42 rq:1083780 version:4.3.4 Changes: -------- --- /work/SRC/openSUSE:Factory/rssguard/rssguard.changes 2023-04-10 20:16:53.576927336 +0200 +++ /work/SRC/openSUSE:Factory/.rssguard.new.1533/rssguard.changes 2023-05-01 18:51:17.333393565 +0200 @@ -1,0 +2,34 @@ +Wed Apr 26 20:17:04 UTC 2023 - Jaime MarquÃnez Ferrándiz <[email protected]> + +- Update to version 4.3.4 + + Added: + - Persistent article/item viewer. By default it is on. If no article is + selected but feed/category is, then miscellaneous information about + selected feed list item is displayed. (gh#martinrotter/rssguard#424) + - Reworked logic of determining which article states + (read/unread/starred/unstarred) have changed when synchronizing states to + remote feed servers. This concerns all synchronized plugins like Gmail, + Greader, Feedly, etc. and show in theory lead to much better performance + when you mark many articles as read or unread. + - Couple of extra QoL enhancements for Gmail like proper encoding of + attachment filenames, turned off displaying of "enclosures" as these are + displayed in other way, etc. + + Fixed: + - Deadlock when fetching feeds in some corner situations is now resolved. + (gh#martinrotter/rssguard#910) + - URLs of articles are now sanitized from leading and trailing spaces. + (gh#martinrotter/rssguard#914) + - ATOM feeds were mistakenly changed to RSS feeds during OPML import. + (gh#martinrotter/rssguard#913) + - Now compiles with GCC 13. (gh#martinrotter/rssguard#911) + - Freezing of GUI when fetching feeds should now be gone even on newer Qt + library. + - Correct account-wide proxy is used when importing feeds. + - Article duplicity checks are now much more useful and actually working in + article filters. + - Translations synced. + - All buttons from article toolbar now correctly follow tool button style. +- Add rssguard-4.3.4-fix-build.patch +- Drop rssguard-4.3.3-fix-build.patch + +------------------------------------------------------------------- Old: ---- rssguard-4.3.3-fix-build.patch rssguard-4.3.3.tar.gz New: ---- rssguard-4.3.4-fix-build.patch rssguard-4.3.4.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rssguard.spec ++++++ --- /var/tmp/diff_new_pack.YXvCFa/_old 2023-05-01 18:51:18.389399833 +0200 +++ /var/tmp/diff_new_pack.YXvCFa/_new 2023-05-01 18:51:18.397399880 +0200 @@ -16,9 +16,9 @@ # -%define libver 4_3_3 +%define libver 4_3_4 Name: rssguard -Version: 4.3.3 +Version: 4.3.4 Release: 0 Summary: RSS/ATOM/RDF feed reader License: AGPL-3.0-or-later AND GPL-3.0-only @@ -27,8 +27,8 @@ Source1: %{name}.changes # PATCH-FIX-OPENSUSE rssguard-4.2.2-add_library_version.patch [email protected] -- add version to shared library Patch0: rssguard-4.2.2-add_library_version.patch -# PATCH-FIX-UPSTREAM rssguard-4.3.3-fix-build.patch [email protected] -- https://github.com/martinrotter/rssguard/issues/911 -Patch1: rssguard-4.3.3-fix-build.patch +# PATCH-FIX-UPSTREAM rssguard-4.3.4-fix-build.patch [email protected] -- https://github.com/martinrotter/rssguard/pull/928 +Patch1: rssguard-4.3.4-fix-build.patch BuildRequires: fdupes BuildRequires: gcc-c++ BuildRequires: hicolor-icon-theme ++++++ rssguard-4.3.3-fix-build.patch -> rssguard-4.3.4-fix-build.patch ++++++ --- /work/SRC/openSUSE:Factory/rssguard/rssguard-4.3.3-fix-build.patch 2023-04-10 20:16:53.308925769 +0200 +++ /work/SRC/openSUSE:Factory/.rssguard.new.1533/rssguard-4.3.4-fix-build.patch 2023-05-01 18:51:17.065391973 +0200 @@ -1,13 +1,29 @@ -Index: rssguard-4.3.3/src/librssguard/3rd-party/mimesis/quoted-printable.cpp -=================================================================== ---- rssguard-4.3.3.orig/src/librssguard/3rd-party/mimesis/quoted-printable.cpp -+++ rssguard-4.3.3/src/librssguard/3rd-party/mimesis/quoted-printable.cpp -@@ -19,6 +19,8 @@ - - #include "quoted-printable.hpp" - -+#include <cstdint> -+ - using namespace std; - - string quoted_printable_decode(string_view in) { +From 0fe76799f4bed92aea4fe38ac29e52879af63266 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Jaime=20Marqui=CC=81nez=20Ferra=CC=81ndiz?= + <[email protected]> +Date: Wed, 26 Apr 2023 21:54:25 +0200 +Subject: [PATCH] Fix build error with the -Werror=return-type flag + +--- + src/librssguard/core/messageobject.cpp | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/src/librssguard/core/messageobject.cpp b/src/librssguard/core/messageobject.cpp +index fa7ee17f4..3f18926ef 100644 +--- a/src/librssguard/core/messageobject.cpp ++++ b/src/librssguard/core/messageobject.cpp +@@ -178,9 +178,11 @@ QString MessageObject::createLabelId(const QString& title, const QString& hex_co + + if (hex_color.isEmpty()) { + // Generate color. ++ return nullptr; + } + + // TODO: CONTINUE ++ return nullptr; + } + + void MessageObject::addEnclosure(const QString& url, const QString& mime_type) const { +-- +2.40.0 + ++++++ rssguard-4.3.3.tar.gz -> rssguard-4.3.4.tar.gz ++++++ /work/SRC/openSUSE:Factory/rssguard/rssguard-4.3.3.tar.gz /work/SRC/openSUSE:Factory/.rssguard.new.1533/rssguard-4.3.4.tar.gz differ: char 13, line 1
