Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package plasma-browser-integration for openSUSE:Factory checked in at 2023-12-07 19:09:57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/plasma-browser-integration (Old) and /work/SRC/openSUSE:Factory/.plasma-browser-integration.new.25432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "plasma-browser-integration" Thu Dec 7 19:09:57 2023 rev:98 rq:1131428 version:5.27.10 Changes: -------- --- /work/SRC/openSUSE:Factory/plasma-browser-integration/plasma-browser-integration.changes 2023-10-25 18:02:08.532932210 +0200 +++ /work/SRC/openSUSE:Factory/.plasma-browser-integration.new.25432/plasma-browser-integration.changes 2023-12-07 19:10:57.976500117 +0100 @@ -1,0 +2,12 @@ +Wed Dec 6 11:47:36 UTC 2023 - Fabian Vogt <fab...@ritter-vogt.de> + +- Update to 5.27.10 + * New bugfix release + * For more details please see: + * https://kde.org/announcements/plasma/5/5.27.10 +- Changes since 5.27.9: + * Fix KDEConnect property lookup in D-Bus response (kde#475004) + * Adapt to renamed activities library repo + * Reflect move of KActivities out of Frameworks to Plasma + +------------------------------------------------------------------- Old: ---- plasma-browser-integration-5.27.9.tar.xz plasma-browser-integration-5.27.9.tar.xz.sig New: ---- plasma-browser-integration-5.27.10.tar.xz plasma-browser-integration-5.27.10.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ plasma-browser-integration.spec ++++++ --- /var/tmp/diff_new_pack.W5AbaP/_old 2023-12-07 19:10:58.528520482 +0100 +++ /var/tmp/diff_new_pack.W5AbaP/_new 2023-12-07 19:10:58.528520482 +0100 @@ -21,7 +21,7 @@ %bcond_with browser_extension %bcond_without released Name: plasma-browser-integration -Version: 5.27.9 +Version: 5.27.10 Release: 0 Summary: Helper for the KDE Plasma Browser Integration License: GPL-3.0-or-later ++++++ plasma-browser-integration-5.27.9.tar.xz -> plasma-browser-integration-5.27.10.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-browser-integration-5.27.9/.kde-ci.yml new/plasma-browser-integration-5.27.10/.kde-ci.yml --- old/plasma-browser-integration-5.27.9/.kde-ci.yml 2023-10-24 14:57:24.000000000 +0200 +++ new/plasma-browser-integration-5.27.10/.kde-ci.yml 2023-12-05 20:21:07.000000000 +0100 @@ -13,11 +13,12 @@ 'frameworks/kdbusaddons': '@latest' 'frameworks/knotifications': '@latest' 'frameworks/krunner': '@latest' - 'frameworks/kactivities': '@latest' 'frameworks/purpose': '@latest' 'frameworks/kfilemetadata': '@latest' 'frameworks/kjobwidgets': '@latest' 'frameworks/kservice': '@latest' 'plasma/plasma-workspace': '@same' + 'plasma/plasma-activities': '@latest' # Different branching scheme due to being formerly a Framework + Options: require-passing-tests-on: [ 'Linux', 'FreeBSD'] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-browser-integration-5.27.9/CMakeLists.txt new/plasma-browser-integration-5.27.10/CMakeLists.txt --- old/plasma-browser-integration-5.27.9/CMakeLists.txt 2023-10-24 14:57:24.000000000 +0200 +++ new/plasma-browser-integration-5.27.10/CMakeLists.txt 2023-12-05 20:21:07.000000000 +0100 @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.16) project(plasma-browser-integration) -set(PROJECT_VERSION "5.27.9") +set(PROJECT_VERSION "5.27.10") set(PROJECT_VERSION_MAJOR 5) set(QT_MIN_VERSION "5.15.2") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-browser-integration-5.27.9/extension/_locales/tr/messages.json new/plasma-browser-integration-5.27.10/extension/_locales/tr/messages.json --- old/plasma-browser-integration-5.27.9/extension/_locales/tr/messages.json 2023-10-24 14:57:24.000000000 +0200 +++ new/plasma-browser-integration-5.27.10/extension/_locales/tr/messages.json 2023-12-05 20:21:07.000000000 +0100 @@ -30,10 +30,10 @@ "message": "Bilinmeyen Hata" }, "kdeconnect_call_device": { - "message": "'$1' aygıtında ara" + "message": "'$1' Aygıtında Ara" }, "kdeconnect_open_device": { - "message": "'$1' aygıtında aç" + "message": "'$1' Aygıtında Aç" }, "kdeconnect_open_via": { "message": "KDE Connect ile aç" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-browser-integration-5.27.9/host/kdeconnectplugin.cpp new/plasma-browser-integration-5.27.10/host/kdeconnectplugin.cpp --- old/plasma-browser-integration-5.27.9/host/kdeconnectplugin.cpp 2023-10-24 14:57:24.000000000 +0200 +++ new/plasma-browser-integration-5.27.10/host/kdeconnectplugin.cpp 2023-12-05 20:21:07.000000000 +0100 @@ -105,7 +105,9 @@ QVariantMap props = reply.value(); - if (!props.value(QStringLiteral("isReachable")).toBool() || !props.value(QStringLiteral("isTrusted")).toBool()) { + // Also check isTrusted for compatibility with older KDEConnect + const bool paired = props.value(QStringLiteral("isPaired")).toBool() || props.value(QStringLiteral("isTrusted")).toBool(); + if (!props.value(QStringLiteral("isReachable")).toBool() || !paired) { return; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-browser-integration-5.27.9/po/ca@valencia/plasma-browser-integration-host.po new/plasma-browser-integration-5.27.10/po/ca@valencia/plasma-browser-integration-host.po --- old/plasma-browser-integration-5.27.9/po/ca@valencia/plasma-browser-integration-host.po 2023-10-24 14:57:24.000000000 +0200 +++ new/plasma-browser-integration-5.27.10/po/ca@valencia/plasma-browser-integration-host.po 2023-12-05 20:21:07.000000000 +0100 @@ -67,7 +67,7 @@ #: downloadjob.cpp:240 #, kde-format msgid "The network operation timed out." -msgstr "L'operació de xarxa ha excedit el temps lÃmit." +msgstr "L'operació de xarxa ha excedit el temps." #: downloadjob.cpp:241 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-browser-integration-5.27.9/po/zh_CN/plasma-browser-integration-host.po new/plasma-browser-integration-5.27.10/po/zh_CN/plasma-browser-integration-host.po --- old/plasma-browser-integration-5.27.9/po/zh_CN/plasma-browser-integration-host.po 2023-10-24 14:57:24.000000000 +0200 +++ new/plasma-browser-integration-5.27.10/po/zh_CN/plasma-browser-integration-host.po 2023-12-05 20:21:07.000000000 +0100 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-08-29 00:19+0000\n" -"PO-Revision-Date: 2023-10-21 13:57\n" +"PO-Revision-Date: 2023-11-25 02:32\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-browser-integration-5.27.9/po/zh_CN/plasma-browser-integration-reminder.po new/plasma-browser-integration-5.27.10/po/zh_CN/plasma-browser-integration-reminder.po --- old/plasma-browser-integration-5.27.9/po/zh_CN/plasma-browser-integration-reminder.po 2023-10-24 14:57:24.000000000 +0200 +++ new/plasma-browser-integration-5.27.10/po/zh_CN/plasma-browser-integration-reminder.po 2023-12-05 20:21:07.000000000 +0100 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-08-29 00:19+0000\n" -"PO-Revision-Date: 2023-10-21 13:57\n" +"PO-Revision-Date: 2023-11-25 02:32\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n"