Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package discover for openSUSE:Factory 
checked in at 2022-05-05 23:04:42
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/discover (Old)
 and      /work/SRC/openSUSE:Factory/.discover.new.1538 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "discover"

Thu May  5 23:04:42 2022 rev:113 rq:974684 version:5.24.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/discover/discover.changes        2022-04-01 
21:35:06.858149643 +0200
+++ /work/SRC/openSUSE:Factory/.discover.new.1538/discover.changes      
2022-05-05 23:04:50.449441021 +0200
@@ -1,0 +2,18 @@
+Tue May  3 13:00:18 UTC 2022 - Fabian Vogt <fab...@ritter-vogt.de>
+
+- Update to 5.24.5
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma/5/5.24.5
+- Changes since 5.24.4:
+  * flatpak: Fix state change emits (kde#451111)
+  * flatpak: Improve stability of different sources integration
+  * flatpak: Centralise remote integration in FlatpakBackend (kde#443745)
+  * pk: Consider multiple package ids for one upgradeable resource (kde#444600)
+  * Don't use the appdata version in the installed version string if empty
+  * libdiscover: Fix Discover doesn't show license or description of local 
package (kde#452150)
+- Refresh patch and drop part of the message which might sound a
+  bit too harsh and is mostly redundant anyway:
+  * 0001-Warning-for-FlatHub.patch
+
+-------------------------------------------------------------------

Old:
----
  discover-5.24.4.tar.xz
  discover-5.24.4.tar.xz.sig

New:
----
  discover-5.24.5.tar.xz
  discover-5.24.5.tar.xz.sig

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

Other differences:
------------------
++++++ discover.spec ++++++
--- /var/tmp/diff_new_pack.cmqAKN/_old  2022-05-05 23:04:51.117441853 +0200
+++ /var/tmp/diff_new_pack.cmqAKN/_new  2022-05-05 23:04:51.121441857 +0200
@@ -21,7 +21,7 @@
 %global have_fwupd (0%{?suse_version} > 1500 || 0%{?sle_version} >= 150300)
 
 Name:           discover
-Version:        5.24.4
+Version:        5.24.5
 Release:        0
 Summary:        Software store for the KDE Plasma desktop
 License:        GPL-2.0-only AND GPL-3.0-only AND GPL-3.0-or-later

++++++ 0001-Warning-for-FlatHub.patch ++++++
--- /var/tmp/diff_new_pack.cmqAKN/_old  2022-05-05 23:04:51.145441888 +0200
+++ /var/tmp/diff_new_pack.cmqAKN/_new  2022-05-05 23:04:51.145441888 +0200
@@ -7,10 +7,10 @@
  .../backends/FlatpakBackend/FlatpakSourcesBackend.cpp      | 14 +++++++++++++-
  1 file changed, 13 insertions(+), 1 deletion(-)
 
-Index: 
discover-5.17.80git.20210404T011831~f9348542/libdiscover/backends/FlatpakBackend/FlatpakSourcesBackend.cpp
+Index: 
discover-5.24.5/libdiscover/backends/FlatpakBackend/FlatpakSourcesBackend.cpp
 ===================================================================
---- 
discover-5.17.80git.20210404T011831~f9348542.orig/libdiscover/backends/FlatpakBackend/FlatpakSourcesBackend.cpp
    2021-04-05 10:10:15.785178715 +0200
-+++ 
discover-5.17.80git.20210404T011831~f9348542/libdiscover/backends/FlatpakBackend/FlatpakSourcesBackend.cpp
 2021-04-05 10:12:16.117507702 +0200
+--- 
discover-5.24.5.orig/libdiscover/backends/FlatpakBackend/FlatpakSourcesBackend.cpp
++++ 
discover-5.24.5/libdiscover/backends/FlatpakBackend/FlatpakSourcesBackend.cpp
 @@ -12,6 +12,8 @@
  #include <KLocalizedString>
  #include <KSharedConfig>
@@ -20,23 +20,23 @@
  #include <QNetworkAccessManager>
  #include <QNetworkReply>
  
-@@ -53,8 +55,18 @@
+@@ -86,7 +88,17 @@ FlatpakSourcesBackend::FlatpakSourcesBac
      m_flathubAction->setObjectName(QStringLiteral("flathub"));
      m_flathubAction->setToolTip(i18n("Makes it possible to easily install the 
applications listed in https://flathub.org";));
      connect(m_flathubAction, &DiscoverAction::triggered, this, [this]() {
+-        
addSource(QStringLiteral("https://flathub.org/repo/flathub.flatpakrepo";));
 +        auto *warnBox = new QMessageBox(QMessageBox::Information, 
i18n("Adding a third-party source"),
 +                            i18n("FlatHub is not part of the openSUSE 
distribution.\n"
 +                                 "It contains packages of unknown quality 
which might not be tested to work correctly "
-+                                 "on openSUSE. Prefer to install software 
from the official openSUSE repository."),
++                                 "on openSUSE."),
 +                            QMessageBox::Ok | QMessageBox::Abort);
 +        connect(warnBox, &QMessageBox::buttonClicked, this, [this, 
warnBox](QAbstractButton *button) {
 +            if (warnBox->standardButton(button) == QMessageBox::Ok)
-         
addSource(QStringLiteral("https://flathub.org/repo/flathub.flatpakrepo";));
-     });
++                
addSource(QStringLiteral("https://flathub.org/repo/flathub.flatpakrepo";));
++        });
 +        warnBox->setAttribute(Qt::WA_DeleteOnClose);
 +        warnBox->show();
-+    });
-     for (auto installation : installations) {
-         if (!listRepositories(installation)) {
-             qWarning() << "Failed to list repositories from installation" << 
installation;
+     });
+ 
+     m_noSourcesItem->setEnabled(false);
 

++++++ discover-5.24.4.tar.xz -> discover-5.24.5.tar.xz ++++++
/work/SRC/openSUSE:Factory/discover/discover-5.24.4.tar.xz 
/work/SRC/openSUSE:Factory/.discover.new.1538/discover-5.24.5.tar.xz differ: 
char 27, line 1

Reply via email to