Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kunifiedpush for openSUSE:Factory checked in at 2026-02-06 19:08:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kunifiedpush (Old) and /work/SRC/openSUSE:Factory/.kunifiedpush.new.1670 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kunifiedpush" Fri Feb 6 19:08:18 2026 rev:16 rq:1331343 version:25.12.2 Changes: -------- --- /work/SRC/openSUSE:Factory/kunifiedpush/kunifiedpush.changes 2026-01-12 10:29:36.565987100 +0100 +++ /work/SRC/openSUSE:Factory/.kunifiedpush.new.1670/kunifiedpush.changes 2026-02-06 19:13:12.163298478 +0100 @@ -1,0 +2,10 @@ +Tue Feb 3 10:06:07 UTC 2026 - Christophe Marin <[email protected]> + +- Update to 25.12.2 + * New bugfix release + * For more details please see: + * https://kde.org/announcements/gear/25.12.2/ +- Changes since 25.12.1: + * Force Command to be move-only (kde#514835) + +------------------------------------------------------------------- Old: ---- kunifiedpush-25.12.1.tar.xz kunifiedpush-25.12.1.tar.xz.sig New: ---- kunifiedpush-25.12.2.tar.xz kunifiedpush-25.12.2.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kunifiedpush.spec ++++++ --- /var/tmp/diff_new_pack.FJv5cF/_old 2026-02-06 19:13:13.859369930 +0100 +++ /var/tmp/diff_new_pack.FJv5cF/_new 2026-02-06 19:13:13.871370435 +0100 @@ -22,7 +22,7 @@ %define qt6_version 6.9.0 # Name: kunifiedpush -Version: 25.12.1 +Version: 25.12.2 Release: 0 Summary: UnifiedPush client components License: LGPL-2.0-or-later ++++++ kunifiedpush-25.12.1.tar.xz -> kunifiedpush-25.12.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kunifiedpush-25.12.1/CMakeLists.txt new/kunifiedpush-25.12.2/CMakeLists.txt --- old/kunifiedpush-25.12.1/CMakeLists.txt 2026-01-06 04:39:49.000000000 +0100 +++ new/kunifiedpush-25.12.2/CMakeLists.txt 2026-01-31 04:18:34.000000000 +0100 @@ -6,7 +6,7 @@ # KDE Application Version, managed by release script set (RELEASE_SERVICE_VERSION_MAJOR "25") set (RELEASE_SERVICE_VERSION_MINOR "12") -set (RELEASE_SERVICE_VERSION_MICRO "1") +set (RELEASE_SERVICE_VERSION_MICRO "2") set (RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}") project(KUnifiedPush VERSION ${RELEASE_SERVICE_VERSION}) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kunifiedpush-25.12.1/po/ia/kcm_push_notifications.po new/kunifiedpush-25.12.2/po/ia/kcm_push_notifications.po --- old/kunifiedpush-25.12.1/po/ia/kcm_push_notifications.po 2026-01-06 04:39:49.000000000 +0100 +++ new/kunifiedpush-25.12.2/po/ia/kcm_push_notifications.po 2026-01-31 04:18:34.000000000 +0100 @@ -1,13 +1,13 @@ # Copyright (C) 2025 This file is copyright: # This file is distributed under the same license as the kunifiedpush package. # -# SPDX-FileCopyrightText: 2024, 2025 giovanni <[email protected]> +# SPDX-FileCopyrightText: 2024, 2025, 2026 giovanni <[email protected]> msgid "" msgstr "" "Project-Id-Version: kunifiedpush\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2025-11-17 14:40+0000\n" -"PO-Revision-Date: 2025-04-10 15:02+0200\n" +"PO-Revision-Date: 2026-01-30 18:40+0100\n" "Last-Translator: giovanni <[email protected]>\n" "Language-Team: Interlingua <[email protected]>\n" "Language: ia\n" @@ -106,7 +106,7 @@ #: ui/main.qml:154 ui/main.qml:181 ui/main.qml:230 ui/main.qml:256 #, kde-format msgid "URL:" -msgstr "" +msgstr "URL:" #: ui/main.qml:159 #, kde-format @@ -130,6 +130,9 @@ "with applications with a larger amount of users, such as public Matrix or " "Mastodon instances." msgstr "" +"Nota que ntfy.sh es un application con limite de frequentia. Ergo il non " +"functionara con aplicationes con un plus grande amonta de usatores, tal como " +"instantias de Matrix public o ìde Mastodon." #: ui/main.qml:302 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kunifiedpush-25.12.1/src/distributor/command.h new/kunifiedpush-25.12.2/src/distributor/command.h --- old/kunifiedpush-25.12.1/src/distributor/command.h 2026-01-06 04:39:49.000000000 +0100 +++ new/kunifiedpush-25.12.2/src/distributor/command.h 2026-01-31 04:18:34.000000000 +0100 @@ -16,6 +16,12 @@ class Command { public: + Command() = default; + Command(const Command &) = delete; + Command(Command &&) noexcept = default; + Command& operator=(const Command&) = delete; + Command& operator=(Command &&) noexcept = default; + enum Type { NoCommand, Register, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kunifiedpush-25.12.1/src/distributor/distributor.cpp new/kunifiedpush-25.12.2/src/distributor/distributor.cpp --- old/kunifiedpush-25.12.1/src/distributor/distributor.cpp 2026-01-06 04:39:49.000000000 +0100 +++ new/kunifiedpush-25.12.2/src/distributor/distributor.cpp 2026-01-31 04:18:34.000000000 +0100 @@ -519,7 +519,7 @@ return; } - m_currentCommand = m_commandQueue.front(); + m_currentCommand = std::move(m_commandQueue.front()); m_commandQueue.pop_front(); switch (m_currentCommand.type) { case Command::NoCommand: @@ -858,11 +858,13 @@ { qCDebug(Log) << QNetworkInformation::instance()->reachability(); if (isNetworkAvailable() && !m_clients.empty() && status() != DistributorStatus::Connected) { - Command cmd{ .type = Command::Connect }; + Command cmd; + cmd.type = Command::Connect; m_commandQueue.push_back(std::move(cmd)); } if (!isNetworkAvailable() && m_status == DistributorStatus::Connected) { - Command cmd{ .type = Command::Disconnect }; + Command cmd; + cmd.type = Command::Disconnect; m_commandQueue.push_back(std::move(cmd)); }
