Hello community,

here is the log from the commit of package quiterss for openSUSE:Factory 
checked in at 2020-04-22 20:55:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/quiterss (Old)
 and      /work/SRC/openSUSE:Factory/.quiterss.new.2738 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "quiterss"

Wed Apr 22 20:55:05 2020 rev:18 rq:796103 version:0.19.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/quiterss/quiterss.changes        2020-01-31 
23:58:25.647686937 +0100
+++ /work/SRC/openSUSE:Factory/.quiterss.new.2738/quiterss.changes      
2020-04-22 20:55:07.675643090 +0200
@@ -1,0 +2,19 @@
+Tue Apr 21 11:48:35 UTC 2020 - Luigi Baldoni <aloi...@gmx.com>
+
+- Update to version 0.19.4
+  * Added: Share. Viber, Telegram
+  * Added: Support Media-RSS
+  * Added: Switch focus from search when pressing Esc
+  * Changed: Lock headline news while scrolling content
+  * Changed: Hide directories when searching in feeds
+  * Fixed: Some news links do not have a scheme ("http")
+  * Fixed: Dark App Style. Setting background color and text
+    color for labels
+  * Fixed: Dark App Style. Setting background color of
+    alternative rows
+  * Fixed: Updating some feeds
+  * Fixed: Collapse of news description
+
+- Added quiterss-fix_webkit.patch
+
+-------------------------------------------------------------------

Old:
----
  QuiteRSS-0.19.3-src.tar.gz

New:
----
  QuiteRSS-0.19.4-src.tar.gz
  quiterss-fix_webkit.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ quiterss.spec ++++++
--- /var/tmp/diff_new_pack.5RO3pX/_old  2020-04-22 20:55:08.919645526 +0200
+++ /var/tmp/diff_new_pack.5RO3pX/_new  2020-04-22 20:55:08.919645526 +0200
@@ -17,13 +17,15 @@
 
 
 Name:           quiterss
-Version:        0.19.3
+Version:        0.19.4
 Release:        0
 Summary:        RSS/Atom aggregator
 License:        GPL-3.0-or-later
 URL:            https://www.quiterss.org
-Source:         
https://quiterss.org/files/%{version}/QuiteRSS-%{version}-src.tar.gz
+Source:         
https://quiterss.org/files/%{version}_/QuiteRSS-%{version}-src.tar.gz
 Source99:       %{name}-rpmlintrc
+# PATCH-FIX-UPSTREAM quiterss-fix_webkit.patch aloi...@gmx.com -- fixes build 
with qt5webkit < 5.212~alpha4
+Patch0:         quiterss-fix_webkit.patch
 BuildRequires:  dos2unix
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
@@ -49,6 +51,7 @@
 
 %prep
 %setup -q -c
+%patch0 -p1
 dos2unix AUTHORS CHANGELOG README.md
 
 %build

++++++ QuiteRSS-0.19.3-src.tar.gz -> QuiteRSS-0.19.4-src.tar.gz ++++++
++++ 2638 lines of diff (skipped)

++++++ quiterss-fix_webkit.patch ++++++
>From cf2e6b384b858e9d3243f0f3d6ec47ed0f267280 Mon Sep 17 00:00:00 2001
From: Shilyaev Egor <egor.shily...@gmail.com>
Date: Tue, 21 Apr 2020 20:55:22 +0500
Subject: [PATCH] =?UTF-8?q?change:=20Webkit.=20=D0=97=D0=B0=D0=BF=D1=80?=
 =?UTF-8?q?=D0=B5=D1=82=20=D0=BE=D1=82=D0=BE=D0=B1=D1=80=D0=B0=D0=B6=D0=B5?=
 =?UTF-8?q?=D0=BD=D0=B8=D1=8F=20=D1=81=D1=82=D1=80=D0=B0=D0=BD=D0=B8=D1=86?=
 =?UTF-8?q?=D1=8B=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BA=D0=B8=20(=D1=82=D0=BE?=
 =?UTF-8?q?=D0=BB=D1=8C=D0=BA=D0=BE=20=D0=B4=D0=BB=D1=8F=20Webkit=20alpha4?=
 =?UTF-8?q?)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 QuiteRSS.pro                   | 3 +++
 src/application/mainwindow.cpp | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/QuiteRSS.pro b/QuiteRSS.pro
index de056662..d5088fdf 100644
--- a/QuiteRSS.pro
+++ b/QuiteRSS.pro
@@ -34,6 +34,9 @@ exists(.git) {
 isEqual(QT_MAJOR_VERSION, 5) {
   QT += widgets webkitwidgets network xml printsupport sql multimedia
   DEFINES += HAVE_QT5
+  equals(WEBKIT_ALPHA, true) {
+      DEFINES += WEBKIT_ALPHA
+  }
 } else {
   QT += core gui network xml webkit sql
   os2 {
diff --git a/src/application/mainwindow.cpp b/src/application/mainwindow.cpp
index d574cf38..f14c7805 100755
--- a/src/application/mainwindow.cpp
+++ b/src/application/mainwindow.cpp
@@ -2096,7 +2096,7 @@ void MainWindow::loadSettings()
   QWebSettings::globalSettings()->setAttribute(
         QWebSettings::PluginsEnabled, pluginsEnable_);
   QWebSettings::globalSettings()->setMaximumPagesInCache(maxPagesInCache_);
-#if QT_VERSION >= 0x050e00
+#ifdef WEBKIT_ALPHA
   QWebSettings::globalSettings()->setAttribute(
         QWebSettings::ErrorPageEnabled, false);
 #endif

Reply via email to