commit xdg-desktop-portal-kde for openSUSE:Factory
Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package xdg-desktop-portal-kde for openSUSE:Factory checked in at 2022-07-01 13:44:31 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old) and /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.1548 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "xdg-desktop-portal-kde" Fri Jul 1 13:44:31 2022 rev:101 rq:985914 version:5.25.2 Changes: -------- --- /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes 2022-06-23 10:23:30.375690170 +0200 +++ /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.1548/xdg-desktop-portal-kde.changes 2022-07-01 13:44:49.842886944 +0200 @@ -1,0 +2,10 @@ +Tue Jun 28 13:03:36 UTC 2022 - Fabian Vogt <fabian@ritter-vogt.de> + +- Update to 5.25.2 + * New bugfix release + * For more details please see: + * https://kde.org/announcements/plasma/5/5.25.2 +- Changes since 5.25.1: + * RemoteDesktopDialog: fix "withTouch" property mismatch + +------------------------------------------------------------------- Old: ---- xdg-desktop-portal-kde-5.25.1.tar.xz xdg-desktop-portal-kde-5.25.1.tar.xz.sig New: ---- xdg-desktop-portal-kde-5.25.2.tar.xz xdg-desktop-portal-kde-5.25.2.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xdg-desktop-portal-kde.spec ++++++ --- /var/tmp/diff_new_pack.arQjcW/_old 2022-07-01 13:44:50.446887851 +0200 +++ /var/tmp/diff_new_pack.arQjcW/_new 2022-07-01 13:44:50.454887864 +0200 @@ -24,7 +24,7 @@ %define kf5_version 5.50.0 Name: xdg-desktop-portal-kde -Version: 5.25.1 +Version: 5.25.2 Release: 0 Summary: QT/KF5 backend for xdg-desktop-portal License: LGPL-2.1-or-later ++++++ xdg-desktop-portal-kde-5.25.1.tar.xz -> xdg-desktop-portal-kde-5.25.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xdg-desktop-portal-kde-5.25.1/CMakeLists.txt new/xdg-desktop-portal-kde-5.25.2/CMakeLists.txt --- old/xdg-desktop-portal-kde-5.25.1/CMakeLists.txt 2022-06-21 13:06:27.000000000 +0200 +++ new/xdg-desktop-portal-kde-5.25.2/CMakeLists.txt 2022-06-28 13:04:28.000000000 +0200 @@ -2,13 +2,13 @@ set(CMAKE_C_STANDARD 99) -set(PROJECT_VERSION "5.25.1") +set(PROJECT_VERSION "5.25.2") set(PROJECT_VERSION_MAJOR 5) project(xdg-desktop-portal-kde VERSION ${PROJECT_VERSION}) -set(QT_MIN_VERSION "5.15.0") -set(KF5_MIN_VERSION "5.90") +set(QT_MIN_VERSION "5.15.2") +set(KF5_MIN_VERSION "5.94") set(KDE_COMPILERSETTINGS_LEVEL "5.82") set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xdg-desktop-portal-kde-5.25.1/po/zh_CN/xdg-desktop-portal-kde.po new/xdg-desktop-portal-kde-5.25.2/po/zh_CN/xdg-desktop-portal-kde.po --- old/xdg-desktop-portal-kde-5.25.1/po/zh_CN/xdg-desktop-portal-kde.po 2022-06-21 13:06:27.000000000 +0200 +++ new/xdg-desktop-portal-kde-5.25.2/po/zh_CN/xdg-desktop-portal-kde.po 2022-06-28 13:04:27.000000000 +0200 @@ -4,7 +4,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-05-31 02:41+0000\n" -"PO-Revision-Date: 2022-06-19 07:03\n" +"PO-Revision-Date: 2022-06-25 04:28\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xdg-desktop-portal-kde-5.25.1/src/remotedesktopdialog.cpp new/xdg-desktop-portal-kde-5.25.2/src/remotedesktopdialog.cpp --- old/xdg-desktop-portal-kde-5.25.1/src/remotedesktopdialog.cpp 2022-06-21 13:06:08.000000000 +0200 +++ new/xdg-desktop-portal-kde-5.25.2/src/remotedesktopdialog.cpp 2022-06-28 13:04:08.000000000 +0200 @@ -34,7 +34,7 @@ {"withMultipleScreenSharing", multiple}, {"withKeyboard", deviceTypes.testFlag(RemoteDesktopPortal::Keyboard)}, {"withPointer", deviceTypes.testFlag(RemoteDesktopPortal::Pointer)}, - {"withTouchScreen", deviceTypes.testFlag(RemoteDesktopPortal::TouchScreen)}, + {"withTouch", deviceTypes.testFlag(RemoteDesktopPortal::TouchScreen)}, }; const QString applicationName = Utils::applicationName(appName); @@ -63,7 +63,7 @@ types |= RemoteDesktopPortal::Keyboard; if (m_theDialog->property("withPointer").toBool()) types |= RemoteDesktopPortal::Pointer; - if (m_theDialog->property("withTouchScreen").toBool()) + if (m_theDialog->property("withTouch").toBool()) types |= RemoteDesktopPortal::TouchScreen; return types; }
participants (1)
-
Source-Sync