commit xdg-desktop-portal-kde for openSUSE:Factory

2020-10-30 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2020-10-30 11:47:36

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.3463 (New)


Package is "xdg-desktop-portal-kde"

Fri Oct 30 11:47:36 2020 rev:69 rq:844609 version:5.20.2

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2020-10-22 14:26:22.938971118 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.3463/xdg-desktop-portal-kde.changes
  2020-10-30 11:47:56.313721718 +0100
@@ -1,0 +2,10 @@
+Tue Oct 27 20:43:54 UTC 2020 - Fabian Vogt 
+
+- Update to 5.20.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.20.2
+- Changes since 5.20.1:
+  * FileChooser: escape slash character in user visible filter name 
(kde#427306)
+
+---

Old:

  xdg-desktop-portal-kde-5.20.1.tar.xz
  xdg-desktop-portal-kde-5.20.1.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.20.2.tar.xz
  xdg-desktop-portal-kde-5.20.2.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.561uPP/_old  2020-10-30 11:47:56.857722199 +0100
+++ /var/tmp/diff_new_pack.561uPP/_new  2020-10-30 11:47:56.861722203 +0100
@@ -25,15 +25,15 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.20.1
+Version:5.20.2
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later
 Group:  System/Libraries
 URL:http://www.kde.org
-Source: xdg-desktop-portal-kde-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
 %if %{with lang}
-Source1:xdg-desktop-portal-kde-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 BuildRequires:  extra-cmake-modules >= %{kf5_version}


++ xdg-desktop-portal-kde-5.20.1.tar.xz -> 
xdg-desktop-portal-kde-5.20.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.20.1/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.20.2/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.20.1/CMakeLists.txt2020-10-20 
14:15:26.0 +0200
+++ new/xdg-desktop-portal-kde-5.20.2/CMakeLists.txt2020-10-27 
13:34:58.0 +0100
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.20.1")
+set(PROJECT_VERSION "5.20.2")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.15.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.20.1/src/filechooser.cpp 
new/xdg-desktop-portal-kde-5.20.2/src/filechooser.cpp
--- old/xdg-desktop-portal-kde-5.20.1/src/filechooser.cpp   2020-10-20 
14:15:08.0 +0200
+++ new/xdg-desktop-portal-kde-5.20.2/src/filechooser.cpp   2020-10-27 
13:34:34.0 +0100
@@ -588,8 +588,12 @@
 }
 
 if (!filterStrings.isEmpty()) {
+QString userVisibleName = filterList.userVisibleName;
+if (!isMobile()) {
+userVisibleName.replace(QLatin1Char('/'), 
QStringLiteral("\\/"));
+}
 const QString filterString = filterStrings.join(QLatin1Char(' 
'));
-const QString nameFilter = 
QStringLiteral("%1|%2").arg(filterString, filterList.userVisibleName);
+const QString nameFilter = 
QStringLiteral("%1|%2").arg(filterString, userVisibleName);
 nameFilters << nameFilter;
 allFilters[filterList.userVisibleName] = filterList;
 }
@@ -603,7 +607,11 @@
 if (filterStruct.type == 0) {
 // make the relevant entry the first one in the list of 
filters,
 // since that is the one that gets preselected by 
KFileWidget::setFilter
-QString nameFilter = 
QStringLiteral("%1|%2").arg(filterStruct.filterString, 
filterList.userVisibleName);
+QString userVisibleName = filterList.userVisibleName;
+if (!isMobile()) {
+userVisibleName.replace(QLatin1Char('/'), 
QStringLiteral("\\/"));
+}
+QString nameFilter = 
QStringLiteral("%1|%2").arg(filterStruct.filterString, userVisibleName);
 nameFilters.removeAll(nameFilter);
 

commit xdg-desktop-portal-kde for openSUSE:Factory

2020-10-22 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2020-10-22 14:25:00

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.3463 (New)


Package is "xdg-desktop-portal-kde"

Thu Oct 22 14:25:00 2020 rev:68 rq:843128 version:5.20.1

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2020-10-13 15:31:00.116902302 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.3463/xdg-desktop-portal-kde.changes
  2020-10-22 14:26:22.938971118 +0200
@@ -1,0 +2,9 @@
+Tue Oct 20 14:30:37 UTC 2020 - Fabian Vogt 
+
+- Update to 5.20.1
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.20.1
+- No code changes since 5.20.0
+
+---

Old:

  xdg-desktop-portal-kde-5.20.0.tar.xz
  xdg-desktop-portal-kde-5.20.0.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.20.1.tar.xz
  xdg-desktop-portal-kde-5.20.1.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.ySXB7T/_old  2020-10-22 14:26:23.770971864 +0200
+++ /var/tmp/diff_new_pack.ySXB7T/_new  2020-10-22 14:26:23.774971868 +0200
@@ -25,7 +25,7 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.20.0
+Version:5.20.1
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later


++ xdg-desktop-portal-kde-5.20.0.tar.xz -> 
xdg-desktop-portal-kde-5.20.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.20.0/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.20.1/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.20.0/CMakeLists.txt2020-10-08 
18:31:38.0 +0200
+++ new/xdg-desktop-portal-kde-5.20.1/CMakeLists.txt2020-10-20 
14:15:26.0 +0200
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.20.0")
+set(PROJECT_VERSION "5.20.1")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.15.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.20.0/po/de/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.20.1/po/de/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.20.0/po/de/xdg-desktop-portal-kde.po   
2020-10-08 18:31:20.0 +0200
+++ new/xdg-desktop-portal-kde-5.20.1/po/de/xdg-desktop-portal-kde.po   
2020-10-20 14:15:12.0 +0200
@@ -5,7 +5,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-09-17 02:32+0200\n"
-"PO-Revision-Date: 2020-09-29 08:41+0200\n"
+"PO-Revision-Date: 2020-10-17 07:51+0200\n"
 "Last-Translator: Burkhard Lück \n"
 "Language-Team: German \n"
 "Language: de\n"
@@ -79,6 +79,11 @@
 "\n"
 "Note that forcing an application to quit might cause data loss."
 msgstr ""
+"Dies könnte aus einem legitimen Grund geschehen, aber die Anwendung hat "
+"keine Angaben dazu.\n"
+"\n"
+"Beachten Sie, dass das Erzwingen des Beendens einer Anwendung zu "
+"Datenverlust führen kann."
 
 #: src/background.cpp:127
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.20.0/po/et/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.20.1/po/et/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.20.0/po/et/xdg-desktop-portal-kde.po   
2020-10-08 18:31:22.0 +0200
+++ new/xdg-desktop-portal-kde-5.20.1/po/et/xdg-desktop-portal-kde.po   
2020-10-20 14:15:13.0 +0200
@@ -2,20 +2,21 @@
 # This file is distributed under the same license as the 
xdg-desktop-portal-kde package.
 #
 # Marek Laane , 2019, 2020.
+# Mihkel Tõnnov , 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: xdg-desktop-portal-kde\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-09-17 02:32+0200\n"
-"PO-Revision-Date: 2020-04-10 19:45+0300\n"
-"Last-Translator: Marek Laane \n"
-"Language-Team: Estonian \n"
+"PO-Revision-Date: 2020-10-11 01:17+0200\n"
+"Last-Translator: Mihkel Tõnnov \n"
+"Language-Team: Estonian <>\n"
 "Language: et\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 19.12.3\n"
+"X-Generator: Lokalize 20.08.1\n"
 
 #: src/accessdialog.cpp:41
 #, kde-format
@@ -103,18 +104,17 @@
 #: src/kirigami-filepicker/api/mobilefiledialog.cpp:99
 #, kde-format
 msgid "Select Folder"
-msgstr ""
+msgstr 

commit xdg-desktop-portal-kde for openSUSE:Factory

2020-10-13 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2020-10-13 15:30:35

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.3486 (New)


Package is "xdg-desktop-portal-kde"

Tue Oct 13 15:30:35 2020 rev:67 rq:841016 version:5.20.0

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2020-09-04 11:09:39.490956741 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.3486/xdg-desktop-portal-kde.changes
  2020-10-13 15:31:00.116902302 +0200
@@ -1,0 +2,45 @@
+Thu Oct  8 16:55:27 UTC 2020 - Fabian Vogt 
+
+- Update to 5.20.0
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.20.0
+- No code changes since 5.19.90
+
+---
+Thu Sep 17 20:03:16 UTC 2020 - Fabian Vogt 
+
+- Update to 5.19.90
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.19.90
+- Changes since 5.19.5:
+  * Remove explicit ECM_KDE_MODULE_DIR
+  * AppModel: Rename role names
+  * Port AppChooserDialog to Kirigami
+  * mobile filechooser: Allow to disable the mime type filter
+  * mobile filechooser: Move more logic to c++
+  * appchooserdialog: Replace context properties
+  * Portaway from obsolute methods in QPrinter
+  * mobile filechooser: Forward selectMultiple
+  * FileChooser: Properly preselect MIME filter passed as "current_filter"
+  * Add "Name" entry into the desktop file (kde#426004)
+  * Add "Name" entry into the desktop file
+  * port appchooserdialog's app list to load kservices
+  * use kirigami icon instead of plasma icon in appchooser
+  * Print: enable printing of multiple copies
+  * Fix clazy warnings
+  * Port away from deprecated API
+  * open discover with mimetype when app choosing (if available)
+  * mobile filechooser: Fix handling of title and initial folder
+  * screencasting: error out when kwin isn't providing the 
zkde_screencast_unstable_v1 (kde#424744)
+  * FileChooser: Properly handle mnemonics in 'accept_label' (kde#422340)
+  * mobile filechooser: Show inline message for errors
+  * mobile filechooser: Use an icon that is colorful even in small sizes
+  * Implement mobile filechooser interface.
+  * screencasting: Adoption of the zkde_screencast_v1 Wayland protocol
+  * FileChooser: Return selected filter
+  * FileChooser: Handle 'options' - 'choices'
+  * FileChooser portal: Handle 'current_filter'
+
+---

Old:

  xdg-desktop-portal-kde-5.19.5.tar.xz
  xdg-desktop-portal-kde-5.19.5.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.20.0.tar.xz
  xdg-desktop-portal-kde-5.20.0.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.mJDKVF/_old  2020-10-13 15:31:01.192902759 +0200
+++ /var/tmp/diff_new_pack.mJDKVF/_new  2020-10-13 15:31:01.192902759 +0200
@@ -25,15 +25,15 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.19.5
+Version:5.20.0
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later
 Group:  System/Libraries
 URL:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
+Source: xdg-desktop-portal-kde-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz.sig
+Source1:xdg-desktop-portal-kde-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 BuildRequires:  extra-cmake-modules >= %{kf5_version}
@@ -49,12 +49,15 @@
 BuildRequires:  cmake(KF5Wayland) >= %{kf5_version}
 BuildRequires:  cmake(KF5WidgetsAddons) >= %{kf5_version}
 BuildRequires:  cmake(KF5WindowSystem) >= %{kf5_version}
+BuildRequires:  cmake(PlasmaWaylandProtocols)
 BuildRequires:  cmake(Qt5Concurrent)
 BuildRequires:  cmake(Qt5Core) >= 5.11.0
 BuildRequires:  cmake(Qt5DBus)
 BuildRequires:  cmake(Qt5PrintSupport)
 BuildRequires:  cmake(Qt5QuickWidgets)
+BuildRequires:  cmake(Qt5WaylandClient)
 BuildRequires:  cmake(Qt5Widgets)
+BuildRequires:  pkgconfig(wayland-client) >= 1.15
 %if %{with screencast}
 BuildRequires:  pkgconfig(epoxy)
 BuildRequires:  pkgconfig(gbm)


++ xdg-desktop-portal-kde-5.19.5.tar.xz -> 
xdg-desktop-portal-kde-5.20.0.tar.xz ++
 11671 lines of diff (skipped)




commit xdg-desktop-portal-kde for openSUSE:Factory

2020-09-04 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2020-09-04 11:09:14

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.3399 (New)


Package is "xdg-desktop-portal-kde"

Fri Sep  4 11:09:14 2020 rev:66 rq:831193 version:5.19.5

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2020-07-29 17:20:20.448553476 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.3399/xdg-desktop-portal-kde.changes
  2020-09-04 11:09:39.490956741 +0200
@@ -1,0 +2,11 @@
+Tue Sep  1 11:38:53 UTC 2020 - Fabian Vogt 
+
+- Update to 5.19.5
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.19.5
+- Changes since 5.19.4:
+  * Add "Name" entry into the desktop file (kde#426004)
+  * Print: enable printing of multiple copies
+
+---

Old:

  xdg-desktop-portal-kde-5.19.4.tar.xz
  xdg-desktop-portal-kde-5.19.4.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.19.5.tar.xz
  xdg-desktop-portal-kde-5.19.5.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.vWU2Vo/_old  2020-09-04 11:09:45.306959664 +0200
+++ /var/tmp/diff_new_pack.vWU2Vo/_new  2020-09-04 11:09:45.310959666 +0200
@@ -25,7 +25,7 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.19.4
+Version:5.19.5
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later


++ xdg-desktop-portal-kde-5.19.4.tar.xz -> 
xdg-desktop-portal-kde-5.19.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.19.4/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.19.5/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.19.4/CMakeLists.txt2020-07-28 
13:10:31.0 +0200
+++ new/xdg-desktop-portal-kde-5.19.5/CMakeLists.txt2020-09-01 
12:44:40.0 +0200
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.19.4")
+set(PROJECT_VERSION "5.19.5")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.14.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.19.4/data/org.freedesktop.impl.portal.desktop.kde.desktop.in
 
new/xdg-desktop-portal-kde-5.19.5/data/org.freedesktop.impl.portal.desktop.kde.desktop.in
--- 
old/xdg-desktop-portal-kde-5.19.4/data/org.freedesktop.impl.portal.desktop.kde.desktop.in
   2020-07-28 13:10:11.0 +0200
+++ 
new/xdg-desktop-portal-kde-5.19.5/data/org.freedesktop.impl.portal.desktop.kde.desktop.in
   2020-09-01 12:44:20.0 +0200
@@ -1,5 +1,6 @@
 [Desktop Entry]
 Type=Application
+Name=Portal
 Exec=@CMAKE_INSTALL_FULL_LIBEXECDIR@/xdg-desktop-portal-kde
 
X-KDE-Wayland-Interfaces=org_kde_kwin_fake_input,org_kde_kwin_remote_access_manager,org_kde_plasma_window_management
 NoDisplay=true
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.19.4/po/ca/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.19.5/po/ca/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.19.4/po/ca/xdg-desktop-portal-kde.po   
2020-07-28 13:10:14.0 +0200
+++ new/xdg-desktop-portal-kde-5.19.5/po/ca/xdg-desktop-portal-kde.po   
2020-09-01 12:44:23.0 +0200
@@ -4,14 +4,14 @@
 # version 3 or later versions approved by the membership of KDE e.V.
 #
 # Josep Ma. Ferrer , 2017, 2018, 2019, 2020.
-# Antoni Bella Pérez , 2018.
+# Antoni Bella Pérez , 2018, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: xdg-desktop-portal-kde\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-05-31 15:28+0200\n"
-"PO-Revision-Date: 2020-04-08 11:40+0100\n"
-"Last-Translator: Josep Ma. Ferrer \n"
+"PO-Revision-Date: 2020-08-04 12:44+0200\n"
+"Last-Translator: Antoni Bella Pérez \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
@@ -19,7 +19,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: &\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 20.04.3\n"
 
 #: src/accessdialog.cpp:41
 #, kde-format
@@ -88,7 +88,7 @@
 "Això podria ser per un motiu legítim, però l'aplicació no n'ha proporcionat "
 "cap.\n"
 "\n"
-"Tingueu en compte que forçar la sortida d'una aplicació pot comportar la "
+"Cal tenir en compte que forçar la sortida d'una aplicació pot comportar la "
 "pèrdua de dades."
 
 #: src/background.cpp:127
diff -urN 

commit xdg-desktop-portal-kde for openSUSE:Factory

2020-07-29 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2020-07-29 17:19:41

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.3592 (New)


Package is "xdg-desktop-portal-kde"

Wed Jul 29 17:19:41 2020 rev:65 rq:823268 version:5.19.4

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2020-07-10 14:12:38.875483441 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.3592/xdg-desktop-portal-kde.changes
  2020-07-29 17:20:20.448553476 +0200
@@ -1,0 +2,9 @@
+Tue Jul 28 13:45:53 UTC 2020 - Fabian Vogt 
+
+- Update to 5.19.4
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.19.4
+- No code changes since 5.19.3
+
+---

Old:

  xdg-desktop-portal-kde-5.19.3.tar.xz
  xdg-desktop-portal-kde-5.19.3.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.19.4.tar.xz
  xdg-desktop-portal-kde-5.19.4.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.lInXmy/_old  2020-07-29 17:20:21.100554008 +0200
+++ /var/tmp/diff_new_pack.lInXmy/_new  2020-07-29 17:20:21.100554008 +0200
@@ -25,7 +25,7 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.19.3
+Version:5.19.4
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later


++ xdg-desktop-portal-kde-5.19.3.tar.xz -> 
xdg-desktop-portal-kde-5.19.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.19.3/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.19.4/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.19.3/CMakeLists.txt2020-07-07 
13:25:45.0 +0200
+++ new/xdg-desktop-portal-kde-5.19.4/CMakeLists.txt2020-07-28 
13:10:31.0 +0200
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.19.3")
+set(PROJECT_VERSION "5.19.4")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.14.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.19.3/po/da/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.19.4/po/da/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.19.3/po/da/xdg-desktop-portal-kde.po   
2020-07-07 13:25:35.0 +0200
+++ new/xdg-desktop-portal-kde-5.19.4/po/da/xdg-desktop-portal-kde.po   
2020-07-28 13:10:15.0 +0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-05-31 15:28+0200\n"
-"PO-Revision-Date: 2020-01-19 16:09+0100\n"
+"PO-Revision-Date: 2020-07-22 20:42+0200\n"
 "Last-Translator: Martin Schlander \n"
 "Language-Team: Danish \n"
 "Language: da\n"
@@ -15,7 +15,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 18.12.3\n"
+"X-Generator: Lokalize 20.04.2\n"
 
 #: src/accessdialog.cpp:41
 #, kde-format
@@ -56,22 +56,22 @@
 #: src/background.cpp:92
 #, kde-format
 msgid "Background activity"
-msgstr ""
+msgstr "Baggrundsaktivitet"
 
 #: src/background.cpp:93
 #, kde-format
 msgid "%1 is running in the background."
-msgstr ""
+msgstr "%1 kører i baggrunden."
 
 #: src/background.cpp:94
 #, kde-format
 msgid "Find out more"
-msgstr ""
+msgstr "Lær mere"
 
 #: src/background.cpp:123
 #, kde-format
 msgid "%1 is running in the background"
-msgstr ""
+msgstr "%1 kører i baggrunden"
 
 #: src/background.cpp:124
 #, kde-format
@@ -81,16 +81,18 @@
 "\n"
 "Note that forcing an application to quit might cause data loss."
 msgstr ""
+"Der kan være en gyldig grund til dette, men programmet har ikke oplyst en.\n"
+"Bemærk at tvinge et program til at lukke kan medføre tab af data."
 
 #: src/background.cpp:127
 #, kde-format
 msgid "Force quit"
-msgstr ""
+msgstr "Gennemtving afslutning"
 
 #: src/background.cpp:128
 #, kde-format
 msgid "Allow"
-msgstr ""
+msgstr "Tillad"
 
 #: src/filechooser.cpp:195
 #, kde-format
@@ -139,27 +141,27 @@
 #: src/screencaststream.cpp:373
 #, kde-format
 msgid "Failed to start screencasting"
-msgstr ""
+msgstr "Kunne ikke starte skærmoptagelse"
 
 #: src/screencaststream.cpp:384
 #, kde-format
 msgid "Failed to create PipeWire context"
-msgstr ""
+msgstr "Kunne ikke oprette PipeWire-kontekst"
 
 #: src/screencaststream.cpp:391
 #, kde-format
 msgid "Failed to connect PipeWire context"
-msgstr ""
+msgstr "Kunne ikke forbinde PipeWire-kontekst"
 
 #: 

commit xdg-desktop-portal-kde for openSUSE:Factory

2020-07-10 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2020-07-10 14:12:27

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.3060 (New)


Package is "xdg-desktop-portal-kde"

Fri Jul 10 14:12:27 2020 rev:64 rq:819440 version:5.19.3

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2020-06-25 15:06:40.521217172 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.3060/xdg-desktop-portal-kde.changes
  2020-07-10 14:12:38.875483441 +0200
@@ -1,0 +2,9 @@
+Tue Jul  7 13:58:02 UTC 2020 - Fabian Vogt 
+
+- Update to 5.19.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.19.3
+- No code changes since 5.19.2
+
+---

Old:

  xdg-desktop-portal-kde-5.19.2.tar.xz
  xdg-desktop-portal-kde-5.19.2.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.19.3.tar.xz
  xdg-desktop-portal-kde-5.19.3.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.ZUW5vz/_old  2020-07-10 14:12:39.423485241 +0200
+++ /var/tmp/diff_new_pack.ZUW5vz/_new  2020-07-10 14:12:39.427485254 +0200
@@ -25,7 +25,7 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.19.2
+Version:5.19.3
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later


++ xdg-desktop-portal-kde-5.19.2.tar.xz -> 
xdg-desktop-portal-kde-5.19.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.19.2/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.19.3/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.19.2/CMakeLists.txt2020-06-23 
14:26:14.0 +0200
+++ new/xdg-desktop-portal-kde-5.19.3/CMakeLists.txt2020-07-07 
13:25:45.0 +0200
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.19.2")
+set(PROJECT_VERSION "5.19.3")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.14.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.19.2/po/nn/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.19.3/po/nn/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.19.2/po/nn/xdg-desktop-portal-kde.po   
2020-06-23 14:26:08.0 +0200
+++ new/xdg-desktop-portal-kde-5.19.3/po/nn/xdg-desktop-portal-kde.po   
2020-07-07 13:25:40.0 +0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-05-31 15:28+0200\n"
-"PO-Revision-Date: 2020-04-24 19:18+0200\n"
+"PO-Revision-Date: 2020-06-28 13:34+0200\n"
 "Last-Translator: Karl Ove Hufthammer \n"
 "Language-Team: Norwegian Nynorsk \n"
 "Language: nn\n"
@@ -15,7 +15,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 19.12.3\n"
+"X-Generator: Lokalize 20.07.70\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
@@ -166,7 +166,7 @@
 #: src/screencaststream.cpp:419
 #, kde-format
 msgid "Failed to start main PipeWire loop"
-msgstr "Klarte ikkje starta hovudløkkje for PipeWire"
+msgstr "Klarte ikkje starta hovudlykkje for PipeWire"
 
 #: src/screencastwidget.cpp:36
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.19.2/po/zh_CN/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.19.3/po/zh_CN/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.19.2/po/zh_CN/xdg-desktop-portal-kde.po
2020-06-23 14:26:13.0 +0200
+++ new/xdg-desktop-portal-kde-5.19.3/po/zh_CN/xdg-desktop-portal-kde.po
2020-07-07 13:25:44.0 +0200
@@ -4,7 +4,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-05-31 15:28+0200\n"
-"PO-Revision-Date: 2020-06-21 18:48\n"
+"PO-Revision-Date: 2020-06-24 08:02\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit xdg-desktop-portal-kde for openSUSE:Factory

2020-06-25 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2020-06-25 15:06:14

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.3060 (New)


Package is "xdg-desktop-portal-kde"

Thu Jun 25 15:06:14 2020 rev:63 rq:816702 version:5.19.2

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2020-06-21 19:09:43.973189257 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.3060/xdg-desktop-portal-kde.changes
  2020-06-25 15:06:40.521217172 +0200
@@ -1,0 +2,9 @@
+Tue Jun 23 13:26:19 UTC 2020 - Fabian Vogt 
+
+- Update to 5.19.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.19.2
+- No code changes since 5.19.1
+
+---

Old:

  xdg-desktop-portal-kde-5.19.1.tar.xz
  xdg-desktop-portal-kde-5.19.1.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.19.2.tar.xz
  xdg-desktop-portal-kde-5.19.2.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.bqUrbe/_old  2020-06-25 15:06:42.453223396 +0200
+++ /var/tmp/diff_new_pack.bqUrbe/_new  2020-06-25 15:06:42.457223409 +0200
@@ -25,7 +25,7 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.19.1
+Version:5.19.2
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later


++ xdg-desktop-portal-kde-5.19.1.tar.xz -> 
xdg-desktop-portal-kde-5.19.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.19.1/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.19.2/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.19.1/CMakeLists.txt2020-06-16 
14:59:29.0 +0200
+++ new/xdg-desktop-portal-kde-5.19.2/CMakeLists.txt2020-06-23 
14:26:14.0 +0200
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.19.1")
+set(PROJECT_VERSION "5.19.2")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.14.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.19.1/po/et/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.19.2/po/et/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.19.1/po/et/xdg-desktop-portal-kde.po   
2020-06-16 14:59:18.0 +0200
+++ new/xdg-desktop-portal-kde-5.19.2/po/et/xdg-desktop-portal-kde.po   
2020-06-23 14:26:04.0 +0200
@@ -10,7 +10,7 @@
 "PO-Revision-Date: 2020-04-10 19:45+0300\n"
 "Last-Translator: Marek Laane \n"
 "Language-Team: Estonian \n"
-"Language: et_EE\n"
+"Language: et\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.19.1/po/hu/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.19.2/po/hu/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.19.1/po/hu/xdg-desktop-portal-kde.po   
2020-06-16 14:59:20.0 +0200
+++ new/xdg-desktop-portal-kde-5.19.2/po/hu/xdg-desktop-portal-kde.po   
2020-06-23 14:26:05.0 +0200
@@ -11,7 +11,7 @@
 "PO-Revision-Date: 2019-11-06 20:06+0100\n"
 "Last-Translator: Kristóf Kiszel \n"
 "Language-Team: Hungarian \n"
-"Language: hu_HU\n"
+"Language: hu\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.19.1/po/sr/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.19.2/po/sr/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.19.1/po/sr/xdg-desktop-portal-kde.po   
2020-06-16 14:59:25.0 +0200
+++ new/xdg-desktop-portal-kde-5.19.2/po/sr/xdg-desktop-portal-kde.po   
2020-06-23 14:26:10.0 +0200
@@ -3,8 +3,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: xdg-desktop-portal-kde\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n;
-"POT-Creation-Date: 2019-02-24 03:26+0100\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n;
+"POT-Creation-Date: 2020-05-31 15:28+0200\n"
 "PO-Revision-Date: 2017-06-04 23:06+0200\n"
 "Last-Translator: Chusslove Illich \n"
 "Language-Team: Serbian \n"
@@ -19,17 +19,19 @@
 "X-Environment: kde\n"
 
 # >> @title:window
-#: src/accessdialog.cpp:42
+#: src/accessdialog.cpp:41
 #, kde-format
 msgid "Request device access"
 msgstr "Захтев за приступ уређају"
 
+#. i18n: ectx: property (windowTitle), widget 

commit xdg-desktop-portal-kde for openSUSE:Factory

2020-06-22 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2020-06-20 20:12:09

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.3606 (New)


Package is "xdg-desktop-portal-kde"

Sat Jun 20 20:12:09 2020 rev:62 rq:815486 version:5.19.1

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2020-06-08 23:58:14.179993448 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.3606/xdg-desktop-portal-kde.changes
  2020-06-21 19:09:43.973189257 +0200
@@ -1,0 +2,9 @@
+Tue Jun 16 14:34:53 UTC 2020 - Fabian Vogt 
+
+- Update to 5.19.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.19.1.php
+- No code changes since 5.19.0
+
+---

Old:

  xdg-desktop-portal-kde-5.19.0.tar.xz
  xdg-desktop-portal-kde-5.19.0.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.19.1.tar.xz
  xdg-desktop-portal-kde-5.19.1.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.WhhY3v/_old  2020-06-21 19:09:44.433190173 +0200
+++ /var/tmp/diff_new_pack.WhhY3v/_new  2020-06-21 19:09:44.437190181 +0200
@@ -25,15 +25,15 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.19.0
+Version:5.19.1
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later
 Group:  System/Libraries
 URL:http://www.kde.org
-Source: xdg-desktop-portal-kde-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
 %if %{with lang}
-Source1:xdg-desktop-portal-kde-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 BuildRequires:  extra-cmake-modules >= %{kf5_version}


++ xdg-desktop-portal-kde-5.19.0.tar.xz -> 
xdg-desktop-portal-kde-5.19.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.19.0/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.19.1/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.19.0/CMakeLists.txt2020-06-04 
13:38:49.0 +0200
+++ new/xdg-desktop-portal-kde-5.19.1/CMakeLists.txt2020-06-16 
14:59:29.0 +0200
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.19.0")
+set(PROJECT_VERSION "5.19.1")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.14.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.19.0/po/fi/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.19.1/po/fi/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.19.0/po/fi/xdg-desktop-portal-kde.po   
2020-06-04 13:38:35.0 +0200
+++ new/xdg-desktop-portal-kde-5.19.1/po/fi/xdg-desktop-portal-kde.po   
2020-06-16 14:59:18.0 +0200
@@ -1,13 +1,13 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
-# Tommi Nieminen , 2017, 2018, 2019.
+# Tommi Nieminen , 2017, 2018, 2019, 2020.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-05-31 15:28+0200\n"
-"PO-Revision-Date: 2019-11-16 14:32+0200\n"
+"PO-Revision-Date: 2020-06-07 17:31+0300\n"
 "Last-Translator: Tommi Nieminen \n"
 "Language-Team: Finnish \n"
 "Language: fi\n"
@@ -15,7 +15,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 18.12.3\n"
+"X-Generator: Lokalize 20.04.1\n"
 
 #: src/accessdialog.cpp:41
 #, kde-format
@@ -56,22 +56,22 @@
 #: src/background.cpp:92
 #, kde-format
 msgid "Background activity"
-msgstr ""
+msgstr "Taustatoiminta"
 
 #: src/background.cpp:93
 #, kde-format
 msgid "%1 is running in the background."
-msgstr ""
+msgstr "%1 on käynnissä taustalla."
 
 #: src/background.cpp:94
 #, kde-format
 msgid "Find out more"
-msgstr ""
+msgstr "Lisätietoa"
 
 #: src/background.cpp:123
 #, kde-format
 msgid "%1 is running in the background"
-msgstr ""
+msgstr "%1 on käynnissä taustalla"
 
 #: src/background.cpp:124
 #, kde-format
@@ -81,16 +81,20 @@
 "\n"
 "Note that forcing an application to quit might cause data loss."
 msgstr ""
+"Näin voi olla hyvästä syystä, mutta sovellus ei kerro syytä.\n"
+"\n"
+"Huomaa, että sovelluksen 

commit xdg-desktop-portal-kde for openSUSE:Factory

2020-06-08 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2020-06-08 23:57:14

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.3606 (New)


Package is "xdg-desktop-portal-kde"

Mon Jun  8 23:57:14 2020 rev:61 rq:812341 version:5.19.0

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2020-05-07 15:11:26.492484486 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.3606/xdg-desktop-portal-kde.changes
  2020-06-08 23:58:14.179993448 +0200
@@ -1,0 +2,34 @@
+Thu Jun  4 13:27:15 UTC 2020 - Fabian Vogt 
+
+- Update to 5.19.0
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.19.0.php
+- Changes since 5.18.90:
+  * Screencast: add information about the source type which is being shared
+  * Background portal: do not notify about apps in background when we don't 
track them
+  * Background portal: correctly send respond whether we allow application in 
the background
+
+---
+Thu May 14 14:33:10 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.90.php
+- Changes since 5.18.5:
+  * FileChooser portal: add support for opening directories
+  * Screensharing: support variable stride
+  * Make PipeWire, GBM and Epoxy libs as required dependencies
+  * Return buffer to pipewire when returning early from recordFrame
+  * Send notification when screencasting fails
+  * Add background portal
+  * ScreenSharing: close dialogs when session is closed
+  * Send notification when screencasting fails
+  * bump to require Qt 5.14
+  * Avoid copying buffer twice (kde#419209)
+  * Add new Account portal
+  * Make it possible to stream only input
+  * Return if the process couldn't be properly registered
+
+---

Old:

  xdg-desktop-portal-kde-5.18.5.tar.xz
  xdg-desktop-portal-kde-5.18.5.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.19.0.tar.xz
  xdg-desktop-portal-kde-5.19.0.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.3zxES0/_old  2020-06-08 23:58:15.051996137 +0200
+++ /var/tmp/diff_new_pack.3zxES0/_new  2020-06-08 23:58:15.055996150 +0200
@@ -25,15 +25,15 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.18.5
+Version:5.19.0
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later
 Group:  System/Libraries
 URL:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
+Source: xdg-desktop-portal-kde-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz.sig
+Source1:xdg-desktop-portal-kde-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 BuildRequires:  extra-cmake-modules >= %{kf5_version}
@@ -93,6 +93,7 @@
 %dir %{_kf5_sharedir}/xdg-desktop-portal/portals
 %{_kf5_applicationsdir}/org.freedesktop.impl.portal.desktop.kde.desktop
 %{_kf5_libdir}/libexec/xdg-desktop-portal-kde
+%{_kf5_notifydir}/xdg-desktop-portal-kde.notifyrc
 
%{_kf5_sharedir}/dbus-1/services/org.freedesktop.impl.portal.desktop.kde.service
 %{_kf5_sharedir}/xdg-desktop-portal/portals/kde.portal
 %{_kf5_sharedir}/xdg-desktop-portal-kde


++ xdg-desktop-portal-kde-5.18.5.tar.xz -> 
xdg-desktop-portal-kde-5.19.0.tar.xz ++
 6444 lines of diff (skipped)




commit xdg-desktop-portal-kde for openSUSE:Factory

2020-05-07 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2020-05-07 15:11:22

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.2738 (New)


Package is "xdg-desktop-portal-kde"

Thu May  7 15:11:22 2020 rev:60 rq:800506 version:5.18.5

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2020-04-04 12:16:47.987482763 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.2738/xdg-desktop-portal-kde.changes
  2020-05-07 15:11:26.492484486 +0200
@@ -1,0 +2,10 @@
+Tue May  5 13:01:56 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.5.php
+- Changes since 5.18.4.1:
+  * ScreenSharing: close dialogs when session is closed
+
+---

Old:

  xdg-desktop-portal-kde-5.18.4.1.tar.xz
  xdg-desktop-portal-kde-5.18.4.1.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.18.5.tar.xz
  xdg-desktop-portal-kde-5.18.5.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.vokgmE/_old  2020-05-07 15:11:27.056485614 +0200
+++ /var/tmp/diff_new_pack.vokgmE/_new  2020-05-07 15:11:27.056485614 +0200
@@ -25,15 +25,15 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.18.4.1
+Version:5.18.5
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later
 Group:  System/Libraries
 URL:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/5.18.4/xdg-desktop-portal-kde-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/5.18.4/xdg-desktop-portal-kde-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 BuildRequires:  extra-cmake-modules >= %{kf5_version}


++ xdg-desktop-portal-kde-5.18.4.1.tar.xz -> 
xdg-desktop-portal-kde-5.18.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.18.4.1/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.18.5/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.18.4.1/CMakeLists.txt  2020-03-31 
16:40:42.0 +0200
+++ new/xdg-desktop-portal-kde-5.18.5/CMakeLists.txt2020-05-05 
17:06:36.0 +0200
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.18.4")
+set(PROJECT_VERSION "5.18.5")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.12.0")
@@ -71,11 +71,6 @@
 WindowSystem
 )
 
-if (EXISTS "${CMAKE_SOURCE_DIR}/.git")
-   add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x06)
-   add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x054200)
-endif()
-
 add_subdirectory(data)
 add_subdirectory(src)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.18.4.1/po/en_GB/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.18.5/po/en_GB/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.18.4.1/po/en_GB/xdg-desktop-portal-kde.po  
2020-03-31 16:40:27.0 +0200
+++ new/xdg-desktop-portal-kde-5.18.5/po/en_GB/xdg-desktop-portal-kde.po
2020-05-05 17:06:23.0 +0200
@@ -9,7 +9,7 @@
 "POT-Creation-Date: 2020-03-26 09:21+0100\n"
 "PO-Revision-Date: 2019-11-03 11:37+\n"
 "Last-Translator: Steve Allewell \n"
-"Language-Team: British English \n"
+"Language-Team: British English \n"
 "Language: en_GB\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.18.4.1/po/nn/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.18.5/po/nn/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.18.4.1/po/nn/xdg-desktop-portal-kde.po 
2020-03-31 16:40:35.0 +0200
+++ new/xdg-desktop-portal-kde-5.18.5/po/nn/xdg-desktop-portal-kde.po   
2020-05-05 17:06:30.0 +0200
@@ -1,6 +1,6 @@
 # Translation of xdg-desktop-portal-kde to Norwegian Nynorsk
 #
-# Karl Ove Hufthammer , 2018, 2019.
+# Karl Ove Hufthammer , 2018, 2019, 2020.
 # Øystein Steffensen-Alværvik , 2018.
 msgid ""
 msgstr ""
@@ -9,13 +9,13 @@
 "POT-Creation-Date: 2020-03-26 09:21+0100\n"
 "PO-Revision-Date: 2019-10-26 12:23+0200\n"
 

commit xdg-desktop-portal-kde for openSUSE:Factory

2020-04-04 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2020-04-04 12:16:39

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.3248 (New)


Package is "xdg-desktop-portal-kde"

Sat Apr  4 12:16:39 2020 rev:59 rq:790453 version:5.18.4.1

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2020-03-12 23:01:08.435058515 +0100
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.3248/xdg-desktop-portal-kde.changes
  2020-04-04 12:16:47.987482763 +0200
@@ -1,0 +2,19 @@
+Tue Mar 31 15:16:45 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.4.1:
+  * Version fixed
+
+---
+Tue Mar 31 14:47:44 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.4.php
+- Changes since 5.18.3:
+  * FileChooser: make all opened files automatically writable
+  * Screensharing: code cleanup
+  * Avoid copying buffer twice (kde#419209)
+  * Implement Keyboard Keycode support as suggested in the spec
+
+---

Old:

  xdg-desktop-portal-kde-5.18.3.tar.xz
  xdg-desktop-portal-kde-5.18.3.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.18.4.1.tar.xz
  xdg-desktop-portal-kde-5.18.4.1.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.tJSAjP/_old  2020-04-04 12:16:48.819483610 +0200
+++ /var/tmp/diff_new_pack.tJSAjP/_new  2020-04-04 12:16:48.819483610 +0200
@@ -25,15 +25,15 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.18.3
+Version:5.18.4.1
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later
 Group:  System/Libraries
 URL:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/5.18.4/xdg-desktop-portal-kde-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/5.18.4/xdg-desktop-portal-kde-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 BuildRequires:  extra-cmake-modules >= %{kf5_version}


++ xdg-desktop-portal-kde-5.18.3.tar.xz -> 
xdg-desktop-portal-kde-5.18.4.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.18.3/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.18.4.1/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.18.3/CMakeLists.txt2020-03-10 
14:32:29.0 +0100
+++ new/xdg-desktop-portal-kde-5.18.4.1/CMakeLists.txt  2020-03-31 
16:40:42.0 +0200
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.18.3")
+set(PROJECT_VERSION "5.18.4")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.12.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.18.3/po/ca/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.18.4.1/po/ca/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.18.3/po/ca/xdg-desktop-portal-kde.po   
2020-03-10 14:32:16.0 +0100
+++ new/xdg-desktop-portal-kde-5.18.4.1/po/ca/xdg-desktop-portal-kde.po 
2020-03-31 16:40:25.0 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: xdg-desktop-portal-kde\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
-"POT-Creation-Date: 2020-01-31 08:34+0100\n"
+"POT-Creation-Date: 2020-03-26 09:21+0100\n"
 "PO-Revision-Date: 2019-10-26 11:43+0100\n"
 "Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
@@ -200,12 +200,12 @@
 msgid "Take screenshot"
 msgstr "Pren una captura de pantalla"
 
-#: src/waylandintegration.cpp:394
+#: src/waylandintegration.cpp:420
 #, kde-format
 msgid "xdg-desktop-portals-kde"
 msgstr "xdg-desktop-portals-kde"
 
-#: src/waylandintegration.cpp:394
+#: src/waylandintegration.cpp:420
 #, kde-format
 msgid "Remote desktop"
 msgstr "Escriptori remot"
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.18.3/po/ca@valencia/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.18.4.1/po/ca@valencia/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.18.3/po/ca@valencia/xdg-desktop-portal-kde.po  
2020-03-10 

commit xdg-desktop-portal-kde for openSUSE:Factory

2020-03-12 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2020-03-12 23:00:25

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.3160 (New)


Package is "xdg-desktop-portal-kde"

Thu Mar 12 23:00:25 2020 rev:58 rq:783660 version:5.18.3

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2020-02-29 21:23:21.774379761 +0100
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.3160/xdg-desktop-portal-kde.changes
  2020-03-12 23:01:08.435058515 +0100
@@ -1,0 +2,12 @@
+Tue Mar 10 14:55:35 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.3.php
+- Changes since 5.18.2:
+  * use content_type as fallback in appchooser dialog
+  * Only deprecate up to target frameworks
+  * FileChooser: do not return empty file list when no local file is selected 
BUG: 418155 (kde#418155)
+
+---

Old:

  xdg-desktop-portal-kde-5.18.2.tar.xz
  xdg-desktop-portal-kde-5.18.2.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.18.3.tar.xz
  xdg-desktop-portal-kde-5.18.3.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.MBP7Oq/_old  2020-03-12 23:01:08.911058705 +0100
+++ /var/tmp/diff_new_pack.MBP7Oq/_new  2020-03-12 23:01:08.919058708 +0100
@@ -25,7 +25,7 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.18.2
+Version:5.18.3
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later


++ xdg-desktop-portal-kde-5.18.2.tar.xz -> 
xdg-desktop-portal-kde-5.18.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.18.2/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.18.3/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.18.2/CMakeLists.txt2020-02-25 
14:36:26.0 +0100
+++ new/xdg-desktop-portal-kde-5.18.3/CMakeLists.txt2020-03-10 
14:32:29.0 +0100
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.18.2")
+set(PROJECT_VERSION "5.18.3")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.12.0")
@@ -73,7 +73,7 @@
 
 if (EXISTS "${CMAKE_SOURCE_DIR}/.git")
add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x06)
-   add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x06)
+   add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x054200)
 endif()
 
 add_subdirectory(data)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.18.2/po/zh_CN/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.18.3/po/zh_CN/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.18.2/po/zh_CN/xdg-desktop-portal-kde.po
2020-02-25 14:36:26.0 +0100
+++ new/xdg-desktop-portal-kde-5.18.3/po/zh_CN/xdg-desktop-portal-kde.po
2020-03-10 14:32:29.0 +0100
@@ -4,7 +4,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-01-31 08:34+0100\n"
-"PO-Revision-Date: 2020-01-20 21:55\n"
+"PO-Revision-Date: 2020-03-10 10:58\n"
 "Last-Translator: FULL NAME \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.18.2/src/appchooser.cpp 
new/xdg-desktop-portal-kde-5.18.3/src/appchooser.cpp
--- old/xdg-desktop-portal-kde-5.18.2/src/appchooser.cpp2020-02-25 
14:35:58.0 +0100
+++ new/xdg-desktop-portal-kde-5.18.3/src/appchooser.cpp2020-03-10 
14:32:07.0 +0100
@@ -55,7 +55,11 @@
 latestChoice = options.value(QStringLiteral("last_choice")).toString();
 }
 
-AppChooserDialog *appDialog = new AppChooserDialog(choices, latestChoice, 
options.value(QStringLiteral("filename")).toString());
+QVariant itemName = options.value(QStringLiteral("filename"));
+if (!itemName.isValid()) {
+itemName = options.value(QStringLiteral("content_type"));
+}
+AppChooserDialog *appDialog = new AppChooserDialog(choices, latestChoice, 
itemName.toString());
 m_appChooserDialogs.insert(handle.path(), appDialog);
 Utils::setParentWindow(appDialog, parent_window);
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.18.2/src/filechooser.cpp 
new/xdg-desktop-portal-kde-5.18.3/src/filechooser.cpp
--- 

commit xdg-desktop-portal-kde for openSUSE:Factory

2020-02-29 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2020-02-29 21:23:10

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.26092 (New)


Package is "xdg-desktop-portal-kde"

Sat Feb 29 21:23:10 2020 rev:57 rq:779213 version:5.18.2

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2020-02-22 19:06:57.794409361 +0100
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.26092/xdg-desktop-portal-kde.changes
 2020-02-29 21:23:21.774379761 +0100
@@ -1,0 +2,9 @@
+Tue Feb 25 14:07:20 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.2.php
+- No code changes since 5.18.1
+
+---

Old:

  xdg-desktop-portal-kde-5.18.1.tar.xz
  xdg-desktop-portal-kde-5.18.1.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.18.2.tar.xz
  xdg-desktop-portal-kde-5.18.2.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.CvLvQn/_old  2020-02-29 21:23:22.398380997 +0100
+++ /var/tmp/diff_new_pack.CvLvQn/_new  2020-02-29 21:23:22.402381004 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xdg-desktop-portal-kde
 #
-# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,12 +25,12 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.18.1
+Version:5.18.2
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later
 Group:  System/Libraries
-Url:http://www.kde.org
+URL:http://www.kde.org
 Source: 
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
 %if %{with lang}
 Source1:
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz.sig


++ xdg-desktop-portal-kde-5.18.1.tar.xz -> 
xdg-desktop-portal-kde-5.18.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.18.1/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.18.2/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.18.1/CMakeLists.txt2020-02-18 
14:29:49.0 +0100
+++ new/xdg-desktop-portal-kde-5.18.2/CMakeLists.txt2020-02-25 
14:36:26.0 +0100
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.18.1")
+set(PROJECT_VERSION "5.18.2")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.12.0")




commit xdg-desktop-portal-kde for openSUSE:Factory

2020-02-22 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2020-02-22 19:06:39

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.26092 (New)


Package is "xdg-desktop-portal-kde"

Sat Feb 22 19:06:39 2020 rev:56 rq:776840 version:5.18.1

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2020-02-10 21:53:04.586179483 +0100
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.26092/xdg-desktop-portal-kde.changes
 2020-02-22 19:06:57.794409361 +0100
@@ -1,0 +2,12 @@
+Tue Feb 18 14:05:59 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.1.php
+- Changes since 5.18.0:
+  * PipeWire: set stream and offset information for the buffer
+  * Properly combine pipewire and spa includes
+  * Properly search for PipeWire libs
+
+---

Old:

  xdg-desktop-portal-kde-5.18.0.tar.xz
  xdg-desktop-portal-kde-5.18.0.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.18.1.tar.xz
  xdg-desktop-portal-kde-5.18.1.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.XqEBBV/_old  2020-02-22 19:06:59.278412318 +0100
+++ /var/tmp/diff_new_pack.XqEBBV/_new  2020-02-22 19:06:59.310412381 +0100
@@ -25,15 +25,15 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.18.0
+Version:5.18.1
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later
 Group:  System/Libraries
 Url:http://www.kde.org
-Source: xdg-desktop-portal-kde-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
 %if %{with lang}
-Source1:xdg-desktop-portal-kde-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 BuildRequires:  extra-cmake-modules >= %{kf5_version}


++ xdg-desktop-portal-kde-5.18.0.tar.xz -> 
xdg-desktop-portal-kde-5.18.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.18.0/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.18.1/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.18.0/CMakeLists.txt2020-02-06 
14:35:12.0 +0100
+++ new/xdg-desktop-portal-kde-5.18.1/CMakeLists.txt2020-02-18 
14:29:49.0 +0100
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.18.0")
+set(PROJECT_VERSION "5.18.1")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.12.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.18.0/cmake/modules/FindPipeWire.cmake 
new/xdg-desktop-portal-kde-5.18.1/cmake/modules/FindPipeWire.cmake
--- old/xdg-desktop-portal-kde-5.18.0/cmake/modules/FindPipeWire.cmake  
2020-02-06 14:34:45.0 +0100
+++ new/xdg-desktop-portal-kde-5.18.1/cmake/modules/FindPipeWire.cmake  
2020-02-18 14:29:20.0 +0100
@@ -32,7 +32,7 @@
 #=
 # Copyright 2014 Alex Merry 
 # Copyright 2014 Martin Gräßlin 
-# Copyright 2018 Jan Grulich 
+# Copyright 2018-2020 Jan Grulich 
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions
@@ -61,9 +61,11 @@
 # Use pkg-config to get the directories and then use these values
 # in the FIND_PATH() and FIND_LIBRARY() calls
 find_package(PkgConfig QUIET)
-pkg_check_modules(PKG_PipeWire QUIET libpipewire-0.2 libpipewire-0.3)
 
-set(PipeWire_DEFINITIONS "${PKG_PipeWire_CFLAGS_OTHER}")
+pkg_search_module(PKG_PipeWire QUIET libpipewire-0.3 libpipewire-0.2)
+pkg_search_module(PKG_Spa QUIET libspa-0.2 libspa-0.1)
+
+set(PipeWire_DEFINITIONS "${PKG_PipeWire_CFLAGS}" "${PKG_Spa_CFLAGS}")
 set(PipeWire_VERSION "${PKG_PipeWire_VERSION}")
 
 find_path(PipeWire_INCLUDE_DIRS
@@ -71,13 +73,23 @@
 pipewire/pipewire.h
 HINTS
 ${PKG_PipeWire_INCLUDE_DIRS}
+${PKG_PipeWire_INCLUDE_DIRS}/pipewire-0.3
+)
+
+find_path(Spa_INCLUDE_DIRS
+NAMES
+spa/param/props.h
+HINTS
+${PKG_Spa_INCLUDE_DIRS}
+${PKG_Spa_INCLUDE_DIRS}/spa-0.2
 )
 
 find_library(PipeWire_LIBRARIES
 NAMES
-pipewire-0.2 pipewire-0.3
+pipewire-0.3
+pipewire-0.2
 

commit xdg-desktop-portal-kde for openSUSE:Factory

2020-02-10 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2020-02-10 21:52:49

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.26092 (New)


Package is "xdg-desktop-portal-kde"

Mon Feb 10 21:52:49 2020 rev:55 rq:772268 version:5.18.0

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2020-01-09 22:51:44.834743890 +0100
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.26092/xdg-desktop-portal-kde.changes
 2020-02-10 21:53:04.586179483 +0100
@@ -1,0 +2,31 @@
+Thu Feb  6 15:10:08 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.0
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.0.php
+- Changes since 5.17.90:
+  * Make it possible to stream only input
+  * Update support for PipeWire 0.3
+
+---
+Thu Jan 23 11:20:49 UTC 2020 - Christophe Giboudeaux 
+
+- Replace %make_jobs with %cmake_build
+
+---
+Thu Jan 16 14:04:23 UTC 2020 - Fabian Vogt 
+
+- Update to 5.17.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.17.90.php
+- Changes since 5.17.5:
+  * KF5_MIN_VERSION for plasma 5.18 is KF5 5.66.0
+  * Fix minor EBN issues
+  * Add KDEClangFormat cmake support
+  * Rewrite AppChooser dialog
+  * Port to non-deprecated KWindowSystem::setMainWindow overload
+  * Un-break remote input portal
+
+---

Old:

  xdg-desktop-portal-kde-5.17.5.tar.xz
  xdg-desktop-portal-kde-5.17.5.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.18.0.tar.xz
  xdg-desktop-portal-kde-5.18.0.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.j1pyPN/_old  2020-02-10 21:53:05.202179824 +0100
+++ /var/tmp/diff_new_pack.j1pyPN/_new  2020-02-10 21:53:05.202179824 +0100
@@ -25,24 +25,27 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.17.5
+Version:5.18.0
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later
 Group:  System/Libraries
 Url:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
+Source: xdg-desktop-portal-kde-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz.sig
+Source1:xdg-desktop-portal-kde-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 BuildRequires:  extra-cmake-modules >= %{kf5_version}
 BuildRequires:  libQt5PrintSupport-private-headers-devel
 BuildRequires:  cmake(KF5Config) >= %{kf5_version}
 BuildRequires:  cmake(KF5CoreAddons) >= %{kf5_version}
+BuildRequires:  cmake(KF5Declarative) >= %{kf5_version}
 BuildRequires:  cmake(KF5I18n) >= %{kf5_version}
 BuildRequires:  cmake(KF5KIO) >= %{kf5_version}
+BuildRequires:  cmake(KF5Kirigami2) >= %{kf5_version}
 BuildRequires:  cmake(KF5Notifications) >= %{kf5_version}
+BuildRequires:  cmake(KF5Plasma) >= %{kf5_version}
 BuildRequires:  cmake(KF5Wayland) >= %{kf5_version}
 BuildRequires:  cmake(KF5WidgetsAddons) >= %{kf5_version}
 BuildRequires:  cmake(KF5WindowSystem) >= %{kf5_version}
@@ -50,6 +53,7 @@
 BuildRequires:  cmake(Qt5Core) >= 5.11.0
 BuildRequires:  cmake(Qt5DBus)
 BuildRequires:  cmake(Qt5PrintSupport)
+BuildRequires:  cmake(Qt5QuickWidgets)
 BuildRequires:  cmake(Qt5Widgets)
 %if %{with screencast}
 BuildRequires:  pkgconfig(epoxy)
@@ -75,7 +79,7 @@
 
 %build
 %cmake_kf5 -d build
-%make_jobs
+%cmake_build
 
 %install
 %make_install -C build
@@ -85,12 +89,13 @@
 
 %files
 %license COPYING
-%{_libdir}/libexec/xdg-desktop-portal-kde
-%{_datadir}/dbus-1/services/org.freedesktop.impl.portal.desktop.kde.service
+%dir %{_kf5_sharedir}/xdg-desktop-portal
+%dir %{_kf5_sharedir}/xdg-desktop-portal/portals
 %{_kf5_applicationsdir}/org.freedesktop.impl.portal.desktop.kde.desktop
-%dir %{_datadir}/xdg-desktop-portal
-%dir %{_datadir}/xdg-desktop-portal/portals
-%{_datadir}/xdg-desktop-portal/portals/kde.portal
+%{_kf5_libdir}/libexec/xdg-desktop-portal-kde
+%{_kf5_sharedir}/dbus-1/services/org.freedesktop.impl.portal.desktop.kde.service
+%{_kf5_sharedir}/xdg-desktop-portal/portals/kde.portal
+%{_kf5_sharedir}/xdg-desktop-portal-kde
 
 %if %{with lang}
 %files lang -f %{name}.lang


++ xdg-desktop-portal-kde-5.17.5.tar.xz -> 

commit xdg-desktop-portal-kde for openSUSE:Factory

2020-01-09 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2020-01-09 22:50:50

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.6675 (New)


Package is "xdg-desktop-portal-kde"

Thu Jan  9 22:50:50 2020 rev:54 rq:762012 version:5.17.5

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2019-12-05 17:36:17.645418587 +0100
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.6675/xdg-desktop-portal-kde.changes
  2020-01-09 22:51:44.834743890 +0100
@@ -1,0 +2,10 @@
+Tue Jan  7 16:24:38 UTC 2020 - Fabian Vogt 
+
+- Update to 5.17.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.17.5.php
+- Changes since 5.17.4:
+  * Print portal: xdg-desktop-portal assumes the pages to be used as indexes
+
+---

Old:

  xdg-desktop-portal-kde-5.17.4.tar.xz
  xdg-desktop-portal-kde-5.17.4.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.17.5.tar.xz
  xdg-desktop-portal-kde-5.17.5.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.M1udZf/_old  2020-01-09 22:51:46.922744935 +0100
+++ /var/tmp/diff_new_pack.M1udZf/_new  2020-01-09 22:51:46.926744937 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xdg-desktop-portal-kde
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,7 +25,7 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.17.4
+Version:5.17.5
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later


++ xdg-desktop-portal-kde-5.17.4.tar.xz -> 
xdg-desktop-portal-kde-5.17.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.17.4/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.17.5/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.17.4/CMakeLists.txt2019-12-03 
13:37:47.0 +0100
+++ new/xdg-desktop-portal-kde-5.17.5/CMakeLists.txt2020-01-07 
16:53:30.0 +0100
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.17.4")
+set(PROJECT_VERSION "5.17.5")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.12.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.17.4/po/fr/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.17.5/po/fr/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.17.4/po/fr/xdg-desktop-portal-kde.po   
2019-12-03 13:37:34.0 +0100
+++ new/xdg-desktop-portal-kde-5.17.5/po/fr/xdg-desktop-portal-kde.po   
2020-01-07 16:53:14.0 +0100
@@ -13,7 +13,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 19.03.70\n"
+"X-Generator: Lokalize 19.07.70\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.17.4/po/hu/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.17.5/po/hu/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.17.4/po/hu/xdg-desktop-portal-kde.po   
2019-12-03 13:37:36.0 +0100
+++ new/xdg-desktop-portal-kde-5.17.5/po/hu/xdg-desktop-portal-kde.po   
2020-01-07 16:53:17.0 +0100
@@ -2,20 +2,21 @@
 # This file is distributed under the same license as the PACKAGE package.
 #
 # Kiszel Kristóf , 2017, 2018.
+# Kristóf Kiszel , 2019.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-07-04 03:13+0200\n"
-"PO-Revision-Date: 2018-10-19 18:25+0200\n"
-"Last-Translator: Kristof Kiszel \n"
+"PO-Revision-Date: 2019-12-09 23:09+0100\n"
+"Last-Translator: Kristóf Kiszel \n"
 "Language-Team: Hungarian \n"
 "Language: hu_HU\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 20.03.70\n"
 
 #: src/accessdialog.cpp:41
 #, kde-format
@@ -208,9 +209,9 @@
 #: src/waylandintegration.cpp:372
 #, kde-format
 msgid "xdg-desktop-portals-kde"
-msgstr ""
+msgstr 

commit xdg-desktop-portal-kde for openSUSE:Factory

2019-12-05 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2019-12-05 17:34:48

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.4691 (New)


Package is "xdg-desktop-portal-kde"

Thu Dec  5 17:34:48 2019 rev:53 rq:754037 version:5.17.4

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2019-11-13 13:27:50.919667666 +0100
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.4691/xdg-desktop-portal-kde.changes
  2019-12-05 17:36:17.645418587 +0100
@@ -1,0 +2,10 @@
+Wed Dec  4 08:37:03 UTC 2019 - Fabian Vogt 
+
+- Update to 5.17.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.17.4.php
+- Changes since 5.17.3:
+  * Port away from deprecated API in KWindowSystem
+
+---

Old:

  xdg-desktop-portal-kde-5.17.3.tar.xz
  xdg-desktop-portal-kde-5.17.3.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.17.4.tar.xz
  xdg-desktop-portal-kde-5.17.4.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.oWR6ux/_old  2019-12-05 17:36:19.873417783 +0100
+++ /var/tmp/diff_new_pack.oWR6ux/_new  2019-12-05 17:36:19.873417783 +0100
@@ -25,7 +25,7 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.17.3
+Version:5.17.4
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later


++ xdg-desktop-portal-kde-5.17.3.tar.xz -> 
xdg-desktop-portal-kde-5.17.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.17.3/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.17.4/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.17.3/CMakeLists.txt2019-11-12 
11:36:14.0 +0100
+++ new/xdg-desktop-portal-kde-5.17.4/CMakeLists.txt2019-12-03 
13:37:47.0 +0100
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.17.3")
+set(PROJECT_VERSION "5.17.4")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.12.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.17.3/po/fi/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.17.4/po/fi/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.17.3/po/fi/xdg-desktop-portal-kde.po   
2019-11-12 11:36:06.0 +0100
+++ new/xdg-desktop-portal-kde-5.17.4/po/fi/xdg-desktop-portal-kde.po   
2019-12-03 13:37:34.0 +0100
@@ -15,7 +15,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 18.12.3\n"
 
 #: src/accessdialog.cpp:41
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.17.3/po/zh_CN/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.17.4/po/zh_CN/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.17.3/po/zh_CN/xdg-desktop-portal-kde.po
2019-11-12 11:36:13.0 +0100
+++ new/xdg-desktop-portal-kde-5.17.4/po/zh_CN/xdg-desktop-portal-kde.po
2019-12-03 13:37:47.0 +0100
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-07-04 03:13+0200\n"
-"PO-Revision-Date: 2019-10-09 10:03\n"
+"PO-Revision-Date: 2019-11-19 23:10\n"
 "Last-Translator: Guo Yunhe (guoyunhe)\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.17.3/src/utils.cpp 
new/xdg-desktop-portal-kde-5.17.4/src/utils.cpp
--- old/xdg-desktop-portal-kde-5.17.3/src/utils.cpp 2019-11-12 
11:35:59.0 +0100
+++ new/xdg-desktop-portal-kde-5.17.4/src/utils.cpp 2019-12-03 
13:37:19.0 +0100
@@ -25,6 +25,7 @@
 void Utils::setParentWindow(QWidget *w, const QString _window)
 {
 if (parent_window.startsWith(QLatin1String("x11:"))) {
-KWindowSystem::setMainWindow(w, 
parent_window.midRef(4).toULongLong(nullptr, 16));
+w->setAttribute(Qt::WA_NativeWindow, true);
+KWindowSystem::setMainWindow(w->windowHandle(), 
parent_window.midRef(4).toULongLong(nullptr, 16));
 }
 }




commit xdg-desktop-portal-kde for openSUSE:Factory

2019-11-13 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2019-11-13 13:27:50

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.2990 (New)


Package is "xdg-desktop-portal-kde"

Wed Nov 13 13:27:50 2019 rev:52 rq:747872 version:5.17.3

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2019-10-31 22:17:13.939668188 +0100
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.2990/xdg-desktop-portal-kde.changes
  2019-11-13 13:27:50.919667666 +0100
@@ -1,0 +2,10 @@
+Tue Nov 12 11:01:09 UTC 2019 - Fabian Vogt 
+
+- Update to 5.17.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.17.3.php
+- Changes since 5.17.2:
+  * Un-break remote input portal
+
+---

Old:

  xdg-desktop-portal-kde-5.17.2.tar.xz
  xdg-desktop-portal-kde-5.17.2.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.17.3.tar.xz
  xdg-desktop-portal-kde-5.17.3.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.1Wy9MW/_old  2019-11-13 13:27:51.419668187 +0100
+++ /var/tmp/diff_new_pack.1Wy9MW/_new  2019-11-13 13:27:51.423668191 +0100
@@ -25,7 +25,7 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.17.2
+Version:5.17.3
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later
@@ -87,6 +87,7 @@
 %license COPYING
 %{_libdir}/libexec/xdg-desktop-portal-kde
 %{_datadir}/dbus-1/services/org.freedesktop.impl.portal.desktop.kde.service
+%{_kf5_applicationsdir}/org.freedesktop.impl.portal.desktop.kde.desktop
 %dir %{_datadir}/xdg-desktop-portal
 %dir %{_datadir}/xdg-desktop-portal/portals
 %{_datadir}/xdg-desktop-portal/portals/kde.portal


++ xdg-desktop-portal-kde-5.17.2.tar.xz -> 
xdg-desktop-portal-kde-5.17.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.17.2/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.17.3/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.17.2/CMakeLists.txt2019-10-29 
19:37:01.0 +0100
+++ new/xdg-desktop-portal-kde-5.17.3/CMakeLists.txt2019-11-12 
11:36:14.0 +0100
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.17.2")
+set(PROJECT_VERSION "5.17.3")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.12.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.17.2/data/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.17.3/data/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.17.2/data/CMakeLists.txt   2019-10-29 
19:36:35.0 +0100
+++ new/xdg-desktop-portal-kde-5.17.3/data/CMakeLists.txt   2019-11-12 
11:35:59.0 +0100
@@ -1,4 +1,6 @@
+configure_file(org.freedesktop.impl.portal.desktop.kde.desktop.in 
org.freedesktop.impl.portal.desktop.kde.desktop @ONLY)
 configure_file(org.freedesktop.impl.portal.desktop.kde.cmake.in 
org.freedesktop.impl.portal.desktop.kde.service @ONLY)
 
 install(FILES 
${CMAKE_CURRENT_BINARY_DIR}/org.freedesktop.impl.portal.desktop.kde.service 
DESTINATION ${KDE_INSTALL_DBUSSERVICEDIR})
 install(FILES kde.portal DESTINATION 
${DATA_INSTALL_DIR}/xdg-desktop-portal/portals)
+install(FILES 
${CMAKE_CURRENT_BINARY_DIR}/org.freedesktop.impl.portal.desktop.kde.desktop 
DESTINATION ${XDG_APPS_INSTALL_DIR})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.17.2/data/org.freedesktop.impl.portal.desktop.kde.desktop.in
 
new/xdg-desktop-portal-kde-5.17.3/data/org.freedesktop.impl.portal.desktop.kde.desktop.in
--- 
old/xdg-desktop-portal-kde-5.17.2/data/org.freedesktop.impl.portal.desktop.kde.desktop.in
   1970-01-01 01:00:00.0 +0100
+++ 
new/xdg-desktop-portal-kde-5.17.3/data/org.freedesktop.impl.portal.desktop.kde.desktop.in
   2019-11-12 11:35:59.0 +0100
@@ -0,0 +1,6 @@
+[Desktop Entry]
+Type=Application
+Exec=@CMAKE_INSTALL_FULL_LIBEXECDIR@/xdg-desktop-portal-kde
+X-KDE-Wayland-Interfaces=org_kde_kwin_fake_input,org_kde_kwin_remote_access_manager
+NoDisplay=true
+Icon=kde




commit xdg-desktop-portal-kde for openSUSE:Factory

2019-10-31 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2019-10-31 22:17:11

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.2990 (New)


Package is "xdg-desktop-portal-kde"

Thu Oct 31 22:17:11 2019 rev:51 rq:744253 version:5.17.2

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2019-10-23 15:53:20.646856344 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.2990/xdg-desktop-portal-kde.changes
  2019-10-31 22:17:13.939668188 +0100
@@ -1,0 +2,9 @@
+Tue Oct 29 20:45:53 UTC 2019 - Fabian Vogt 
+
+- Update to 5.17.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.17.2.php
+- No code changes since 5.17.1
+
+---

Old:

  xdg-desktop-portal-kde-5.17.1.tar.xz
  xdg-desktop-portal-kde-5.17.1.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.17.2.tar.xz
  xdg-desktop-portal-kde-5.17.2.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.AmBxeC/_old  2019-10-31 22:17:15.775670660 +0100
+++ /var/tmp/diff_new_pack.AmBxeC/_new  2019-10-31 22:17:15.791670682 +0100
@@ -25,7 +25,7 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.17.1
+Version:5.17.2
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later


++ xdg-desktop-portal-kde-5.17.1.tar.xz -> 
xdg-desktop-portal-kde-5.17.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.17.1/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.17.2/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.17.1/CMakeLists.txt2019-10-22 
17:49:30.0 +0200
+++ new/xdg-desktop-portal-kde-5.17.2/CMakeLists.txt2019-10-29 
19:37:01.0 +0100
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.17.1")
+set(PROJECT_VERSION "5.17.2")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.12.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.17.1/po/gl/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.17.2/po/gl/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.17.1/po/gl/xdg-desktop-portal-kde.po   
2019-10-22 17:49:15.0 +0200
+++ new/xdg-desktop-portal-kde-5.17.2/po/gl/xdg-desktop-portal-kde.po   
2019-10-29 19:36:51.0 +0100
@@ -15,7 +15,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 19.11.70\n"
+"X-Generator: Lokalize 19.08.2\n"
 
 #: src/accessdialog.cpp:41
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.17.1/po/id/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.17.2/po/id/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.17.1/po/id/xdg-desktop-portal-kde.po   
2019-10-22 17:49:17.0 +0200
+++ new/xdg-desktop-portal-kde-5.17.2/po/id/xdg-desktop-portal-kde.po   
2019-10-29 19:36:52.0 +0100
@@ -15,6 +15,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Lokalize 19.08.1\n"
 
 #: src/accessdialog.cpp:41
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.17.1/po/it/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.17.2/po/it/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.17.1/po/it/xdg-desktop-portal-kde.po   
2019-10-22 17:49:18.0 +0200
+++ new/xdg-desktop-portal-kde-5.17.2/po/it/xdg-desktop-portal-kde.po   
2019-10-29 19:36:53.0 +0100
@@ -15,7 +15,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 19.08.1\n"
 
 #: src/accessdialog.cpp:41
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.17.1/po/nn/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.17.2/po/nn/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.17.1/po/nn/xdg-desktop-portal-kde.po   
2019-10-22 17:49:22.0 +0200
+++ new/xdg-desktop-portal-kde-5.17.2/po/nn/xdg-desktop-portal-kde.po   
2019-10-29 19:36:56.0 

commit xdg-desktop-portal-kde for openSUSE:Factory

2019-10-23 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2019-10-23 15:53:16

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.2352 (New)


Package is "xdg-desktop-portal-kde"

Wed Oct 23 15:53:16 2019 rev:50 rq:742082 version:5.17.1

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2019-10-14 12:41:25.086713426 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.2352/xdg-desktop-portal-kde.changes
  2019-10-23 15:53:20.646856344 +0200
@@ -1,0 +2,9 @@
+Tue Oct 22 16:44:46 UTC 2019 - Fabian Vogt 
+
+- Update to 5.17.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.17.1.php
+- No code changes since 5.17.0
+
+---

Old:

  xdg-desktop-portal-kde-5.17.0.tar.xz
  xdg-desktop-portal-kde-5.17.0.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.17.1.tar.xz
  xdg-desktop-portal-kde-5.17.1.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.A56ds4/_old  2019-10-23 15:53:21.322857075 +0200
+++ /var/tmp/diff_new_pack.A56ds4/_new  2019-10-23 15:53:21.326857079 +0200
@@ -25,15 +25,15 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.17.0
+Version:5.17.1
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later
 Group:  System/Libraries
 Url:http://www.kde.org
-Source: xdg-desktop-portal-kde-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
 %if %{with lang}
-Source1:xdg-desktop-portal-kde-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 BuildRequires:  extra-cmake-modules >= %{kf5_version}


++ xdg-desktop-portal-kde-5.17.0.tar.xz -> 
xdg-desktop-portal-kde-5.17.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.17.0/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.17.1/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.17.0/CMakeLists.txt2019-10-10 
14:56:42.0 +0200
+++ new/xdg-desktop-portal-kde-5.17.1/CMakeLists.txt2019-10-22 
17:49:30.0 +0200
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.17.0")
+set(PROJECT_VERSION "5.17.1")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.12.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.17.0/po/gl/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.17.1/po/gl/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.17.0/po/gl/xdg-desktop-portal-kde.po   
2019-10-10 14:56:29.0 +0200
+++ new/xdg-desktop-portal-kde-5.17.1/po/gl/xdg-desktop-portal-kde.po   
2019-10-22 17:49:15.0 +0200
@@ -7,14 +7,15 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-07-04 03:13+0200\n"
-"PO-Revision-Date: 2019-02-15 16:41+0100\n"
+"PO-Revision-Date: 2019-10-19 21:45+0200\n"
 "Last-Translator: Adrián Chaves (Gallaecio) \n"
-"Language-Team: Galician \n"
+"Language-Team: Galician \n"
 "Language: gl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Lokalize 19.11.70\n"
 
 #: src/accessdialog.cpp:41
 #, kde-format
@@ -52,7 +53,7 @@
 "href=#discover>Discover."
 msgstr ""
-"Seleccionar o aplicativo para abrir «%1». Hai outros aplicativos dispoñíbeis "
+"Seleccionar a aplicación para abrir «%1». Hai outras aplicacións dispoñíbeis "
 "en Discover."
 
@@ -74,7 +75,7 @@
 #: src/remotedesktopdialog.cpp:74
 #, kde-format
 msgid "Select what to share with the requesting application"
-msgstr "Seleccione o que compartir co aplicativo"
+msgstr "Seleccione o que compartir coa aplicación"
 
 #: src/remotedesktopdialog.cpp:76
 #, kde-format
@@ -126,7 +127,7 @@
 #: src/screenchooserdialog.cpp:63
 #, kde-format
 msgid "Select screen to share with the requesting application"
-msgstr "Seleccione a pantalla que compartir co aplicativo"
+msgstr "Seleccione a pantalla que compartir coa aplicación"
 
 #: src/screenchooserdialog.cpp:65
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit xdg-desktop-portal-kde for openSUSE:Factory

2019-10-14 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2019-10-14 12:41:23

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.2352 (New)


Package is "xdg-desktop-portal-kde"

Mon Oct 14 12:41:23 2019 rev:49 rq:737497 version:5.17.0

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2019-09-05 12:43:13.867468576 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.2352/xdg-desktop-portal-kde.changes
  2019-10-14 12:41:25.086713426 +0200
@@ -1,0 +2,25 @@
+Thu Oct 10 14:25:49 UTC 2019 - Fabian Vogt 
+
+- Update to 5.17.0
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.17.0.php
+- No code changes since 5.16.90
+
+---
+Thu Sep 19 12:32:40 UTC 2019 - Fabian Vogt 
+
+- Update to 5.16.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.16.90.php
+- Changes since 5.16.5:
+  * update to latest kf5 dependency
+  * PipeWire: use thread loop instead of watching a socket
+  * Make it compile without deprecated method
+  * GLIB2 shouldn't be required
+  * Remove unused includes
+  * Fix forward declaration
+  * Add a TODO list
+
+---

Old:

  xdg-desktop-portal-kde-5.16.5.tar.xz
  xdg-desktop-portal-kde-5.16.5.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.17.0.tar.xz
  xdg-desktop-portal-kde-5.17.0.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.2FSXZd/_old  2019-10-14 12:41:26.254710371 +0200
+++ /var/tmp/diff_new_pack.2FSXZd/_new  2019-10-14 12:41:26.258710361 +0200
@@ -25,15 +25,15 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.16.5
+Version:5.17.0
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later
 Group:  System/Libraries
 Url:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
+Source: xdg-desktop-portal-kde-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz.sig
+Source1:xdg-desktop-portal-kde-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 BuildRequires:  extra-cmake-modules >= %{kf5_version}
@@ -54,7 +54,6 @@
 %if %{with screencast}
 BuildRequires:  pkgconfig(epoxy)
 BuildRequires:  pkgconfig(gbm)
-BuildRequires:  pkgconfig(glib-2.0)
 # Don't use pkgconfig here as that would cause unresolvables on 0.1 -> 0.2 -> 
0.3 bumps
 BuildRequires:  pipewire-devel
 # Without pipewire, screencasting won't work. Not a hard dep though.


++ xdg-desktop-portal-kde-5.16.5.tar.xz -> 
xdg-desktop-portal-kde-5.17.0.tar.xz ++
 2914 lines of diff (skipped)




commit xdg-desktop-portal-kde for openSUSE:Factory

2019-09-05 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2019-09-05 12:43:10

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.7948 (New)


Package is "xdg-desktop-portal-kde"

Thu Sep  5 12:43:10 2019 rev:48 rq:728215 version:5.16.5

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2019-07-31 14:34:19.093911422 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.7948/xdg-desktop-portal-kde.changes
  2019-09-05 12:43:13.867468576 +0200
@@ -1,0 +2,9 @@
+Tue Sep  3 12:44:14 UTC 2019 - Fabian Vogt 
+
+- Update to 5.16.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.16.5.php
+- No code changes since 5.16.4
+
+---

Old:

  xdg-desktop-portal-kde-5.16.4.tar.xz
  xdg-desktop-portal-kde-5.16.4.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.16.5.tar.xz
  xdg-desktop-portal-kde-5.16.5.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.rFeR8J/_old  2019-09-05 12:43:14.299468492 +0200
+++ /var/tmp/diff_new_pack.rFeR8J/_new  2019-09-05 12:43:14.303468491 +0200
@@ -25,7 +25,7 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.16.4
+Version:5.16.5
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later


++ xdg-desktop-portal-kde-5.16.4.tar.xz -> 
xdg-desktop-portal-kde-5.16.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.16.4/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.16.5/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.16.4/CMakeLists.txt2019-07-30 
12:41:44.0 +0200
+++ new/xdg-desktop-portal-kde-5.16.5/CMakeLists.txt2019-09-03 
16:03:59.0 +0200
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.16.4")
+set(PROJECT_VERSION "5.16.5")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.12.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.16.4/po/ca/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.16.5/po/ca/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.16.4/po/ca/xdg-desktop-portal-kde.po   
2019-07-30 12:41:30.0 +0200
+++ new/xdg-desktop-portal-kde-5.16.5/po/ca/xdg-desktop-portal-kde.po   
2019-09-03 16:03:51.0 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: xdg-desktop-portal-kde\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
-"POT-Creation-Date: 2019-05-20 07:47+0200\n"
+"POT-Creation-Date: 2019-08-30 07:53+0200\n"
 "PO-Revision-Date: 2019-02-15 17:43+0100\n"
 "Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.16.4/po/ca@valencia/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.16.5/po/ca@valencia/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.16.4/po/ca@valencia/xdg-desktop-portal-kde.po  
2019-07-30 12:41:30.0 +0200
+++ new/xdg-desktop-portal-kde-5.16.5/po/ca@valencia/xdg-desktop-portal-kde.po  
2019-09-03 16:03:51.0 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: xdg-desktop-portal-kde\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
-"POT-Creation-Date: 2019-05-20 07:47+0200\n"
+"POT-Creation-Date: 2019-08-30 07:53+0200\n"
 "PO-Revision-Date: 2019-02-15 17:43+0100\n"
 "Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.16.4/po/cs/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.16.5/po/cs/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.16.4/po/cs/xdg-desktop-portal-kde.po   
2019-07-30 12:41:30.0 +0200
+++ new/xdg-desktop-portal-kde-5.16.5/po/cs/xdg-desktop-portal-kde.po   
2019-09-03 16:03:51.0 +0200
@@ -6,8 +6,8 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
-"POT-Creation-Date: 2019-05-20 07:47+0200\n"
-"PO-Revision-Date: 2019-01-14 17:04+0100\n"
+"POT-Creation-Date: 2019-08-30 07:53+0200\n"
+"PO-Revision-Date: 2019-08-29 15:46+0200\n"
 "Last-Translator: Vit Pelcak \n"
 "Language-Team: Czech \n"
 "Language: cs\n"
@@ -15,7 +15,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; 

commit xdg-desktop-portal-kde for openSUSE:Factory

2019-07-31 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2019-07-31 14:32:29

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.4126 (New)


Package is "xdg-desktop-portal-kde"

Wed Jul 31 14:32:29 2019 rev:47 rq:719940 version:5.16.4

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2019-07-26 12:39:05.213954411 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.4126/xdg-desktop-portal-kde.changes
  2019-07-31 14:34:19.093911422 +0200
@@ -1,0 +2,9 @@
+Tue Jul 30 12:40:20 UTC 2019 - Fabian Vogt 
+
+- Update to 5.16.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.16.4.php
+- No code changes since 5.16.3
+
+---

Old:

  xdg-desktop-portal-kde-5.16.3.tar.xz
  xdg-desktop-portal-kde-5.16.3.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.16.4.tar.xz
  xdg-desktop-portal-kde-5.16.4.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.AX3hhD/_old  2019-07-31 14:34:21.761912418 +0200
+++ /var/tmp/diff_new_pack.AX3hhD/_new  2019-07-31 14:34:21.765912419 +0200
@@ -25,7 +25,7 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.16.3
+Version:5.16.4
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later


++ xdg-desktop-portal-kde-5.16.3.tar.xz -> 
xdg-desktop-portal-kde-5.16.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.16.3/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.16.4/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.16.3/CMakeLists.txt2019-07-09 
18:30:42.0 +0200
+++ new/xdg-desktop-portal-kde-5.16.4/CMakeLists.txt2019-07-30 
12:41:44.0 +0200
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.16.3")
+set(PROJECT_VERSION "5.16.4")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.12.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.16.3/po/zh_CN/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.16.4/po/zh_CN/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.16.3/po/zh_CN/xdg-desktop-portal-kde.po
2019-07-09 18:30:42.0 +0200
+++ new/xdg-desktop-portal-kde-5.16.4/po/zh_CN/xdg-desktop-portal-kde.po
2019-07-30 12:41:44.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-05-20 07:47+0200\n"
-"PO-Revision-Date: 2019-06-02 13:14\n"
+"PO-Revision-Date: 2019-07-18 15:09\n"
 "Last-Translator: Guo Yunhe (guoyunhe)\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit xdg-desktop-portal-kde for openSUSE:Factory

2019-07-26 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2019-07-26 12:38:52

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.4126 (New)


Package is "xdg-desktop-portal-kde"

Fri Jul 26 12:38:52 2019 rev:46 rq:717070 version:5.16.3

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2019-06-26 16:04:43.311687790 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.4126/xdg-desktop-portal-kde.changes
  2019-07-26 12:39:05.213954411 +0200
@@ -1,0 +2,9 @@
+Tue Jul  9 17:29:09 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.16.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.16.3.php
+- No code changes since 5.16.2
+
+---

Old:

  xdg-desktop-portal-kde-5.16.2.tar.xz
  xdg-desktop-portal-kde-5.16.2.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.16.3.tar.xz
  xdg-desktop-portal-kde-5.16.3.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.69p0Js/_old  2019-07-26 12:39:05.885953963 +0200
+++ /var/tmp/diff_new_pack.69p0Js/_new  2019-07-26 12:39:05.889953961 +0200
@@ -25,7 +25,7 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.16.2
+Version:5.16.3
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later


++ xdg-desktop-portal-kde-5.16.2.tar.xz -> 
xdg-desktop-portal-kde-5.16.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.16.2/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.16.3/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.16.2/CMakeLists.txt2019-06-25 
14:01:07.0 +0200
+++ new/xdg-desktop-portal-kde-5.16.3/CMakeLists.txt2019-07-09 
18:30:42.0 +0200
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.16.2")
+set(PROJECT_VERSION "5.16.3")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.12.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.16.2/po/lt/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.16.3/po/lt/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.16.2/po/lt/xdg-desktop-portal-kde.po   
2019-06-25 14:00:59.0 +0200
+++ new/xdg-desktop-portal-kde-5.16.3/po/lt/xdg-desktop-portal-kde.po   
2019-07-09 18:30:19.0 +0200
@@ -11,7 +11,7 @@
 "PO-Revision-Date: 2019-04-17 03:47+0200\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
-"Language: \n"
+"Language: lt\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.16.2/po/pt/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.16.3/po/pt/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.16.2/po/pt/xdg-desktop-portal-kde.po   
2019-06-25 14:01:02.0 +0200
+++ new/xdg-desktop-portal-kde-5.16.3/po/pt/xdg-desktop-portal-kde.po   
2019-07-09 18:30:28.0 +0200
@@ -6,7 +6,7 @@
 "PO-Revision-Date: 2019-02-15 11:22+\n"
 "Last-Translator: José Nuno Coelho Pires \n"
 "Language-Team: Portuguese \n"
-"Language: \n"
+"Language: pt\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.16.2/po/tr/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.16.3/po/tr/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.16.2/po/tr/xdg-desktop-portal-kde.po   
2019-06-25 14:01:05.0 +0200
+++ new/xdg-desktop-portal-kde-5.16.3/po/tr/xdg-desktop-portal-kde.po   
2019-07-09 18:30:38.0 +0200
@@ -11,7 +11,7 @@
 "PO-Revision-Date: 2017-10-04 12:13+\n"
 "Last-Translator: Kaan \n"
 "Language-Team: Turkish \n"
-"Language: \n"
+"Language: tr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"




commit xdg-desktop-portal-kde for openSUSE:Factory

2019-06-26 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2019-06-26 16:04:19

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.4615 (New)


Package is "xdg-desktop-portal-kde"

Wed Jun 26 16:04:19 2019 rev:45 rq:711995 version:5.16.2

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2019-06-20 19:04:31.005595200 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.4615/xdg-desktop-portal-kde.changes
  2019-06-26 16:04:43.311687790 +0200
@@ -1,0 +2,9 @@
+Tue Jun 25 12:41:20 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.16.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.16.2.php
+- No code changes since 5.16.1
+
+---

Old:

  xdg-desktop-portal-kde-5.16.1.tar.xz
  xdg-desktop-portal-kde-5.16.1.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.16.2.tar.xz
  xdg-desktop-portal-kde-5.16.2.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.VTSQN2/_old  2019-06-26 16:04:49.475696511 +0200
+++ /var/tmp/diff_new_pack.VTSQN2/_new  2019-06-26 16:04:49.475696511 +0200
@@ -25,7 +25,7 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.16.1
+Version:5.16.2
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later


++ xdg-desktop-portal-kde-5.16.1.tar.xz -> 
xdg-desktop-portal-kde-5.16.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.16.1/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.16.2/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.16.1/CMakeLists.txt2019-06-18 
12:12:41.0 +0200
+++ new/xdg-desktop-portal-kde-5.16.2/CMakeLists.txt2019-06-25 
14:01:07.0 +0200
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.16.1")
+set(PROJECT_VERSION "5.16.2")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.12.0")




commit xdg-desktop-portal-kde for openSUSE:Factory

2019-06-20 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2019-06-20 19:04:26

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.4811 (New)


Package is "xdg-desktop-portal-kde"

Thu Jun 20 19:04:26 2019 rev:44 rq:79 version:5.16.1

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2019-06-12 13:31:38.116195803 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.4811/xdg-desktop-portal-kde.changes
  2019-06-20 19:04:31.005595200 +0200
@@ -1,0 +2,9 @@
+Tue Jun 18 16:38:17 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.16.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.16.1.php
+- No code changes since 5.16.0
+
+---

Old:

  xdg-desktop-portal-kde-5.16.0.tar.xz
  xdg-desktop-portal-kde-5.16.0.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.16.1.tar.xz
  xdg-desktop-portal-kde-5.16.1.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.ZaTWPv/_old  2019-06-20 19:04:31.521595908 +0200
+++ /var/tmp/diff_new_pack.ZaTWPv/_new  2019-06-20 19:04:31.521595908 +0200
@@ -25,15 +25,15 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.16.0
+Version:5.16.1
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later
 Group:  System/Libraries
 Url:http://www.kde.org
-Source: xdg-desktop-portal-kde-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
 %if %{with lang}
-Source1:xdg-desktop-portal-kde-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 BuildRequires:  extra-cmake-modules >= %{kf5_version}


++ xdg-desktop-portal-kde-5.16.0.tar.xz -> 
xdg-desktop-portal-kde-5.16.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.16.0/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.16.1/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.16.0/CMakeLists.txt2019-06-06 
15:20:35.0 +0200
+++ new/xdg-desktop-portal-kde-5.16.1/CMakeLists.txt2019-06-18 
12:12:41.0 +0200
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.16.0")
+set(PROJECT_VERSION "5.16.1")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.12.0")




commit xdg-desktop-portal-kde for openSUSE:Factory

2019-06-12 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2019-06-12 13:31:37

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.4811 (New)


Package is "xdg-desktop-portal-kde"

Wed Jun 12 13:31:37 2019 rev:43 rq:708331 version:5.16.0

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2019-05-15 12:35:44.920313556 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.4811/xdg-desktop-portal-kde.changes
  2019-06-12 13:31:38.116195803 +0200
@@ -1,0 +2,24 @@
+Thu Jun  6 14:07:11 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.16.0
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.16.0.php
+- Changes since 5.15.90:
+  * Fix potential build failure
+  * Allow some portals to run only on Plasma sessions
+
+---
+Thu May 16 16:56:41 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.15.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.15.90.php
+- Changes since 5.15.5:
+  * AppChooser: put list of applications into a scrollarea (kde#407559)
+  * bump Qt version to 5.12 as agreed at start of cycle
+  * Support default action, priority hints, set desktop-entry
+  * Implement mouse support
+
+---

Old:

  xdg-desktop-portal-kde-5.15.5.tar.xz
  xdg-desktop-portal-kde-5.15.5.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.16.0.tar.xz
  xdg-desktop-portal-kde-5.16.0.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.MfnGF6/_old  2019-06-12 13:31:38.528195588 +0200
+++ /var/tmp/diff_new_pack.MfnGF6/_new  2019-06-12 13:31:38.528195588 +0200
@@ -23,17 +23,17 @@
 %bcond_with screencast
 %endif
 
-%define kf5_version 5.54.0
+%define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.15.5
+Version:5.16.0
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later
 Group:  System/Libraries
 Url:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
+Source: xdg-desktop-portal-kde-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz.sig
+Source1:xdg-desktop-portal-kde-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 BuildRequires:  extra-cmake-modules >= %{kf5_version}


++ xdg-desktop-portal-kde-5.15.5.tar.xz -> 
xdg-desktop-portal-kde-5.16.0.tar.xz ++
 2955 lines of diff (skipped)




commit xdg-desktop-portal-kde for openSUSE:Factory

2019-05-15 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2019-05-15 12:35:38

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.5148 (New)


Package is "xdg-desktop-portal-kde"

Wed May 15 12:35:38 2019 rev:42 rq:703097 version:5.15.5

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2019-05-08 15:17:19.589103526 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.5148/xdg-desktop-portal-kde.changes
  2019-05-15 12:35:44.920313556 +0200
@@ -1,0 +2,5 @@
+Wed May 15 07:14:53 UTC 2019 - Fabian Vogt 
+
+- Recommend pipewire for screencasting
+
+---



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.P53IPC/_old  2019-05-15 12:35:45.396312295 +0200
+++ /var/tmp/diff_new_pack.P53IPC/_new  2019-05-15 12:35:45.400312283 +0200
@@ -57,6 +57,8 @@
 BuildRequires:  pkgconfig(glib-2.0)
 # Don't use pkgconfig here as that would cause unresolvables on 0.1 -> 0.2 -> 
0.3 bumps
 BuildRequires:  pipewire-devel
+# Without pipewire, screencasting won't work. Not a hard dep though.
+Recommends: pipewire
 %endif
 Requires:   xdg-desktop-portal
 Recommends: %{name}-lang






commit xdg-desktop-portal-kde for openSUSE:Factory

2019-05-08 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2019-05-08 15:17:17

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.5148 (New)


Package is "xdg-desktop-portal-kde"

Wed May  8 15:17:17 2019 rev:41 rq:701404 version:5.15.5

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2019-04-28 20:00:54.810882091 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.5148/xdg-desktop-portal-kde.changes
  2019-05-08 15:17:19.589103526 +0200
@@ -1,0 +2,15 @@
+Tue May  7 11:04:59 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.15.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.15.5.php
+- Changes since 5.15.4:
+  * Destroy gbm_device only when it's initialized (kde#407025)
+  * Settings portal: do not return QDBusVariant directly when calling Read() 
method (kde#406672)
+  * Remove additional call of items initialization
+  * AppChooser dialog: async loading of items
+  * Select application with a single click
+  * AppChooserDialog: make it more usable
+
+---

Old:

  xdg-desktop-portal-kde-5.15.4.tar.xz
  xdg-desktop-portal-kde-5.15.4.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.15.5.tar.xz
  xdg-desktop-portal-kde-5.15.5.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.YuTilD/_old  2019-05-08 15:17:20.045104542 +0200
+++ /var/tmp/diff_new_pack.YuTilD/_new  2019-05-08 15:17:20.045104542 +0200
@@ -25,7 +25,7 @@
 
 %define kf5_version 5.54.0
 Name:   xdg-desktop-portal-kde
-Version:5.15.4
+Version:5.15.5
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later


++ xdg-desktop-portal-kde-5.15.4.tar.xz -> 
xdg-desktop-portal-kde-5.15.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.15.4/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.15.5/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.15.4/CMakeLists.txt2019-04-02 
14:21:10.0 +0200
+++ new/xdg-desktop-portal-kde-5.15.5/CMakeLists.txt2019-05-07 
12:23:39.0 +0200
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.15.4")
+set(PROJECT_VERSION "5.15.5")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.11.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.15.4/po/ca/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.15.5/po/ca/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.15.4/po/ca/xdg-desktop-portal-kde.po   
2019-04-02 14:20:57.0 +0200
+++ new/xdg-desktop-portal-kde-5.15.5/po/ca/xdg-desktop-portal-kde.po   
2019-05-07 12:23:25.0 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: xdg-desktop-portal-kde\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
-"POT-Creation-Date: 2019-03-18 08:01+0100\n"
+"POT-Creation-Date: 2019-04-22 08:06+0200\n"
 "PO-Revision-Date: 2018-09-18 20:14+0100\n"
 "Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
@@ -50,7 +50,7 @@
 msgid "TextLabel"
 msgstr "EtiquetaDeText"
 
-#: src/appchooserdialog.cpp:53
+#: src/appchooserdialog.cpp:54
 #, kde-format
 msgid ""
 "Select application to open \"%1\". Other applications are available in Discover."
 
-#: src/appchooserdialog.cpp:74
+#: src/appchooserdialog.cpp:70
 #, kde-format
 msgid "Open with"
 msgstr "Obre amb"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.15.4/po/ca@valencia/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.15.5/po/ca@valencia/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.15.4/po/ca@valencia/xdg-desktop-portal-kde.po  
2019-04-02 14:20:57.0 +0200
+++ new/xdg-desktop-portal-kde-5.15.5/po/ca@valencia/xdg-desktop-portal-kde.po  
2019-05-07 12:23:25.0 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: xdg-desktop-portal-kde\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
-"POT-Creation-Date: 2019-03-18 08:01+0100\n"
+"POT-Creation-Date: 2019-04-22 08:06+0200\n"
 "PO-Revision-Date: 2018-09-18 20:14+0100\n"
 "Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
@@ -50,7 +50,7 @@
 msgid "TextLabel"
 msgstr "EtiquetaDeText"
 
-#: src/appchooserdialog.cpp:53
+#: src/appchooserdialog.cpp:54
 #, kde-format
 msgid ""
 "Select application to open \"%1\". Other applications are available in 

commit xdg-desktop-portal-kde for openSUSE:Factory

2019-04-28 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2019-04-28 20:00:51

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.5536 (New)


Package is "xdg-desktop-portal-kde"

Sun Apr 28 20:00:51 2019 rev:40 rq:690764 version:5.15.4

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2019-03-13 16:42:18.866642743 +0100
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.5536/xdg-desktop-portal-kde.changes
  2019-04-28 20:00:54.810882091 +0200
@@ -1,0 +2,9 @@
+Tue Apr  2 12:41:01 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.15.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.15.4.php
+- No code changes since 5.15.3
+
+---

Old:

  xdg-desktop-portal-kde-5.15.3.tar.xz
  xdg-desktop-portal-kde-5.15.3.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.15.4.tar.xz
  xdg-desktop-portal-kde-5.15.4.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.yJcXVD/_old  2019-04-28 20:00:56.126881297 +0200
+++ /var/tmp/diff_new_pack.yJcXVD/_new  2019-04-28 20:00:56.130881295 +0200
@@ -25,7 +25,7 @@
 
 %define kf5_version 5.54.0
 Name:   xdg-desktop-portal-kde
-Version:5.15.3
+Version:5.15.4
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later


++ xdg-desktop-portal-kde-5.15.3.tar.xz -> 
xdg-desktop-portal-kde-5.15.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.15.3/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.15.4/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.15.3/CMakeLists.txt2019-03-12 
11:02:00.0 +0100
+++ new/xdg-desktop-portal-kde-5.15.4/CMakeLists.txt2019-04-02 
14:21:10.0 +0200
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.15.3")
+set(PROJECT_VERSION "5.15.4")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.11.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.15.3/po/ca/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.15.4/po/ca/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.15.3/po/ca/xdg-desktop-portal-kde.po   
2019-03-12 11:01:57.0 +0100
+++ new/xdg-desktop-portal-kde-5.15.4/po/ca/xdg-desktop-portal-kde.po   
2019-04-02 14:20:57.0 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: xdg-desktop-portal-kde\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
-"POT-Creation-Date: 2019-02-24 07:19+0100\n"
+"POT-Creation-Date: 2019-03-18 08:01+0100\n"
 "PO-Revision-Date: 2018-09-18 20:14+0100\n"
 "Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.15.3/po/ca@valencia/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.15.4/po/ca@valencia/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.15.3/po/ca@valencia/xdg-desktop-portal-kde.po  
2019-03-12 11:01:57.0 +0100
+++ new/xdg-desktop-portal-kde-5.15.4/po/ca@valencia/xdg-desktop-portal-kde.po  
2019-04-02 14:20:57.0 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: xdg-desktop-portal-kde\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
-"POT-Creation-Date: 2019-02-24 07:19+0100\n"
+"POT-Creation-Date: 2019-03-18 08:01+0100\n"
 "PO-Revision-Date: 2018-09-18 20:14+0100\n"
 "Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.15.3/po/cs/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.15.4/po/cs/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.15.3/po/cs/xdg-desktop-portal-kde.po   
2019-03-12 11:01:57.0 +0100
+++ new/xdg-desktop-portal-kde-5.15.4/po/cs/xdg-desktop-portal-kde.po   
2019-04-02 14:20:57.0 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
-"POT-Creation-Date: 2019-02-24 07:19+0100\n"
+"POT-Creation-Date: 2019-03-18 08:01+0100\n"
 "PO-Revision-Date: 2019-01-14 17:04+0100\n"
 "Last-Translator: Vit Pelcak \n"
 "Language-Team: Czech \n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.15.3/po/da/xdg-desktop-portal-kde.po 

commit xdg-desktop-portal-kde for openSUSE:Factory

2019-03-13 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2019-03-13 16:42:14

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.28833 (New)


Package is "xdg-desktop-portal-kde"

Wed Mar 13 16:42:14 2019 rev:39 rq:684627 version:5.15.3

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2019-02-27 15:10:00.418376435 +0100
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.28833/xdg-desktop-portal-kde.changes
 2019-03-13 16:42:18.866642743 +0100
@@ -1,0 +2,11 @@
+Tue Mar 12 13:15:25 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.15.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.15.3.php
+- Changes since 5.15.2:
+  * Use high dpi pixmaps (kde#405160)
+  * [File Chooser Portal] Confirm overwrite on saving (kde#404719)
+
+---

Old:

  xdg-desktop-portal-kde-5.15.2.tar.xz
  xdg-desktop-portal-kde-5.15.2.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.15.3.tar.xz
  xdg-desktop-portal-kde-5.15.3.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.pN8whD/_old  2019-03-13 16:42:19.426642330 +0100
+++ /var/tmp/diff_new_pack.pN8whD/_new  2019-03-13 16:42:19.430642326 +0100
@@ -25,7 +25,7 @@
 
 %define kf5_version 5.54.0
 Name:   xdg-desktop-portal-kde
-Version:5.15.2
+Version:5.15.3
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later


++ xdg-desktop-portal-kde-5.15.2.tar.xz -> 
xdg-desktop-portal-kde-5.15.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.15.2/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.15.3/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.15.2/CMakeLists.txt2019-02-26 
12:39:06.0 +0100
+++ new/xdg-desktop-portal-kde-5.15.3/CMakeLists.txt2019-03-12 
11:02:00.0 +0100
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.15.2")
+set(PROJECT_VERSION "5.15.3")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.11.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.15.2/po/it/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.15.3/po/it/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.15.2/po/it/xdg-desktop-portal-kde.po   
2019-02-26 12:39:05.0 +0100
+++ new/xdg-desktop-portal-kde-5.15.3/po/it/xdg-desktop-portal-kde.po   
2019-03-12 11:01:58.0 +0100
@@ -1,6 +1,6 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the 
xdg-desktop-portal-kde package.
-# Luigi Toscano , 2017, 2018.
+# Luigi Toscano , 2017, 2018, 2019.
 #
 msgid ""
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.15.2/src/filechooser.cpp 
new/xdg-desktop-portal-kde-5.15.3/src/filechooser.cpp
--- old/xdg-desktop-portal-kde-5.15.2/src/filechooser.cpp   2019-02-26 
12:39:02.0 +0100
+++ new/xdg-desktop-portal-kde-5.15.3/src/filechooser.cpp   2019-03-12 
11:01:55.0 +0100
@@ -277,6 +277,7 @@
 fileDialog->setWindowTitle(title);
 fileDialog->setModal(modalDialog);
 fileDialog->m_fileWidget->setOperationMode(KFileWidget::Saving);
+fileDialog->m_fileWidget->setConfirmOverwrite(true);
 
 if (!currentFolder.isEmpty()) {
 fileDialog->m_fileWidget->setUrl(QUrl::fromLocalFile(currentFolder));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.15.2/src/xdg-desktop-portal-kde.cpp 
new/xdg-desktop-portal-kde-5.15.3/src/xdg-desktop-portal-kde.cpp
--- old/xdg-desktop-portal-kde-5.15.2/src/xdg-desktop-portal-kde.cpp
2019-02-26 12:39:02.0 +0100
+++ new/xdg-desktop-portal-kde-5.15.3/src/xdg-desktop-portal-kde.cpp
2019-03-12 11:01:55.0 +0100
@@ -28,6 +28,7 @@
 
 int main(int argc, char *argv[])
 {
+QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
 QApplication a(argc, argv);
 a.setQuitOnLastWindowClosed(false);
 




commit xdg-desktop-portal-kde for openSUSE:Factory

2019-02-27 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2019-02-27 15:09:58

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.28833 (New)


Package is "xdg-desktop-portal-kde"

Wed Feb 27 15:09:58 2019 rev:38 rq:679654 version:5.15.2

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2019-02-24 17:15:55.248444990 +0100
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.28833/xdg-desktop-portal-kde.changes
 2019-02-27 15:10:00.418376435 +0100
@@ -1,0 +2,11 @@
+Tue Feb 26 14:06:14 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.15.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.15.2.php
+- Changes since 5.15.1:
+  * Fix selection of multiple files (kde#404739)
+  * Properly convert filename to string from bytearray (kde#404445)
+
+---

Old:

  xdg-desktop-portal-kde-5.15.1.tar.xz
  xdg-desktop-portal-kde-5.15.1.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.15.2.tar.xz
  xdg-desktop-portal-kde-5.15.2.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.2gkxhn/_old  2019-02-27 15:10:00.914376275 +0100
+++ /var/tmp/diff_new_pack.2gkxhn/_new  2019-02-27 15:10:00.914376275 +0100
@@ -25,7 +25,7 @@
 
 %define kf5_version 5.54.0
 Name:   xdg-desktop-portal-kde
-Version:5.15.1
+Version:5.15.2
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later


++ xdg-desktop-portal-kde-5.15.1.tar.xz -> 
xdg-desktop-portal-kde-5.15.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.15.1/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.15.2/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.15.1/CMakeLists.txt2019-02-19 
12:10:01.0 +0100
+++ new/xdg-desktop-portal-kde-5.15.2/CMakeLists.txt2019-02-26 
12:39:06.0 +0100
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.15.1")
+set(PROJECT_VERSION "5.15.2")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.11.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.15.1/po/ca/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.15.2/po/ca/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.15.1/po/ca/xdg-desktop-portal-kde.po   
2019-02-19 12:09:48.0 +0100
+++ new/xdg-desktop-portal-kde-5.15.2/po/ca/xdg-desktop-portal-kde.po   
2019-02-26 12:39:04.0 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: xdg-desktop-portal-kde\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
-"POT-Creation-Date: 2019-01-18 07:38+0100\n"
+"POT-Creation-Date: 2019-02-24 07:19+0100\n"
 "PO-Revision-Date: 2018-09-18 20:14+0100\n"
 "Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
@@ -66,7 +66,7 @@
 msgid "Open with"
 msgstr "Obre amb"
 
-#: src/filechooser.cpp:188
+#: src/filechooser.cpp:189
 #, kde-format
 msgid "Open"
 msgstr "Obre"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.15.1/po/ca@valencia/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.15.2/po/ca@valencia/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.15.1/po/ca@valencia/xdg-desktop-portal-kde.po  
2019-02-19 12:09:48.0 +0100
+++ new/xdg-desktop-portal-kde-5.15.2/po/ca@valencia/xdg-desktop-portal-kde.po  
2019-02-26 12:39:04.0 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: xdg-desktop-portal-kde\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
-"POT-Creation-Date: 2019-01-18 07:38+0100\n"
+"POT-Creation-Date: 2019-02-24 07:19+0100\n"
 "PO-Revision-Date: 2018-09-18 20:14+0100\n"
 "Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
@@ -66,7 +66,7 @@
 msgid "Open with"
 msgstr "Obri amb"
 
-#: src/filechooser.cpp:188
+#: src/filechooser.cpp:189
 #, kde-format
 msgid "Open"
 msgstr "Obri"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.15.1/po/cs/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.15.2/po/cs/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.15.1/po/cs/xdg-desktop-portal-kde.po   
2019-02-19 12:09:48.0 +0100
+++ new/xdg-desktop-portal-kde-5.15.2/po/cs/xdg-desktop-portal-kde.po   
2019-02-26 12:39:04.0 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 

commit xdg-desktop-portal-kde for openSUSE:Factory

2019-02-24 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2019-02-24 17:15:31

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.28833 (New)


Package is "xdg-desktop-portal-kde"

Sun Feb 24 17:15:31 2019 rev:37 rq:677516 version:5.15.1

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2019-02-11 21:22:52.631161439 +0100
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.28833/xdg-desktop-portal-kde.changes
 2019-02-24 17:15:55.248444990 +0100
@@ -1,0 +2,9 @@
+Tue Feb 19 12:27:06 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.15.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.15.1.php
+- No code changes since 5.15.0
+
+---

Old:

  xdg-desktop-portal-kde-5.15.0.tar.xz
  xdg-desktop-portal-kde-5.15.0.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.15.1.tar.xz
  xdg-desktop-portal-kde-5.15.1.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.GCQTVk/_old  2019-02-24 17:15:55.64919 +0100
+++ /var/tmp/diff_new_pack.GCQTVk/_new  2019-02-24 17:15:55.648444919 +0100
@@ -25,15 +25,15 @@
 
 %define kf5_version 5.54.0
 Name:   xdg-desktop-portal-kde
-Version:5.15.0
+Version:5.15.1
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later
 Group:  System/Libraries
 Url:http://www.kde.org
-Source: xdg-desktop-portal-kde-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
 %if %{with lang}
-Source1:xdg-desktop-portal-kde-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 BuildRequires:  extra-cmake-modules >= %{kf5_version}


++ xdg-desktop-portal-kde-5.15.0.tar.xz -> 
xdg-desktop-portal-kde-5.15.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.15.0/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.15.1/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.15.0/CMakeLists.txt2019-02-07 
12:17:31.0 +0100
+++ new/xdg-desktop-portal-kde-5.15.1/CMakeLists.txt2019-02-19 
12:10:01.0 +0100
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.15.0")
+set(PROJECT_VERSION "5.15.1")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.11.0")




commit xdg-desktop-portal-kde for openSUSE:Factory

2019-02-11 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2019-02-11 21:22:50

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.28833 (New)


Package is "xdg-desktop-portal-kde"

Mon Feb 11 21:22:50 2019 rev:36 rq:672611 version:5.15.0

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2019-01-21 10:48:48.168132909 +0100
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.28833/xdg-desktop-portal-kde.changes
 2019-02-11 21:22:52.631161439 +0100
@@ -1,0 +2,18 @@
+Thu Feb  7 16:02:55 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.15.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.15.0.php
+- No code changes since 5.14.90
+
+---
+Thu Jan 17 18:49:51 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.14.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.14.90.php
+- Too many changes to list here
+
+---

Old:

  xdg-desktop-portal-kde-5.14.5.tar.xz
  xdg-desktop-portal-kde-5.14.5.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.15.0.tar.xz
  xdg-desktop-portal-kde-5.15.0.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.K3f04B/_old  2019-02-11 21:22:53.087161194 +0100
+++ /var/tmp/diff_new_pack.K3f04B/_new  2019-02-11 21:22:53.091161191 +0100
@@ -23,21 +23,22 @@
 %bcond_with screencast
 %endif
 
-%define kf5_version 5.50.0
+%define kf5_version 5.54.0
 Name:   xdg-desktop-portal-kde
-Version:5.14.5
+Version:5.15.0
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later
 Group:  System/Libraries
 Url:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
+Source: xdg-desktop-portal-kde-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz.sig
+Source1:xdg-desktop-portal-kde-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 BuildRequires:  extra-cmake-modules >= %{kf5_version}
 BuildRequires:  libQt5PrintSupport-private-headers-devel
+BuildRequires:  cmake(KF5Config) >= %{kf5_version}
 BuildRequires:  cmake(KF5CoreAddons) >= %{kf5_version}
 BuildRequires:  cmake(KF5I18n) >= %{kf5_version}
 BuildRequires:  cmake(KF5KIO) >= %{kf5_version}
@@ -46,7 +47,7 @@
 BuildRequires:  cmake(KF5WidgetsAddons) >= %{kf5_version}
 BuildRequires:  cmake(KF5WindowSystem) >= %{kf5_version}
 BuildRequires:  cmake(Qt5Concurrent)
-BuildRequires:  cmake(Qt5Core) >= 5.4.0
+BuildRequires:  cmake(Qt5Core) >= 5.11.0
 BuildRequires:  cmake(Qt5DBus)
 BuildRequires:  cmake(Qt5PrintSupport)
 BuildRequires:  cmake(Qt5Widgets)


++ xdg-desktop-portal-kde-5.14.5.tar.xz -> 
xdg-desktop-portal-kde-5.15.0.tar.xz ++
 9893 lines of diff (skipped)




commit xdg-desktop-portal-kde for openSUSE:Factory

2019-01-21 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2019-01-21 10:48:12

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.28833 (New)


Package is "xdg-desktop-portal-kde"

Mon Jan 21 10:48:12 2019 rev:35 rq:664009 version:5.14.5

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2018-11-29 23:00:04.899529990 +0100
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.28833/xdg-desktop-portal-kde.changes
 2019-01-21 10:48:48.168132909 +0100
@@ -1,0 +2,12 @@
+Tue Jan  8 13:37:45 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.14.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.14.5.php
+- Changes since 5.14.4:
+  * Set parent window for dialogs
+  * Add workaround for gtk file chooser filter patterns (kde#399889)
+  * FileChooser: make use of current_name property in Save dialog (kde#402077)
+
+---

Old:

  xdg-desktop-portal-kde-5.14.4.tar.xz
  xdg-desktop-portal-kde-5.14.4.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.14.5.tar.xz
  xdg-desktop-portal-kde-5.14.5.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.jxTCxv/_old  2019-01-21 10:48:49.608131150 +0100
+++ /var/tmp/diff_new_pack.jxTCxv/_new  2019-01-21 10:48:49.608131150 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xdg-desktop-portal-kde
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,7 +25,7 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.14.4
+Version:5.14.5
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later
@@ -40,9 +40,11 @@
 BuildRequires:  libQt5PrintSupport-private-headers-devel
 BuildRequires:  cmake(KF5CoreAddons) >= %{kf5_version}
 BuildRequires:  cmake(KF5I18n) >= %{kf5_version}
+BuildRequires:  cmake(KF5KIO) >= %{kf5_version}
 BuildRequires:  cmake(KF5Notifications) >= %{kf5_version}
 BuildRequires:  cmake(KF5Wayland) >= %{kf5_version}
 BuildRequires:  cmake(KF5WidgetsAddons) >= %{kf5_version}
+BuildRequires:  cmake(KF5WindowSystem) >= %{kf5_version}
 BuildRequires:  cmake(Qt5Concurrent)
 BuildRequires:  cmake(Qt5Core) >= 5.4.0
 BuildRequires:  cmake(Qt5DBus)


++ xdg-desktop-portal-kde-5.14.4.tar.xz -> 
xdg-desktop-portal-kde-5.14.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.14.4/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.14.5/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.14.4/CMakeLists.txt2018-11-27 
17:16:08.0 +0100
+++ new/xdg-desktop-portal-kde-5.14.5/CMakeLists.txt2019-01-08 
12:06:44.0 +0100
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.14.4")
+set(PROJECT_VERSION "5.14.5")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.11.0")
@@ -67,6 +67,7 @@
 Notifications
 Wayland
 WidgetsAddons
+WindowSystem
 )
 
 add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.14.4/po/ast/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.14.5/po/ast/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.14.4/po/ast/xdg-desktop-portal-kde.po  
2018-11-27 17:16:06.0 +0100
+++ new/xdg-desktop-portal-kde-5.14.5/po/ast/xdg-desktop-portal-kde.po  
2019-01-08 12:06:41.0 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
-"POT-Creation-Date: 2018-09-14 06:49+0200\n"
+"POT-Creation-Date: 2018-12-26 07:18+0100\n"
 "PO-Revision-Date: 2017-06-30 06:03+0100\n"
 "Last-Translator: enolp \n"
 "Language-Team: Asturian \n"
@@ -58,7 +58,7 @@
 msgid "Open with"
 msgstr ""
 
-#: src/filechooser.cpp:159
+#: src/filechooser.cpp:197
 #, kde-format
 msgid "Open"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.14.4/po/ca/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.14.5/po/ca/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.14.4/po/ca/xdg-desktop-portal-kde.po   
2018-11-27 17:16:06.0 +0100
+++ 

commit xdg-desktop-portal-kde for openSUSE:Factory

2018-11-29 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2018-11-29 23:00:03

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.19453 (New)


Package is "xdg-desktop-portal-kde"

Thu Nov 29 23:00:03 2018 rev:34 rq:652349 version:5.14.4

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2018-11-08 09:50:19.556969875 +0100
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new.19453/xdg-desktop-portal-kde.changes
 2018-11-29 23:00:04.899529990 +0100
@@ -1,0 +2,9 @@
+Wed Nov 28 07:52:49 UTC 2018 - fab...@ritter-vogt.de
+
+- Update to 5.14.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.14.4.php
+- No code changes since 5.14.3
+
+---

Old:

  xdg-desktop-portal-kde-5.14.3.tar.xz
  xdg-desktop-portal-kde-5.14.3.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.14.4.tar.xz
  xdg-desktop-portal-kde-5.14.4.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.oynHSb/_old  2018-11-29 23:00:05.775528911 +0100
+++ /var/tmp/diff_new_pack.oynHSb/_new  2018-11-29 23:00:05.779528905 +0100
@@ -25,7 +25,7 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.14.3
+Version:5.14.4
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later


++ xdg-desktop-portal-kde-5.14.3.tar.xz -> 
xdg-desktop-portal-kde-5.14.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.14.3/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.14.4/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.14.3/CMakeLists.txt2018-11-06 
15:10:15.0 +0100
+++ new/xdg-desktop-portal-kde-5.14.4/CMakeLists.txt2018-11-27 
17:16:08.0 +0100
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.14.3")
+set(PROJECT_VERSION "5.14.4")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.11.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.14.3/po/zh_CN/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.14.4/po/zh_CN/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.14.3/po/zh_CN/xdg-desktop-portal-kde.po
2018-11-06 15:10:15.0 +0100
+++ new/xdg-desktop-portal-kde-5.14.4/po/zh_CN/xdg-desktop-portal-kde.po
2018-11-27 17:16:08.0 +0100
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2018-09-14 06:49+0200\n"
-"PO-Revision-Date: 2018-11-01 23:15\n"
+"PO-Revision-Date: 2018-11-12 09:21\n"
 "Last-Translator: guoyunhe \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit xdg-desktop-portal-kde for openSUSE:Factory

2018-11-08 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2018-11-08 09:50:13

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Thu Nov  8 09:50:13 2018 rev:33 rq:646882 version:5.14.3

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2018-10-25 09:10:51.902342840 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2018-11-08 09:50:19.556969875 +0100
@@ -1,0 +2,10 @@
+Tue Nov  6 15:54:02 UTC 2018 - fab...@ritter-vogt.de
+
+- Add David Edmundson's key to plasma.keyring
+- Update to 5.14.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.14.3.php
+- No code changes since 5.14.2
+
+---

Old:

  xdg-desktop-portal-kde-5.14.2.tar.xz
  xdg-desktop-portal-kde-5.14.2.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.14.3.tar.xz
  xdg-desktop-portal-kde-5.14.3.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.sUpajS/_old  2018-11-08 09:50:20.556968693 +0100
+++ /var/tmp/diff_new_pack.sUpajS/_new  2018-11-08 09:50:20.560968688 +0100
@@ -25,7 +25,7 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.14.2
+Version:5.14.3
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later

++ plasma.keyring ++
Binary files /var/tmp/diff_new_pack.sUpajS/_old and 
/var/tmp/diff_new_pack.sUpajS/_new differ

++ xdg-desktop-portal-kde-5.14.2.tar.xz -> 
xdg-desktop-portal-kde-5.14.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.14.2/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.14.3/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.14.2/CMakeLists.txt2018-10-23 
14:26:22.0 +0200
+++ new/xdg-desktop-portal-kde-5.14.3/CMakeLists.txt2018-11-06 
15:10:15.0 +0100
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.14.2")
+set(PROJECT_VERSION "5.14.3")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.11.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.14.2/po/hu/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.14.3/po/hu/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.14.2/po/hu/xdg-desktop-portal-kde.po   
2018-10-23 14:25:38.0 +0200
+++ new/xdg-desktop-portal-kde-5.14.3/po/hu/xdg-desktop-portal-kde.po   
2018-11-06 15:10:02.0 +0100
@@ -1,14 +1,14 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Kiszel Kristóf , 2017.
+# Kiszel Kristóf , 2017, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2018-09-14 06:49+0200\n"
-"PO-Revision-Date: 2017-12-06 16:00-0500\n"
-"Last-Translator: Kiszel Kristóf \n"
+"PO-Revision-Date: 2018-10-19 18:25+0200\n"
+"Last-Translator: Kristof Kiszel \n"
 "Language-Team: Hungarian \n"
 "Language: hu_HU\n"
 "MIME-Version: 1.0\n"
@@ -52,12 +52,14 @@
 "href=#discover>Discover."
 msgstr ""
+"Válasszon alkalmazást a(z) „%1” megnyitásához. Más alkalmazások elérhetőek a "
+"Discoverben."
 
 #: src/appchooserdialog.cpp:105
-#, fuzzy, kde-format
-#| msgid "Open"
+#, kde-format
 msgid "Open with"
-msgstr "Megnyitás"
+msgstr "Megnyitás mással"
 
 #: src/filechooser.cpp:159
 #, kde-format
@@ -70,6 +72,8 @@
 "Laptop screen\n"
 "Model: %1"
 msgstr ""
+"Laptop képernyő:\n"
+"Modell: %1"
 
 #: src/screenchooserdialog.cpp:48 src/screenchooserdialog.cpp:51
 #, kde-format
@@ -77,11 +81,13 @@
 "Manufacturer: %1\n"
 "Model: %2"
 msgstr ""
+"Gyártó: %1\n"
+"Modell: %2"
 
 #: src/screenchooserdialog.cpp:65
 #, kde-format
 msgid "Share"
-msgstr ""
+msgstr "Megosztás"
 
 #: src/screenchooserdialog.cpp:66
 #, kde-format
@@ -89,73 +95,72 @@
 msgstr ""
 
 #: src/screenshotdialog.cpp:95
-#, fuzzy, kde-format
-#| msgid "Request device access"
+#, kde-format
 msgid "Request screenshot"
-msgstr "Eszközhozzáférés kérése"
+msgstr "Képernyőkép kérése"
 
 #. i18n: ectx: property (text), widget (QLabel, label)
 #: src/screenshotdialog.ui:26
 #, kde-format
 msgid "Capture Mode"
-msgstr ""
+msgstr "Rögzítési mód"
 
 #. i18n: ectx: property (text), widget (QLabel, label_3)
 #: src/screenshotdialog.ui:41
 #, kde-format
 msgid "Area:"
-msgstr ""
+msgstr 

commit xdg-desktop-portal-kde for openSUSE:Factory

2018-10-25 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2018-10-25 09:10:38

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Thu Oct 25 09:10:38 2018 rev:32 rq:644069 version:5.14.2

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2018-10-18 08:16:13.771300952 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2018-10-25 09:10:51.902342840 +0200
@@ -1,0 +2,9 @@
+Tue Oct 23 13:56:46 UTC 2018 - fab...@ritter-vogt.de
+
+- Update to 5.14.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.14.2.php
+- No code changes since 5.14.1
+
+---

Old:

  xdg-desktop-portal-kde-5.14.1.tar.xz
  xdg-desktop-portal-kde-5.14.1.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.14.2.tar.xz
  xdg-desktop-portal-kde-5.14.2.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.i5cwY8/_old  2018-10-25 09:10:52.530342464 +0200
+++ /var/tmp/diff_new_pack.i5cwY8/_new  2018-10-25 09:10:52.534342462 +0200
@@ -25,15 +25,15 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.14.1
+Version:5.14.2
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later
 Group:  System/Libraries
 Url:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/5.14.1/xdg-desktop-portal-kde-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/5.14.1/xdg-desktop-portal-kde-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 BuildRequires:  extra-cmake-modules >= %{kf5_version}


++ xdg-desktop-portal-kde-5.14.1.tar.xz -> 
xdg-desktop-portal-kde-5.14.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.14.1/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.14.2/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.14.1/CMakeLists.txt2018-10-16 
14:38:32.0 +0200
+++ new/xdg-desktop-portal-kde-5.14.2/CMakeLists.txt2018-10-23 
14:26:22.0 +0200
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.14.1")
+set(PROJECT_VERSION "5.14.2")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.11.0")




commit xdg-desktop-portal-kde for openSUSE:Factory

2018-10-18 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2018-10-18 08:16:08

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Thu Oct 18 08:16:08 2018 rev:31 rq:642662 version:5.14.1

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2018-10-17 08:44:09.757715434 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2018-10-18 08:16:13.771300952 +0200
@@ -1,0 +2,5 @@
+Wed Oct 17 14:34:50 UTC 2018 - Fabian Vogt 
+
+- Use pipewire-devel and not pkgconfig to avoid unresolvable on version bumps
+
+---



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.2zOnew/_old  2018-10-18 08:16:15.287299860 +0200
+++ /var/tmp/diff_new_pack.2zOnew/_new  2018-10-18 08:16:15.291299857 +0200
@@ -52,7 +52,8 @@
 BuildRequires:  pkgconfig(epoxy)
 BuildRequires:  pkgconfig(gbm)
 BuildRequires:  pkgconfig(glib-2.0)
-BuildRequires:  pkgconfig(libpipewire-0.1)
+# Don't use pkgconfig here as that would cause unresolvables on 0.1 -> 0.2 -> 
0.3 bumps
+BuildRequires:  pipewire-devel
 %endif
 Requires:   xdg-desktop-portal
 Recommends: %{name}-lang






commit xdg-desktop-portal-kde for openSUSE:Factory

2018-10-17 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2018-10-17 08:43:12

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Wed Oct 17 08:43:12 2018 rev:30 rq:642481 version:5.14.1

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2018-10-08 17:50:02.562130714 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2018-10-17 08:44:09.757715434 +0200
@@ -1,0 +2,13 @@
+Tue Oct 16 14:05:17 UTC 2018 - fab...@ritter-vogt.de
+
+- Update to 5.14.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.14.1.php
+- Changes since 5.14.0:
+  * Improve debug and don't leak gbm handle
+  * Make sure we don't process more frames then configured framerate
+  * ScreenCast: properly return failure when user cancel the dialog
+  * Make initialization of drm and egl non-fatal
+
+---

Old:

  xdg-desktop-portal-kde-5.14.0.tar.xz
  xdg-desktop-portal-kde-5.14.0.tar.xz.sig

New:

  xdg-desktop-portal-kde-5.14.1.tar.xz
  xdg-desktop-portal-kde-5.14.1.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.kMrmzR/_old  2018-10-17 08:44:10.153715099 +0200
+++ /var/tmp/diff_new_pack.kMrmzR/_new  2018-10-17 08:44:10.157715096 +0200
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -25,15 +25,15 @@
 
 %define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.14.0
+Version:5.14.1
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later
 Group:  System/Libraries
 Url:http://www.kde.org
-Source: xdg-desktop-portal-kde-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/5.14.1/xdg-desktop-portal-kde-%{version}.tar.xz
 %if %{with lang}
-Source1:xdg-desktop-portal-kde-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/5.14.1/xdg-desktop-portal-kde-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 BuildRequires:  extra-cmake-modules >= %{kf5_version}


++ xdg-desktop-portal-kde-5.14.0.tar.xz -> 
xdg-desktop-portal-kde-5.14.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.14.0/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.14.1/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.14.0/CMakeLists.txt2018-10-05 
20:25:18.0 +0200
+++ new/xdg-desktop-portal-kde-5.14.1/CMakeLists.txt2018-10-16 
14:38:32.0 +0200
@@ -2,7 +2,7 @@
 
 project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.14.0")
+set(PROJECT_VERSION "5.14.1")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.11.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.14.0/po/de/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.14.1/po/de/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.14.0/po/de/xdg-desktop-portal-kde.po   
2018-10-05 20:24:40.0 +0200
+++ new/xdg-desktop-portal-kde-5.14.1/po/de/xdg-desktop-portal-kde.po   
2018-10-16 14:38:29.0 +0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2018-09-14 06:49+0200\n"
-"PO-Revision-Date: 2018-08-27 17:02+0100\n"
+"PO-Revision-Date: 2018-10-09 07:00+0100\n"
 "Last-Translator: Burkhard Lück \n"
 "Language-Team: German \n"
 "Language: de\n"
@@ -87,12 +87,12 @@
 #: src/screenchooserdialog.cpp:65
 #, kde-format
 msgid "Share"
-msgstr ""
+msgstr "Freigeben"
 
 #: src/screenchooserdialog.cpp:66
 #, kde-format
 msgid "Select screen to share"
-msgstr ""
+msgstr "Bildschirm zur Freigabe auswählen"
 
 #: src/screenshotdialog.cpp:95
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.14.0/po/zh_CN/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.14.1/po/zh_CN/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.14.0/po/zh_CN/xdg-desktop-portal-kde.po
2018-10-05 20:25:18.0 +0200
+++ new/xdg-desktop-portal-kde-5.14.1/po/zh_CN/xdg-desktop-portal-kde.po

commit xdg-desktop-portal-kde for openSUSE:Factory

2018-10-08 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2018-10-08 17:46:47

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Mon Oct  8 17:46:47 2018 rev:29 rq:640325 version:5.14.0

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2018-09-05 13:49:34.358360027 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2018-10-08 17:50:02.562130714 +0200
@@ -1,0 +2,46 @@
+Fri Oct  5 10:01:14 UTC 2018 - fab...@ritter-vogt.de
+
+- Update to 5.14.0
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.14.0.php
+- Changes since 5.13.90:
+  * Use correct stream size
+  * Fix build condition for screencast portal
+  * We don't need to link against libspa
+
+---
+Sat Sep 15 16:25:31 UTC 2018 - fab...@ritter-vogt.de
+
+- Add tarball signature and keyring containing keys of release managers
+  Jonathan Riddell and Bhushan Shah
+
+---
+Thu Sep 13 17:25:05 UTC 2018 - fab...@ritter-vogt.de
+
+- Update to 5.13.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.13.90.php
+- Changes since 5.13.5:
+  * Fix build condition for screencast portal
+  * QT_MIN_VERSIONS is Qt 5.11 for Plasma 5.14. Agreed at kickoff meeting.  
Set everywhere for clearity and consistency.
+  * We don't need to link against libspa
+  * Add support for PickColor method from Screenshot portal
+  * Merge branch 'Plasma/5.13'
+  * Use prefix ++operator for loop index increment
+  * Pass substiture args to i18n strings inside the i18n call
+  * Include own header first
+  * Use explicit
+  * NULL -> nullptr (this is C++, not C in the end)
+  * Use {} initializer instead of 0 for QFlags-based args
+  * Remove Qt module includes
+  * Properly find and link against Qt5::Concurrent
+  * Remove unneeded cmake macro includes
+  * Use KF5_MIN_VERSION also for ECM, now that it's part of KF
+  * Require KDE Frameworks 5.42 and Qt 5.9
+  * Bump min cmake version to 3.0, move cmake_minimum_required to begin
+  * Remove usage of dead QT_USE_FAST_CONCATENATION
+  * Use override, remove not necessary virtual keyword
+
+---

Old:

  xdg-desktop-portal-kde-5.13.5.tar.xz

New:

  plasma.keyring
  xdg-desktop-portal-kde-5.14.0.tar.xz
  xdg-desktop-portal-kde-5.14.0.tar.xz.sig



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.7jdjqB/_old  2018-10-08 17:50:03.074130061 +0200
+++ /var/tmp/diff_new_pack.7jdjqB/_new  2018-10-08 17:50:03.078130056 +0200
@@ -23,15 +23,19 @@
 %bcond_with screencast
 %endif
 
-%define kf5_version 5.45.0
+%define kf5_version 5.50.0
 Name:   xdg-desktop-portal-kde
-Version:5.13.5
+Version:5.14.0
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later
 Group:  System/Libraries
 Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
+Source: xdg-desktop-portal-kde-%{version}.tar.xz
+%if %{with lang}
+Source1:xdg-desktop-portal-kde-%{version}.tar.xz.sig
+Source2:plasma.keyring
+%endif
 BuildRequires:  extra-cmake-modules >= %{kf5_version}
 BuildRequires:  libQt5PrintSupport-private-headers-devel
 BuildRequires:  cmake(KF5CoreAddons) >= %{kf5_version}

++ xdg-desktop-portal-kde-5.13.5.tar.xz -> 
xdg-desktop-portal-kde-5.14.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.13.5/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.14.0/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.13.5/CMakeLists.txt2018-09-04 
12:27:04.0 +0200
+++ new/xdg-desktop-portal-kde-5.14.0/CMakeLists.txt2018-10-05 
20:25:18.0 +0200
@@ -1,22 +1,22 @@
-project(xdg-desktop-portal-kde)
+cmake_minimum_required(VERSION 3.0)
 
-cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
-set(QT_MIN_VERSION "5.4.0")
+project(xdg-desktop-portal-kde)
 
-set(PROJECT_VERSION "5.13.5")
+set(PROJECT_VERSION "5.14.0")
 set(PROJECT_VERSION_MAJOR 5)
 
+set(QT_MIN_VERSION "5.11.0")
+set(KF5_MIN_VERSION "5.50.0")
+
 # set KDE specific information #
 
-find_package(ECM 5.41.0 REQUIRED NO_MODULE)

commit xdg-desktop-portal-kde for openSUSE:Factory

2018-09-05 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2018-09-05 13:49:33

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Wed Sep  5 13:49:33 2018 rev:28 rq:633188 version:5.13.5

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2018-08-03 12:36:34.715505172 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2018-09-05 13:49:34.358360027 +0200
@@ -1,0 +2,13 @@
+Tue Sep  4 10:58:43 UTC 2018 - fab...@ritter-vogt.de
+
+- Update to 5.13.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.13.5.php
+- Changes since 5.13.4:
+  * Fix build condition for screencast portal
+  * We don't need to link against libspa
+  * Search also for libpipewire-0.2
+- Remove spa BuildReq
+
+---

Old:

  xdg-desktop-portal-kde-5.13.4.tar.xz

New:

  xdg-desktop-portal-kde-5.13.5.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.JTt8ex/_old  2018-09-05 13:49:34.818360799 +0200
+++ /var/tmp/diff_new_pack.JTt8ex/_new  2018-09-05 13:49:34.818360799 +0200
@@ -25,7 +25,7 @@
 
 %define kf5_version 5.45.0
 Name:   xdg-desktop-portal-kde
-Version:5.13.4
+Version:5.13.5
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later
@@ -49,7 +49,6 @@
 BuildRequires:  pkgconfig(gbm)
 BuildRequires:  pkgconfig(glib-2.0)
 BuildRequires:  pkgconfig(libpipewire-0.1)
-BuildRequires:  pkgconfig(libspa-0.1)
 %endif
 Requires:   xdg-desktop-portal
 Recommends: %{name}-lang

++ xdg-desktop-portal-kde-5.13.4.tar.xz -> 
xdg-desktop-portal-kde-5.13.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.13.4/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.13.5/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.13.4/CMakeLists.txt2018-07-31 
15:04:53.0 +0200
+++ new/xdg-desktop-portal-kde-5.13.5/CMakeLists.txt2018-09-04 
12:27:04.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.13.4")
+set(PROJECT_VERSION "5.13.5")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
@@ -25,12 +25,6 @@
 PURPOSE "Required for screencast portal"
 )
 
-find_package(SPA)
-set_package_properties(SPA PROPERTIES
-TYPE OPTIONAL
-PURPOSE "Required for screencast portal"
-)
-
 find_package(PipeWire)
 set_package_properties(PipeWire PROPERTIES
 TYPE OPTIONAL
@@ -50,7 +44,7 @@
 PURPOSE "Required for screencast portal"
 )
 
-if (PipeWire_FOUND AND SPA_FOUND AND GLIB2_FOUND AND GBM_FOUND AND Epoxy_FOUND)
+if (PipeWire_FOUND AND GLIB2_FOUND AND GBM_FOUND AND Epoxy_FOUND)
 set (SCREENCAST_ENABLED true)
 else()
 set (SCREENCAST_ENABLED false)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.13.4/cmake/modules/FindPipeWire.cmake 
new/xdg-desktop-portal-kde-5.13.5/cmake/modules/FindPipeWire.cmake
--- old/xdg-desktop-portal-kde-5.13.4/cmake/modules/FindPipeWire.cmake  
2018-07-31 15:04:22.0 +0200
+++ new/xdg-desktop-portal-kde-5.13.5/cmake/modules/FindPipeWire.cmake  
2018-09-04 12:26:42.0 +0200
@@ -61,7 +61,7 @@
 # Use pkg-config to get the directories and then use these values
 # in the FIND_PATH() and FIND_LIBRARY() calls
 find_package(PkgConfig QUIET)
-pkg_check_modules(PKG_PipeWire QUIET libpipewire-0.1)
+pkg_check_modules(PKG_PipeWire QUIET libpipewire-0.1 libpipewire-0.2)
 
 set(PipeWire_DEFINITIONS "${PKG_PipeWire_CFLAGS_OTHER}")
 set(PipeWire_VERSION "${PKG_PipeWire_VERSION}")
@@ -75,7 +75,7 @@
 
 find_library(PipeWire_LIBRARIES
 NAMES
-pipewire-0.1
+pipewire-0.1 pipewire-0.2
 HINTS
 ${PKG_PipeWire_LIBRARIES_DIRS}
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.13.4/cmake/modules/FindSPA.cmake 
new/xdg-desktop-portal-kde-5.13.5/cmake/modules/FindSPA.cmake
--- old/xdg-desktop-portal-kde-5.13.4/cmake/modules/FindSPA.cmake   
2018-07-31 15:04:22.0 +0200
+++ new/xdg-desktop-portal-kde-5.13.5/cmake/modules/FindSPA.cmake   
1970-01-01 01:00:00.0 +0100
@@ -1,109 +0,0 @@
-#.rst:
-# FindSPA
-# ---
-#
-# Try to find the Simple Plugin API (SPA) 

commit xdg-desktop-portal-kde for openSUSE:Factory

2018-08-03 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2018-08-03 12:36:06

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Fri Aug  3 12:36:06 2018 rev:27 rq:626857 version:5.13.4

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2018-07-12 09:22:42.242715575 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2018-08-03 12:36:34.715505172 +0200
@@ -1,0 +2,11 @@
+Tue Jul 31 15:18:34 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.13.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.13.4.php
+- Changes since 5.13.3:
+  * Minor changes to macros
+  * Support PipeWire 0.2.0
+
+---

Old:

  xdg-desktop-portal-kde-5.13.3.tar.xz

New:

  xdg-desktop-portal-kde-5.13.4.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.BGAPsd/_old  2018-08-03 12:36:35.071505701 +0200
+++ /var/tmp/diff_new_pack.BGAPsd/_new  2018-08-03 12:36:35.071505701 +0200
@@ -25,7 +25,7 @@
 
 %define kf5_version 5.45.0
 Name:   xdg-desktop-portal-kde
-Version:5.13.3
+Version:5.13.4
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later

++ xdg-desktop-portal-kde-5.13.3.tar.xz -> 
xdg-desktop-portal-kde-5.13.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.13.3/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.13.4/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.13.3/CMakeLists.txt2018-07-10 
12:18:44.0 +0200
+++ new/xdg-desktop-portal-kde-5.13.4/CMakeLists.txt2018-07-31 
15:04:53.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.13.3")
+set(PROJECT_VERSION "5.13.4")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.13.3/po/da/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.13.4/po/da/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.13.3/po/da/xdg-desktop-portal-kde.po   
2018-07-10 12:18:40.0 +0200
+++ new/xdg-desktop-portal-kde-5.13.4/po/da/xdg-desktop-portal-kde.po   
2018-07-31 15:04:36.0 +0200
@@ -1,13 +1,13 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Martin Schlander , 2017.
+# Martin Schlander , 2017, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2018-05-05 03:41+0200\n"
-"PO-Revision-Date: 2017-11-27 19:39+0100\n"
+"PO-Revision-Date: 2018-07-18 20:30+0100\n"
 "Last-Translator: Martin Schlander \n"
 "Language-Team: Danish \n"
 "Language: da\n"
@@ -52,12 +52,14 @@
 "href=#discover>Discover."
 msgstr ""
+"Vælg programmet der skal åbne \"%1\". Andre programmer er tilgængelige i Discover."
 
 #: src/appchooserdialog.cpp:105
-#, fuzzy, kde-format
-#| msgid "Open"
+#, kde-format
 msgid "Open with"
-msgstr "Åbn"
+msgstr "Åbn med"
 
 #: src/filechooser.cpp:159
 #, kde-format
@@ -70,6 +72,8 @@
 "Laptop screen\n"
 "Model: %1"
 msgstr ""
+"Bærbarskærm\n"
+"Model: %1"
 
 #: src/screenchooserdialog.cpp:48 src/screenchooserdialog.cpp:51
 #, kde-format
@@ -77,85 +81,86 @@
 "Manufacturer: %1\n"
 "Model: %2"
 msgstr ""
+"Producent: %1\n"
+"Model: %2"
 
 #: src/screenchooserdialog.cpp:65
 #, kde-format
 msgid "Share"
-msgstr ""
+msgstr "Del"
 
 #: src/screenchooserdialog.cpp:66
 #, kde-format
 msgid "Select screen to share"
-msgstr ""
+msgstr "Vælg skærm der skal deles"
 
 #: src/screenshotdialog.cpp:95
-#, fuzzy, kde-format
-#| msgid "Request device access"
+#, kde-format
 msgid "Request screenshot"
-msgstr "Anmod om adgang til enhed"
+msgstr "Anmod om skærmbillede"
 
 #. i18n: ectx: property (text), widget (QLabel, label)
 #: src/screenshotdialog.ui:26
 #, kde-format
 msgid "Capture Mode"
-msgstr ""
+msgstr "Indfangningstilstand"
 
 #. i18n: ectx: property (text), widget (QLabel, label_3)
 #: src/screenshotdialog.ui:41
 #, kde-format
 msgid "Area:"
-msgstr ""
+msgstr "Område:"
 
 #. i18n: ectx: property (text), item, widget (QComboBox, areaComboBox)
 #: src/screenshotdialog.ui:58
 #, kde-format
 msgid "Full Screen (All 

commit xdg-desktop-portal-kde for openSUSE:Factory

2018-07-12 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2018-07-12 09:21:14

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Thu Jul 12 09:21:14 2018 rev:26 rq:622139 version:5.13.3

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2018-07-09 13:31:21.366488762 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2018-07-12 09:22:42.242715575 +0200
@@ -1,0 +2,10 @@
+Tue Jul 10 14:02:53 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.13.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.13.3.php
+- Changes since 5.13.2:
+  * Create stream once we are supposed to start a stream
+
+---

Old:

  xdg-desktop-portal-kde-5.13.2.tar.xz

New:

  xdg-desktop-portal-kde-5.13.3.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.4C5Zq2/_old  2018-07-12 09:22:42.650716146 +0200
+++ /var/tmp/diff_new_pack.4C5Zq2/_new  2018-07-12 09:22:42.650716146 +0200
@@ -25,7 +25,7 @@
 
 %define kf5_version 5.45.0
 Name:   xdg-desktop-portal-kde
-Version:5.13.2
+Version:5.13.3
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later

++ xdg-desktop-portal-kde-5.13.2.tar.xz -> 
xdg-desktop-portal-kde-5.13.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.13.2/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.13.3/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.13.2/CMakeLists.txt2018-06-26 
14:01:55.0 +0200
+++ new/xdg-desktop-portal-kde-5.13.3/CMakeLists.txt2018-07-10 
12:18:44.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.13.2")
+set(PROJECT_VERSION "5.13.3")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.13.2/po/zh_CN/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.13.3/po/zh_CN/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.13.2/po/zh_CN/xdg-desktop-portal-kde.po
2018-06-26 14:01:55.0 +0200
+++ new/xdg-desktop-portal-kde-5.13.3/po/zh_CN/xdg-desktop-portal-kde.po
2018-07-10 12:18:44.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2018-05-05 03:41+0200\n"
-"PO-Revision-Date: 2018-06-19T17:12:48+\n"
+"PO-Revision-Date: 2018-07-03 17:39\n"
 "Last-Translator: guoyunhebrave \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.13.2/src/screencast.cpp 
new/xdg-desktop-portal-kde-5.13.3/src/screencast.cpp
--- old/xdg-desktop-portal-kde-5.13.2/src/screencast.cpp2018-06-26 
14:01:23.0 +0200
+++ new/xdg-desktop-portal-kde-5.13.3/src/screencast.cpp2018-07-10 
12:18:37.0 +0200
@@ -136,7 +136,6 @@
 {
 initDrm();
 initEGL();
-initPipewire();
 initWayland();
 
 qDBusRegisterMetaType();
@@ -156,6 +155,42 @@
 m_stream->deleteLater();
 }
 
+void ScreenCastPortal::createPipeWireStream(const QSize )
+{
+m_stream = new ScreenCastStream(resolution);
+m_stream->init();
+
+connect(m_stream, ::streamReady, this, [] (uint nodeId) {
+qCDebug(XdgDesktopPortalKdeScreenCast) << "Pipewire stream is ready: " 
<< nodeId;
+});
+
+connect(m_stream, ::startStreaming, this, [this] {
+qCDebug(XdgDesktopPortalKdeScreenCast) << "Start streaming";
+m_streamingEnabled = true;
+
+if (!m_registryInitialized) {
+qCWarning(XdgDesktopPortalKdeScreenCast) << "Cannot start stream 
because registry is not initialized yet";
+return;
+}
+if 
(m_registry->hasInterface(KWayland::Client::Registry::Interface::RemoteAccessManager))
 {
+KWayland::Client::Registry::AnnouncedInterface interface = 
m_registry->interface(KWayland::Client::Registry::Interface::RemoteAccessManager);
+if (!interface.name && !interface.version) {
+qCWarning(XdgDesktopPortalKdeScreenCast) << "Cannot start 
stream because remote access 

commit xdg-desktop-portal-kde for openSUSE:Factory

2018-07-09 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2018-07-09 13:29:39

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Mon Jul  9 13:29:39 2018 rev:25 rq:621545 version:5.13.2

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2018-06-28 15:13:08.963622539 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2018-07-09 13:31:21.366488762 +0200
@@ -1,0 +2,5 @@
+Sun Jul  8 08:33:33 UTC 2018 - fab...@ritter-vogt.de
+
+- Enable screencast support for TW
+
+---



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.PwoTRZ/_old  2018-07-09 13:31:21.906487675 +0200
+++ /var/tmp/diff_new_pack.PwoTRZ/_new  2018-07-09 13:31:21.910487666 +0200
@@ -17,8 +17,11 @@
 
 
 %bcond_without lang
-# pipewire not available yet
+%if 0%{?suse_version} > 1500 || 0%{?sle_version} > 15
+%bcond_without screencast
+%else
 %bcond_with screencast
+%endif
 
 %define kf5_version 5.45.0
 Name:   xdg-desktop-portal-kde
@@ -45,8 +48,8 @@
 BuildRequires:  pkgconfig(epoxy)
 BuildRequires:  pkgconfig(gbm)
 BuildRequires:  pkgconfig(glib-2.0)
-BuildRequires:  pkgconfig(pipewire)
-BuildRequires:  pkgconfig(spa)
+BuildRequires:  pkgconfig(libpipewire-0.1)
+BuildRequires:  pkgconfig(libspa-0.1)
 %endif
 Requires:   xdg-desktop-portal
 Recommends: %{name}-lang




commit xdg-desktop-portal-kde for openSUSE:Factory

2018-06-28 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2018-06-28 15:12:42

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Thu Jun 28 15:12:42 2018 rev:24 rq:619332 version:5.13.2

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2018-06-20 15:36:57.961863240 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2018-06-28 15:13:08.963622539 +0200
@@ -1,0 +2,10 @@
+Tue Jun 26 16:01:37 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.13.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.13.2.php
+- Changes since 5.13.1:
+  * Stop streaming when session is closed and allow some stream negotiation
+
+---

Old:

  xdg-desktop-portal-kde-5.13.1.tar.xz

New:

  xdg-desktop-portal-kde-5.13.2.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.ugFdFn/_old  2018-06-28 15:13:09.563621439 +0200
+++ /var/tmp/diff_new_pack.ugFdFn/_new  2018-06-28 15:13:09.563621439 +0200
@@ -22,7 +22,7 @@
 
 %define kf5_version 5.45.0
 Name:   xdg-desktop-portal-kde
-Version:5.13.1
+Version:5.13.2
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1-or-later

++ xdg-desktop-portal-kde-5.13.1.tar.xz -> 
xdg-desktop-portal-kde-5.13.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.13.1/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.13.2/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.13.1/CMakeLists.txt2018-06-19 
12:53:26.0 +0200
+++ new/xdg-desktop-portal-kde-5.13.2/CMakeLists.txt2018-06-26 
14:01:55.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.13.1")
+set(PROJECT_VERSION "5.13.2")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.13.1/po/ca/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.13.2/po/ca/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.13.1/po/ca/xdg-desktop-portal-kde.po   
2018-06-19 12:53:09.0 +0200
+++ new/xdg-desktop-portal-kde-5.13.2/po/ca/xdg-desktop-portal-kde.po   
2018-06-26 14:01:37.0 +0200
@@ -4,13 +4,14 @@
 # version 3 or later versions approved by the membership of KDE e.V.
 #
 # Josep Ma. Ferrer , 2017, 2018.
+# Antoni Bella Pérez , 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: xdg-desktop-portal-kde\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2018-05-05 03:41+0200\n"
-"PO-Revision-Date: 2018-05-05 10:32+0100\n"
-"Last-Translator: Josep Ma. Ferrer \n"
+"PO-Revision-Date: 2018-06-23 17:40+0100\n"
+"Last-Translator: Antoni Bella Pérez \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
@@ -55,7 +56,7 @@
 "href=#discover>Discover."
 msgstr ""
-"Seleccioneu l'aplicació per obrir «%1». Hi ha altres aplicacions disponibles "
+"Seleccioneu l'aplicació per obrir «%1». Hi ha disponibles altres aplicacions "
 "al Discover."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.13.1/po/ca@valencia/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.13.2/po/ca@valencia/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.13.1/po/ca@valencia/xdg-desktop-portal-kde.po  
2018-06-19 12:53:09.0 +0200
+++ new/xdg-desktop-portal-kde-5.13.2/po/ca@valencia/xdg-desktop-portal-kde.po  
2018-06-26 14:01:37.0 +0200
@@ -4,13 +4,14 @@
 # version 3 or later versions approved by the membership of KDE e.V.
 #
 # Josep Ma. Ferrer , 2017, 2018.
+# Antoni Bella Pérez , 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: xdg-desktop-portal-kde\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2018-05-05 03:41+0200\n"
-"PO-Revision-Date: 2018-05-05 10:32+0100\n"
-"Last-Translator: Josep Ma. Ferrer \n"
+"PO-Revision-Date: 2018-06-23 17:40+0100\n"
+"Last-Translator: Antoni Bella Pérez \n"
 "Language-Team: Catalan \n"
 "Language: ca@valencia\n"
 "MIME-Version: 1.0\n"
@@ -55,7 +56,7 @@
 "href=#discover>Discover."
 msgstr ""
-"Seleccioneu l'aplicació per obrir «%1». Hi ha altres aplicacions disponibles "
+"Seleccioneu 

commit xdg-desktop-portal-kde for openSUSE:Factory

2018-06-20 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2018-06-20 15:36:51

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Wed Jun 20 15:36:51 2018 rev:23 rq:617992 version:5.13.1

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2018-06-15 14:45:40.965642453 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2018-06-20 15:36:57.961863240 +0200
@@ -1,0 +2,10 @@
+Tue Jun 19 14:47:11 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.13.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.13.1.php
+- Changes since 5.13.0:
+  * None
+
+---

Old:

  xdg-desktop-portal-kde-5.13.0.tar.xz

New:

  xdg-desktop-portal-kde-5.13.1.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.V81JrE/_old  2018-06-20 15:36:59.641802259 +0200
+++ /var/tmp/diff_new_pack.V81JrE/_new  2018-06-20 15:36:59.645802114 +0200
@@ -22,13 +22,13 @@
 
 %define kf5_version 5.45.0
 Name:   xdg-desktop-portal-kde
-Version:5.13.0
+Version:5.13.1
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
-License:LGPL-2.1+
+License:LGPL-2.1-or-later
 Group:  System/Libraries
 Url:http://www.kde.org
-Source: xdg-desktop-portal-kde-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
 BuildRequires:  extra-cmake-modules >= %{kf5_version}
 BuildRequires:  libQt5PrintSupport-private-headers-devel
 BuildRequires:  cmake(KF5CoreAddons) >= %{kf5_version}

++ xdg-desktop-portal-kde-5.13.0.tar.xz -> 
xdg-desktop-portal-kde-5.13.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.13.0/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.13.1/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.13.0/CMakeLists.txt2018-06-07 
17:33:30.0 +0200
+++ new/xdg-desktop-portal-kde-5.13.1/CMakeLists.txt2018-06-19 
12:53:26.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.13.0")
+set(PROJECT_VERSION "5.13.1")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.13.0/po/pl/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.13.1/po/pl/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.13.0/po/pl/xdg-desktop-portal-kde.po   
2018-06-07 17:33:05.0 +0200
+++ new/xdg-desktop-portal-kde-5.13.1/po/pl/xdg-desktop-portal-kde.po   
2018-06-19 12:53:20.0 +0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2018-05-05 03:41+0200\n"
-"PO-Revision-Date: 2018-04-28 07:13+0100\n"
+"PO-Revision-Date: 2018-06-09 05:55+0100\n"
 "Last-Translator: Łukasz Wojniłowicz \n"
 "Language-Team: Polish \n"
 "Language: pl\n"
@@ -96,73 +96,72 @@
 msgstr "Wybierz ekran do udostępnienia"
 
 #: src/screenshotdialog.cpp:95
-#, fuzzy, kde-format
-#| msgid "Request device access"
+#, kde-format
 msgid "Request screenshot"
-msgstr "Zażądano dostępu do urządzenia"
+msgstr "Zażądaj zrzutu ekranu"
 
 #. i18n: ectx: property (text), widget (QLabel, label)
 #: src/screenshotdialog.ui:26
 #, kde-format
 msgid "Capture Mode"
-msgstr ""
+msgstr "Tryb przechwytywania"
 
 #. i18n: ectx: property (text), widget (QLabel, label_3)
 #: src/screenshotdialog.ui:41
 #, kde-format
 msgid "Area:"
-msgstr ""
+msgstr "Obszar:"
 
 #. i18n: ectx: property (text), item, widget (QComboBox, areaComboBox)
 #: src/screenshotdialog.ui:58
 #, kde-format
 msgid "Full Screen (All Monitors)"
-msgstr ""
+msgstr "Pełny ekran (wszystkie monitory)"
 
 #. i18n: ectx: property (text), item, widget (QComboBox, areaComboBox)
 #: src/screenshotdialog.ui:63
 #, kde-format
 msgid "Current Screen"
-msgstr ""
+msgstr "Bieżący ekran"
 
 #. i18n: ectx: property (text), item, widget (QComboBox, areaComboBox)
 #: src/screenshotdialog.ui:68
 #, kde-format
 msgid "Active Window"
-msgstr ""
+msgstr "Aktywne okno"
 
 #. i18n: ectx: property (text), widget (QLabel, label_4)
 #: src/screenshotdialog.ui:82
 #, kde-format
 msgid "Delay:"
-msgstr ""
+msgstr "Opóźnienie:"
 
 #. i18n: 

commit xdg-desktop-portal-kde for openSUSE:Factory

2018-06-15 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2018-06-15 14:45:38

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Fri Jun 15 14:45:38 2018 rev:22 rq:615769 version:5.13.0

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2018-05-29 10:36:21.199465822 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2018-06-15 14:45:40.965642453 +0200
@@ -1,0 +2,10 @@
+Thu Jun  7 20:03:52 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.13.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.13.0.php
+- Changes since 5.12.90:
+  * Check cmake _FOUND variables for existance
+
+---

Old:

  xdg-desktop-portal-kde-5.12.90.tar.xz

New:

  xdg-desktop-portal-kde-5.13.0.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.qGxWoL/_old  2018-06-15 14:45:42.049602802 +0200
+++ /var/tmp/diff_new_pack.qGxWoL/_new  2018-06-15 14:45:42.053602656 +0200
@@ -22,13 +22,13 @@
 
 %define kf5_version 5.45.0
 Name:   xdg-desktop-portal-kde
-Version:5.12.90
+Version:5.13.0
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1+
 Group:  System/Libraries
 Url:http://www.kde.org
-Source: 
http://download.kde.org/unstable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
+Source: xdg-desktop-portal-kde-%{version}.tar.xz
 BuildRequires:  extra-cmake-modules >= %{kf5_version}
 BuildRequires:  libQt5PrintSupport-private-headers-devel
 BuildRequires:  cmake(KF5CoreAddons) >= %{kf5_version}

++ xdg-desktop-portal-kde-5.12.90.tar.xz -> 
xdg-desktop-portal-kde-5.13.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.12.90/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.13.0/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.12.90/CMakeLists.txt   2018-05-18 
14:41:46.0 +0200
+++ new/xdg-desktop-portal-kde-5.13.0/CMakeLists.txt2018-06-07 
17:33:30.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.12.90")
+set(PROJECT_VERSION "5.13.0")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
@@ -50,7 +50,7 @@
 PURPOSE "Required for screencast portal"
 )
 
-if (${PipeWire_FOUND} AND ${SPA_FOUND} AND ${GLIB2_FOUND} AND ${GBM_FOUND} AND 
${Epoxy_FOUND})
+if (PipeWire_FOUND AND SPA_FOUND AND GLIB2_FOUND AND GBM_FOUND AND Epoxy_FOUND)
 set (SCREENCAST_ENABLED true)
 else()
 set (SCREENCAST_ENABLED false)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.12.90/po/cs/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.13.0/po/cs/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.12.90/po/cs/xdg-desktop-portal-kde.po  
2018-05-18 14:41:35.0 +0200
+++ new/xdg-desktop-portal-kde-5.13.0/po/cs/xdg-desktop-portal-kde.po   
2018-06-07 17:32:13.0 +0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2018-05-05 03:41+0200\n"
-"PO-Revision-Date: 2018-04-19 15:29+0100\n"
+"PO-Revision-Date: 2018-05-18 14:57+0100\n"
 "Last-Translator: Vit Pelcak \n"
 "Language-Team: Czech \n"
 "Language: cs\n"
@@ -54,10 +54,9 @@
 msgstr ""
 
 #: src/appchooserdialog.cpp:105
-#, fuzzy, kde-format
-#| msgid "Open"
+#, kde-format
 msgid "Open with"
-msgstr "Otevřít"
+msgstr "Otevřít pomocí"
 
 #: src/filechooser.cpp:159
 #, kde-format
@@ -93,73 +92,72 @@
 msgstr "Vyberte obrazovku ke sdílení"
 
 #: src/screenshotdialog.cpp:95
-#, fuzzy, kde-format
-#| msgid "Request device access"
+#, kde-format
 msgid "Request screenshot"
-msgstr "Vyžádat přístup k zařízení"
+msgstr "Vyžádat snímek obrazovky"
 
 #. i18n: ectx: property (text), widget (QLabel, label)
 #: src/screenshotdialog.ui:26
 #, kde-format
 msgid "Capture Mode"
-msgstr ""
+msgstr "Režim snímku"
 
 #. i18n: ectx: property (text), widget (QLabel, label_3)
 #: src/screenshotdialog.ui:41
 #, kde-format
 msgid "Area:"
-msgstr ""
+msgstr "Oblast:"
 
 #. i18n: ectx: property (text), item, widget (QComboBox, areaComboBox)
 #: src/screenshotdialog.ui:58
 #, kde-format
 msgid "Full Screen (All Monitors)"
-msgstr ""
+msgstr "Celá 

commit xdg-desktop-portal-kde for openSUSE:Factory

2018-05-29 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2018-05-29 10:36:12

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Tue May 29 10:36:12 2018 rev:21 rq:610940 version:5.12.90

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2018-05-03 12:34:29.311778783 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2018-05-29 10:36:21.199465822 +0200
@@ -1,0 +2,21 @@
+Sat May 19 14:16:38 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.90.php
+- Changes since 5.12.5:
+  * Warning--
+  * Add Screenshot portal
+  * Improve app chooser dialog
+  * Avoid issues if pkgconfig cannot find the libraries.
+  * Update variables names.
+  * Look for pkgconfig quietly.
+  * Update the doc
+  * Simplify.
+  * Search properly for pipewire and other libs
+  * Make screencast support optional
+  * Add screen cast portal
+  * Fix build with Qt dev branch, where QCUPSSupport::cupsOptionsList was 
removed
+
+---

Old:

  xdg-desktop-portal-kde-5.12.5.tar.xz

New:

  xdg-desktop-portal-kde-5.12.90.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.bAgul7/_old  2018-05-29 10:36:23.783370413 +0200
+++ /var/tmp/diff_new_pack.bAgul7/_new  2018-05-29 10:36:23.787370265 +0200
@@ -17,29 +17,40 @@
 
 
 %bcond_without lang
+# pipewire not available yet
+%bcond_with screencast
 
-%define kf5_version 5.26.0
+%define kf5_version 5.45.0
 Name:   xdg-desktop-portal-kde
-Version:5.12.5
+Version:5.12.90
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1+
 Group:  System/Libraries
 Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
+Source: 
http://download.kde.org/unstable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
 BuildRequires:  extra-cmake-modules >= %{kf5_version}
 BuildRequires:  libQt5PrintSupport-private-headers-devel
 BuildRequires:  cmake(KF5CoreAddons) >= %{kf5_version}
 BuildRequires:  cmake(KF5I18n) >= %{kf5_version}
 BuildRequires:  cmake(KF5Notifications) >= %{kf5_version}
+BuildRequires:  cmake(KF5Wayland) >= %{kf5_version}
+BuildRequires:  cmake(KF5WidgetsAddons) >= %{kf5_version}
+BuildRequires:  cmake(Qt5Concurrent)
 BuildRequires:  cmake(Qt5Core) >= 5.4.0
 BuildRequires:  cmake(Qt5DBus)
 BuildRequires:  cmake(Qt5PrintSupport)
 BuildRequires:  cmake(Qt5Widgets)
+%if %{with screencast}
+BuildRequires:  pkgconfig(epoxy)
+BuildRequires:  pkgconfig(gbm)
+BuildRequires:  pkgconfig(glib-2.0)
+BuildRequires:  pkgconfig(pipewire)
+BuildRequires:  pkgconfig(spa)
+%endif
 Requires:   xdg-desktop-portal
 Recommends: %{name}-lang
 Supplements:packageand(xdg-desktop-portal:plasma5-desktop)
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 A Qt/KF5 backend implementation for xdg-desktop-portal
@@ -62,8 +73,7 @@
 %endif
 
 %files
-%defattr(-,root,root)
-%doc COPYING
+%license COPYING
 %{_libdir}/libexec/xdg-desktop-portal-kde
 %{_datadir}/dbus-1/services/org.freedesktop.impl.portal.desktop.kde.service
 %dir %{_datadir}/xdg-desktop-portal
@@ -72,7 +82,7 @@
 
 %if %{with lang}
 %files lang -f %{name}.lang
-%doc COPYING
+%license COPYING
 %endif
 
 %changelog

++ xdg-desktop-portal-kde-5.12.5.tar.xz -> 
xdg-desktop-portal-kde-5.12.90.tar.xz ++
 8716 lines of diff (skipped)




commit xdg-desktop-portal-kde for openSUSE:Factory

2018-05-03 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2018-05-03 12:34:27

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Thu May  3 12:34:27 2018 rev:20 rq:603278 version:5.12.5

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2018-03-29 11:57:04.363207464 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2018-05-03 12:34:29.311778783 +0200
@@ -1,0 +2,10 @@
+Wed May  2 09:26:03 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * None
+
+---

Old:

  xdg-desktop-portal-kde-5.12.4.tar.xz

New:

  xdg-desktop-portal-kde-5.12.5.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.a8w55g/_old  2018-05-03 12:34:30.107750426 +0200
+++ /var/tmp/diff_new_pack.a8w55g/_new  2018-05-03 12:34:30.111750284 +0200
@@ -20,7 +20,7 @@
 
 %define kf5_version 5.26.0
 Name:   xdg-desktop-portal-kde
-Version:5.12.4
+Version:5.12.5
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1+

++ xdg-desktop-portal-kde-5.12.4.tar.xz -> 
xdg-desktop-portal-kde-5.12.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.12.4/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.12.5/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.12.4/CMakeLists.txt2018-03-27 
13:33:27.0 +0200
+++ new/xdg-desktop-portal-kde-5.12.5/CMakeLists.txt2018-05-01 
15:10:53.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.12.4")
+set(PROJECT_VERSION "5.12.5")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.12.4/po/cs/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.12.5/po/cs/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.12.4/po/cs/xdg-desktop-portal-kde.po   
2018-03-27 13:33:12.0 +0200
+++ new/xdg-desktop-portal-kde-5.12.5/po/cs/xdg-desktop-portal-kde.po   
2018-05-01 15:10:35.0 +0200
@@ -1,6 +1,6 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
-# Vít Pelčák , 2017.
+# Vít Pelčák , 2017, 2018.
 #
 msgid ""
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.12.4/po/it/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.12.5/po/it/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.12.4/po/it/xdg-desktop-portal-kde.po   
2018-03-27 13:33:17.0 +0200
+++ new/xdg-desktop-portal-kde-5.12.5/po/it/xdg-desktop-portal-kde.po   
2018-05-01 15:10:41.0 +0200
@@ -1,6 +1,6 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the 
xdg-desktop-portal-kde package.
-# Luigi Toscano , 2017.
+# Luigi Toscano , 2017, 2018.
 #
 msgid ""
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.12.4/po/zh_CN/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.12.5/po/zh_CN/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.12.4/po/zh_CN/xdg-desktop-portal-kde.po
2018-03-27 13:33:27.0 +0200
+++ new/xdg-desktop-portal-kde-5.12.5/po/zh_CN/xdg-desktop-portal-kde.po
2018-05-01 15:10:53.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2017-05-23 03:08+0200\n"
-"PO-Revision-Date: 2018-03-18 19:40-0400\n"
+"PO-Revision-Date: 2018-04-26 06:07-0400\n"
 "Last-Translator: guoyunhebrave \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit xdg-desktop-portal-kde for openSUSE:Factory

2018-03-29 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2018-03-29 11:57:03

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Thu Mar 29 11:57:03 2018 rev:19 rq:591859 version:5.12.4

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2018-03-08 11:00:02.739813735 +0100
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2018-03-29 11:57:04.363207464 +0200
@@ -1,0 +2,10 @@
+Tue Mar 27 15:40:49 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.4.php
+- Changes since 5.12.3:
+  * None
+
+---

Old:

  xdg-desktop-portal-kde-5.12.3.tar.xz

New:

  xdg-desktop-portal-kde-5.12.4.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.PNEMxq/_old  2018-03-29 11:57:04.847189991 +0200
+++ /var/tmp/diff_new_pack.PNEMxq/_new  2018-03-29 11:57:04.847189991 +0200
@@ -20,7 +20,7 @@
 
 %define kf5_version 5.26.0
 Name:   xdg-desktop-portal-kde
-Version:5.12.3
+Version:5.12.4
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1+

++ xdg-desktop-portal-kde-5.12.3.tar.xz -> 
xdg-desktop-portal-kde-5.12.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.12.3/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.12.4/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.12.3/CMakeLists.txt2018-03-06 
14:08:45.0 +0100
+++ new/xdg-desktop-portal-kde-5.12.4/CMakeLists.txt2018-03-27 
13:33:27.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.12.3")
+set(PROJECT_VERSION "5.12.4")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.12.3/po/ca@valencia/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.12.4/po/ca@valencia/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.12.3/po/ca@valencia/xdg-desktop-portal-kde.po  
2018-03-06 14:08:24.0 +0100
+++ new/xdg-desktop-portal-kde-5.12.4/po/ca@valencia/xdg-desktop-portal-kde.po  
2018-03-27 13:33:12.0 +0200
@@ -60,7 +60,7 @@
 #: src/appchooserdialog.ui:22
 #, kde-format
 msgid "Search"
-msgstr "Busca"
+msgstr "Cerca"
 
 #: src/filechooser.cpp:159
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.12.3/po/zh_CN/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.12.4/po/zh_CN/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.12.3/po/zh_CN/xdg-desktop-portal-kde.po
2018-03-06 14:08:45.0 +0100
+++ new/xdg-desktop-portal-kde-5.12.4/po/zh_CN/xdg-desktop-portal-kde.po
2018-03-27 13:33:27.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2017-05-23 03:08+0200\n"
-"PO-Revision-Date: 2018-03-05 17:19-0500\n"
+"PO-Revision-Date: 2018-03-18 19:40-0400\n"
 "Last-Translator: guoyunhebrave \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit xdg-desktop-portal-kde for openSUSE:Factory

2018-03-08 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2018-03-08 10:59:53

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Thu Mar  8 10:59:53 2018 rev:18 rq:584075 version:5.12.3

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2018-02-23 15:31:18.087263551 +0100
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2018-03-08 11:00:02.739813735 +0100
@@ -1,0 +2,10 @@
+Tue Mar  6 16:08:09 CET 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.3.php
+- Changes since 5.12.2:
+  * None
+
+---

Old:

  xdg-desktop-portal-kde-5.12.2.tar.xz

New:

  xdg-desktop-portal-kde-5.12.3.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.wbweEd/_old  2018-03-08 11:00:03.647780918 +0100
+++ /var/tmp/diff_new_pack.wbweEd/_new  2018-03-08 11:00:03.647780918 +0100
@@ -20,13 +20,13 @@
 
 %define kf5_version 5.26.0
 Name:   xdg-desktop-portal-kde
-Version:5.12.2
+Version:5.12.3
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1+
 Group:  System/Libraries
 Url:http://www.kde.org
-Source: xdg-desktop-portal-kde-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
 BuildRequires:  extra-cmake-modules >= %{kf5_version}
 BuildRequires:  libQt5PrintSupport-private-headers-devel
 BuildRequires:  cmake(KF5CoreAddons) >= %{kf5_version}

++ xdg-desktop-portal-kde-5.12.2.tar.xz -> 
xdg-desktop-portal-kde-5.12.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.12.2/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.12.3/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.12.2/CMakeLists.txt2018-02-20 
16:48:53.0 +0100
+++ new/xdg-desktop-portal-kde-5.12.3/CMakeLists.txt2018-03-06 
14:08:45.0 +0100
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.12.2")
+set(PROJECT_VERSION "5.12.3")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.12.2/po/zh_CN/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.12.3/po/zh_CN/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.12.2/po/zh_CN/xdg-desktop-portal-kde.po
2018-02-20 16:48:53.0 +0100
+++ new/xdg-desktop-portal-kde-5.12.3/po/zh_CN/xdg-desktop-portal-kde.po
2018-03-06 14:08:45.0 +0100
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2017-05-23 03:08+0200\n"
-"PO-Revision-Date: 2018-02-19 19:14-0500\n"
+"PO-Revision-Date: 2018-03-05 17:19-0500\n"
 "Last-Translator: guoyunhebrave \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit xdg-desktop-portal-kde for openSUSE:Factory

2018-02-23 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2018-02-23 15:30:47

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Fri Feb 23 15:30:47 2018 rev:17 rq:579162 version:5.12.2

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2018-02-19 13:02:23.534995027 +0100
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2018-02-23 15:31:18.087263551 +0100
@@ -1,0 +2,12 @@
+Wed Feb 21 23:57:10 CET 2018 - lbeltr...@kde.org
+
+- Update to 5.12.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.2.php
+- Changes since 5.12.1:
+  * Fix build with Qt dev branch, where QCUPSSupport::cupsOptionsList was 
removed
+- Dropped patches, now upstream:
+  * 0001-Fix-build-with-Qt-dev-branch-where-QCUPSSupport-cups.patch
+
+---

Old:

  0001-Fix-build-with-Qt-dev-branch-where-QCUPSSupport-cups.patch
  xdg-desktop-portal-kde-5.12.1.tar.xz

New:

  xdg-desktop-portal-kde-5.12.2.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.0zsvxy/_old  2018-02-23 15:31:19.299219762 +0100
+++ /var/tmp/diff_new_pack.0zsvxy/_new  2018-02-23 15:31:19.307219473 +0100
@@ -20,15 +20,13 @@
 
 %define kf5_version 5.26.0
 Name:   xdg-desktop-portal-kde
-Version:5.12.1
+Version:5.12.2
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1+
 Group:  System/Libraries
 Url:http://www.kde.org
 Source: xdg-desktop-portal-kde-%{version}.tar.xz
-# PATCH-FIX-UPSTREAM 
0001-Fix-build-with-Qt-dev-branch-where-QCUPSSupport-cups.patch - kde#389825
-Patch0: 0001-Fix-build-with-Qt-dev-branch-where-QCUPSSupport-cups.patch
 BuildRequires:  extra-cmake-modules >= %{kf5_version}
 BuildRequires:  libQt5PrintSupport-private-headers-devel
 BuildRequires:  cmake(KF5CoreAddons) >= %{kf5_version}
@@ -52,7 +50,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 %cmake_kf5 -d build

++ xdg-desktop-portal-kde-5.12.1.tar.xz -> 
xdg-desktop-portal-kde-5.12.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.12.1/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.12.2/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.12.1/CMakeLists.txt2018-02-13 
15:38:45.0 +0100
+++ new/xdg-desktop-portal-kde-5.12.2/CMakeLists.txt2018-02-20 
16:48:53.0 +0100
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.12.1")
+set(PROJECT_VERSION "5.12.2")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.12.1/po/zh_CN/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.12.2/po/zh_CN/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.12.1/po/zh_CN/xdg-desktop-portal-kde.po
2018-02-13 15:38:45.0 +0100
+++ new/xdg-desktop-portal-kde-5.12.2/po/zh_CN/xdg-desktop-portal-kde.po
2018-02-20 16:48:53.0 +0100
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2017-05-23 03:08+0200\n"
-"PO-Revision-Date: 2018-02-12 05:47-0500\n"
+"PO-Revision-Date: 2018-02-19 19:14-0500\n"
 "Last-Translator: guoyunhebrave \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.12.1/src/print.cpp 
new/xdg-desktop-portal-kde-5.12.2/src/print.cpp
--- old/xdg-desktop-portal-kde-5.12.1/src/print.cpp 2018-02-13 
15:38:13.0 +0100
+++ new/xdg-desktop-portal-kde-5.12.2/src/print.cpp 2018-02-20 
16:48:24.0 +0100
@@ -636,7 +636,7 @@
 resultingSettings.insert(QLatin1String("page-ranges"), 
QString("%1-%2").arg(printer->fromPage()).arg(printer->toPage()));
 }
 // Set cups specific properties
-const QStringList cupsOptions = QCUPSSupport::cupsOptionsList(printer);
+const QStringList cupsOptions = 
printer->printEngine()->property(PPK_CupsOptions).toStringList();
 qCDebug(XdgDesktopPortalKdePrint) << cupsOptions;
 if (cupsOptions.contains(QLatin1String("page-set"))) {
  

commit xdg-desktop-portal-kde for openSUSE:Factory

2018-02-19 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2018-02-19 13:02:12

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Mon Feb 19 13:02:12 2018 rev:16 rq:577792 version:5.12.1

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2018-02-07 18:41:19.460432903 +0100
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2018-02-19 13:02:23.534995027 +0100
@@ -1,0 +2,10 @@
+Tue Feb 13 16:25:29 CET 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.1.php
+- Changes since 5.12.0:
+  * None
+
+---

Old:

  xdg-desktop-portal-kde-5.12.0.tar.xz

New:

  xdg-desktop-portal-kde-5.12.1.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.tKtXyD/_old  2018-02-19 13:02:24.722952184 +0100
+++ /var/tmp/diff_new_pack.tKtXyD/_new  2018-02-19 13:02:24.722952184 +0100
@@ -20,7 +20,7 @@
 
 %define kf5_version 5.26.0
 Name:   xdg-desktop-portal-kde
-Version:5.12.0
+Version:5.12.1
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1+

++ xdg-desktop-portal-kde-5.12.0.tar.xz -> 
xdg-desktop-portal-kde-5.12.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.12.0/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.12.1/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.12.0/CMakeLists.txt2018-02-01 
15:46:26.0 +0100
+++ new/xdg-desktop-portal-kde-5.12.1/CMakeLists.txt2018-02-13 
15:38:45.0 +0100
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.12.0")
+set(PROJECT_VERSION "5.12.1")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.12.0/po/zh_CN/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.12.1/po/zh_CN/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.12.0/po/zh_CN/xdg-desktop-portal-kde.po
2018-02-01 15:46:26.0 +0100
+++ new/xdg-desktop-portal-kde-5.12.1/po/zh_CN/xdg-desktop-portal-kde.po
2018-02-13 15:38:45.0 +0100
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2017-05-23 03:08+0200\n"
-"PO-Revision-Date: 2018-02-01 07:16-0500\n"
+"PO-Revision-Date: 2018-02-12 05:47-0500\n"
 "Last-Translator: guoyunhebrave \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit xdg-desktop-portal-kde for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2018-02-07 18:41:18

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Wed Feb  7 18:41:18 2018 rev:15 rq:573514 version:5.12.0

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2018-01-25 12:39:36.949253970 +0100
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2018-02-07 18:41:19.460432903 +0100
@@ -1,0 +2,18 @@
+Tue Feb  6 15:45:03 UTC 2018 - alarr...@suse.com
+
+- Add patch to fix build with latest Qt dev version where
+  QCUPSSupport::cupsOptionsList was removed from the private API
+  (kde#389825):
+  * 0001-Fix-build-with-Qt-dev-branch-where-QCUPSSupport-cups.patch
+
+---
+Fri Feb  2 21:03:45 CET 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.0.php
+- Changes since 5.11.95:
+  * None
+
+---

Old:

  xdg-desktop-portal-kde-5.11.95.tar.xz

New:

  0001-Fix-build-with-Qt-dev-branch-where-QCUPSSupport-cups.patch
  xdg-desktop-portal-kde-5.12.0.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.DUMVez/_old  2018-02-07 18:41:20.088403499 +0100
+++ /var/tmp/diff_new_pack.DUMVez/_new  2018-02-07 18:41:20.092403312 +0100
@@ -20,13 +20,15 @@
 
 %define kf5_version 5.26.0
 Name:   xdg-desktop-portal-kde
-Version:5.11.95
+Version:5.12.0
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1+
 Group:  System/Libraries
 Url:http://www.kde.org
-Source: 
http://download.kde.org/unstable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
+Source: xdg-desktop-portal-kde-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM 
0001-Fix-build-with-Qt-dev-branch-where-QCUPSSupport-cups.patch - kde#389825
+Patch0: 0001-Fix-build-with-Qt-dev-branch-where-QCUPSSupport-cups.patch
 BuildRequires:  extra-cmake-modules >= %{kf5_version}
 BuildRequires:  libQt5PrintSupport-private-headers-devel
 BuildRequires:  cmake(KF5CoreAddons) >= %{kf5_version}
@@ -50,6 +52,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 %cmake_kf5 -d build

++ 0001-Fix-build-with-Qt-dev-branch-where-QCUPSSupport-cups.patch ++
>From f0cc071c09d721734d0ca5bdf3baaa75d46bd64b Mon Sep 17 00:00:00 2001
From: Antonio Larrosa 
Date: Tue, 6 Feb 2018 16:54:31 +0100
Subject: [PATCH] Fix build with Qt dev branch, where
 QCUPSSupport::cupsOptionsList was removed

Summary:
Fix build with Qt dev branch, where QCUPSSupport::cupsOptionsList was removed

BUG 389825

Reviewers: aacid, jriddell

Differential Revision: https://phabricator.kde.org/D10345
---
 src/print.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/print.cpp b/src/print.cpp
index 439b6ce..d797007 100644
--- a/src/print.cpp
+++ b/src/print.cpp
@@ -636,7 +636,7 @@ uint PrintPortal::PreparePrint(const QDBusObjectPath 
,
 resultingSettings.insert(QLatin1String("page-ranges"), 
QString("%1-%2").arg(printer->fromPage()).arg(printer->toPage()));
 }
 // Set cups specific properties
-const QStringList cupsOptions = QCUPSSupport::cupsOptionsList(printer);
+const QStringList cupsOptions = 
printer->printEngine()->property(PPK_CupsOptions).toStringList();
 qCDebug(XdgDesktopPortalKdePrint) << cupsOptions;
 if (cupsOptions.contains(QLatin1String("page-set"))) {
 resultingSettings.insert(QLatin1String("page-set"), 
cupsOptions.at(cupsOptions.indexOf(QLatin1String("page-set")) + 1));
-- 
2.16.1

++ xdg-desktop-portal-kde-5.11.95.tar.xz -> 
xdg-desktop-portal-kde-5.12.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.11.95/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.12.0/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.11.95/CMakeLists.txt   2018-01-15 
14:46:33.0 +0100
+++ new/xdg-desktop-portal-kde-5.12.0/CMakeLists.txt2018-02-01 
15:46:26.0 +0100
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.11.95")
+set(PROJECT_VERSION "5.12.0")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff 

commit xdg-desktop-portal-kde for openSUSE:Factory

2018-01-25 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2018-01-25 12:39:35

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Thu Jan 25 12:39:35 2018 rev:14 rq:566936 version:5.11.95

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2018-01-05 00:59:35.980337346 +0100
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2018-01-25 12:39:36.949253970 +0100
@@ -1,0 +2,11 @@
+Mon Jan 15 15:54:08 CET 2018 - fab...@ritter-vogt.de
+
+- Update to 5.11.95
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.11.95.php
+- Changes since 5.11.5:
+  * Email portal: add support for attachments
+  * Email portal: add support for attachments
+
+---

Old:

  xdg-desktop-portal-kde-5.11.5.tar.xz

New:

  xdg-desktop-portal-kde-5.11.95.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.SiyL4x/_old  2018-01-25 12:39:37.541226334 +0100
+++ /var/tmp/diff_new_pack.SiyL4x/_new  2018-01-25 12:39:37.545226147 +0100
@@ -20,13 +20,13 @@
 
 %define kf5_version 5.26.0
 Name:   xdg-desktop-portal-kde
-Version:5.11.5
+Version:5.11.95
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1+
 Group:  System/Libraries
 Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
+Source: 
http://download.kde.org/unstable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
 BuildRequires:  extra-cmake-modules >= %{kf5_version}
 BuildRequires:  libQt5PrintSupport-private-headers-devel
 BuildRequires:  cmake(KF5CoreAddons) >= %{kf5_version}

++ xdg-desktop-portal-kde-5.11.5.tar.xz -> 
xdg-desktop-portal-kde-5.11.95.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.11.5/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.11.95/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.11.5/CMakeLists.txt2018-01-02 
14:55:47.997466391 +0100
+++ new/xdg-desktop-portal-kde-5.11.95/CMakeLists.txt   2018-01-15 
14:46:33.0 +0100
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.11.5")
+set(PROJECT_VERSION "5.11.95")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.11.5/po/en_GB/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.11.95/po/en_GB/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.11.5/po/en_GB/xdg-desktop-portal-kde.po
2018-01-02 14:55:24.157311472 +0100
+++ new/xdg-desktop-portal-kde-5.11.95/po/en_GB/xdg-desktop-portal-kde.po   
2018-01-15 14:46:23.0 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2017-05-23 03:08+0200\n"
-"PO-Revision-Date: 2017-11-26 21:24+\n"
+"PO-Revision-Date: 2017-11-26 15:47+\n"
 "Last-Translator: Steve Allewell \n"
 "Language-Team: British English \n"
 "Language: en_GB\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.11.5/po/hu/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.11.95/po/hu/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.11.5/po/hu/xdg-desktop-portal-kde.po   
1970-01-01 01:00:00.0 +0100
+++ new/xdg-desktop-portal-kde-5.11.95/po/hu/xdg-desktop-portal-kde.po  
2018-01-15 14:46:25.0 +0100
@@ -0,0 +1,65 @@
+# Copyright (C) YEAR This_file_is_part_of_KDE
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Kiszel Kristóf , 2017.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n;
+"POT-Creation-Date: 2017-05-23 03:08+0200\n"
+"PO-Revision-Date: 2017-12-06 16:00-0500\n"
+"Last-Translator: Kiszel Kristóf \n"
+"Language-Team: Hungarian \n"
+"Language: hu_HU\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: 

commit xdg-desktop-portal-kde for openSUSE:Factory

2018-01-04 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2018-01-05 00:59:29

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Fri Jan  5 00:59:29 2018 rev:13 rq:561232 version:5.11.5

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2017-12-04 10:02:37.883859666 +0100
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2018-01-05 00:59:35.980337346 +0100
@@ -1,0 +2,10 @@
+Tue Jan  2 16:40:09 CET 2018 - fab...@ritter-vogt.de
+
+- Update to 5.11.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.11.5.php
+- Changes since 5.11.4:
+  * None
+
+---

Old:

  xdg-desktop-portal-kde-5.11.4.tar.xz

New:

  xdg-desktop-portal-kde-5.11.5.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.SI8PjZ/_old  2018-01-05 00:59:38.527489874 +0100
+++ /var/tmp/diff_new_pack.SI8PjZ/_new  2018-01-05 00:59:38.531488544 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xdg-desktop-portal-kde
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 
 %define kf5_version 5.26.0
 Name:   xdg-desktop-portal-kde
-Version:5.11.4
+Version:5.11.5
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1+

++ xdg-desktop-portal-kde-5.11.4.tar.xz -> 
xdg-desktop-portal-kde-5.11.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.11.4/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.11.5/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.11.4/CMakeLists.txt2017-11-28 
13:56:22.0 +0100
+++ new/xdg-desktop-portal-kde-5.11.5/CMakeLists.txt2018-01-02 
14:55:47.997466391 +0100
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.11.4")
+set(PROJECT_VERSION "5.11.5")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.11.4/po/ko/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.11.5/po/ko/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.11.4/po/ko/xdg-desktop-portal-kde.po   
1970-01-01 01:00:00.0 +0100
+++ new/xdg-desktop-portal-kde-5.11.5/po/ko/xdg-desktop-portal-kde.po   
2018-01-02 14:55:32.869368084 +0100
@@ -0,0 +1,65 @@
+# Copyright (C) YEAR This_file_is_part_of_KDE
+# This file is distributed under the same license as the PACKAGE package.
+# Shinjo Park , 2017.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n;
+"POT-Creation-Date: 2017-05-23 03:08+0200\n"
+"PO-Revision-Date: 2017-12-03 00:15+0100\n"
+"Last-Translator: Shinjo Park \n"
+"Language-Team: Korean \n"
+"Language: ko\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: src/accessdialog.cpp:42
+#, kde-format
+msgid "Request device access"
+msgstr "장치 접근 요청"
+
+#. i18n: ectx: property (windowTitle), widget (QDialog, AppChooserDialog)
+#. i18n: ectx: property (windowTitle), widget (QDialog, AccessDialog)
+#: src/accessdialog.ui:20 src/appchooserdialog.ui:14
+#, kde-format
+msgid "Dialog"
+msgstr "대화 상자"
+
+#. i18n: ectx: property (text), widget (QLabel, iconLabel)
+#: src/accessdialog.ui:26
+#, kde-format
+msgid "Icon"
+msgstr "아이콘"
+
+#. i18n: ectx: property (text), widget (QLabel, titleLabel)
+#. i18n: ectx: property (text), widget (QLabel, subtitleLabel)
+#. i18n: ectx: property (text), widget (QLabel, bodyLabel)
+#: src/accessdialog.ui:38 src/accessdialog.ui:51 src/accessdialog.ui:69
+#, kde-format
+msgid "TextLabel"
+msgstr "텍스트 레이블"
+
+#: src/appchooserdialog.cpp:66
+#, kde-format
+msgid "Select"
+msgstr "선택"
+
+#: src/appchooserdialog.cpp:67
+#, kde-format
+msgid "Select application"
+msgstr "프로그램 선택"
+
+#. i18n: ectx: property (text), widget (QLabel, searchLabel)
+#: src/appchooserdialog.ui:22
+#, 

commit xdg-desktop-portal-kde for openSUSE:Factory

2017-12-04 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2017-12-04 10:02:31

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Mon Dec  4 10:02:31 2017 rev:12 rq:547219 version:5.11.4

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2017-11-08 15:15:51.445511606 +0100
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2017-12-04 10:02:37.883859666 +0100
@@ -1,0 +2,10 @@
+Thu Nov 30 10:47:52 CET 2017 - fab...@ritter-vogt.de
+
+- Update to 5.11.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.11.4.php
+- Changes since 5.11.3:
+  * None
+
+---

Old:

  xdg-desktop-portal-kde-5.11.3.tar.xz

New:

  xdg-desktop-portal-kde-5.11.4.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.TmRbkC/_old  2017-12-04 10:02:38.511836873 +0100
+++ /var/tmp/diff_new_pack.TmRbkC/_new  2017-12-04 10:02:38.511836873 +0100
@@ -20,7 +20,7 @@
 
 %define kf5_version 5.26.0
 Name:   xdg-desktop-portal-kde
-Version:5.11.3
+Version:5.11.4
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1+

++ xdg-desktop-portal-kde-5.11.3.tar.xz -> 
xdg-desktop-portal-kde-5.11.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.11.3/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.11.4/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.11.3/CMakeLists.txt2017-11-07 
14:36:46.0 +0100
+++ new/xdg-desktop-portal-kde-5.11.4/CMakeLists.txt2017-11-28 
13:56:22.0 +0100
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.11.3")
+set(PROJECT_VERSION "5.11.4")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.11.3/po/da/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.11.4/po/da/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.11.3/po/da/xdg-desktop-portal-kde.po   
2017-11-07 14:36:30.0 +0100
+++ new/xdg-desktop-portal-kde-5.11.4/po/da/xdg-desktop-portal-kde.po   
2017-11-28 13:56:05.0 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2017-05-23 03:08+0200\n"
-"PO-Revision-Date: 2017-05-30 22:07+0100\n"
+"PO-Revision-Date: 2017-11-27 19:39+0100\n"
 "Last-Translator: Martin Schlander \n"
 "Language-Team: Danish \n"
 "Language: da\n"
@@ -20,7 +20,7 @@
 #: src/accessdialog.cpp:42
 #, kde-format
 msgid "Request device access"
-msgstr ""
+msgstr "Anmod om adgang til enhed"
 
 #. i18n: ectx: property (windowTitle), widget (QDialog, AppChooserDialog)
 #. i18n: ectx: property (windowTitle), widget (QDialog, AccessDialog)
@@ -33,7 +33,7 @@
 #: src/accessdialog.ui:26
 #, kde-format
 msgid "Icon"
-msgstr ""
+msgstr "Ikon"
 
 #. i18n: ectx: property (text), widget (QLabel, titleLabel)
 #. i18n: ectx: property (text), widget (QLabel, subtitleLabel)
@@ -41,25 +41,25 @@
 #: src/accessdialog.ui:38 src/accessdialog.ui:51 src/accessdialog.ui:69
 #, kde-format
 msgid "TextLabel"
-msgstr ""
+msgstr "TekstEtiket"
 
 #: src/appchooserdialog.cpp:66
 #, kde-format
 msgid "Select"
-msgstr ""
+msgstr "Vælg"
 
 #: src/appchooserdialog.cpp:67
 #, kde-format
 msgid "Select application"
-msgstr ""
+msgstr "Vælg program"
 
 #. i18n: ectx: property (text), widget (QLabel, searchLabel)
 #: src/appchooserdialog.ui:22
 #, kde-format
 msgid "Search"
-msgstr ""
+msgstr "Søg"
 
 #: src/filechooser.cpp:159
 #, kde-format
 msgid "Open"
-msgstr ""
\ No newline at end of file
+msgstr "Åbn"
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.11.3/po/en_GB/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.11.4/po/en_GB/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.11.3/po/en_GB/xdg-desktop-portal-kde.po
2017-11-07 14:36:31.0 +0100
+++ new/xdg-desktop-portal-kde-5.11.4/po/en_GB/xdg-desktop-portal-kde.po
2017-11-28 13:56:06.0 +0100
@@ -7,9 +7,9 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: 

commit xdg-desktop-portal-kde for openSUSE:Factory

2017-11-08 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2017-11-08 15:11:33

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Wed Nov  8 15:11:33 2017 rev:11 rq:539732 version:5.11.3

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2017-10-26 18:45:57.115560806 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2017-11-08 15:15:51.445511606 +0100
@@ -1,0 +2,10 @@
+Tue Nov  7 15:15:56 CET 2017 - fab...@ritter-vogt.de
+
+- Update to 5.11.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.11.3.php
+- Changes since 5.11.2:
+  * Email portal: add support for attachments
+
+---

Old:

  xdg-desktop-portal-kde-5.11.2.tar.xz

New:

  xdg-desktop-portal-kde-5.11.3.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.yf21x9/_old  2017-11-08 15:15:51.865496277 +0100
+++ /var/tmp/diff_new_pack.yf21x9/_new  2017-11-08 15:15:51.869496131 +0100
@@ -20,7 +20,7 @@
 
 %define kf5_version 5.26.0
 Name:   xdg-desktop-portal-kde
-Version:5.11.2
+Version:5.11.3
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1+

++ xdg-desktop-portal-kde-5.11.2.tar.xz -> 
xdg-desktop-portal-kde-5.11.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.11.2/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.11.3/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.11.2/CMakeLists.txt2017-10-24 
13:46:50.0 +0200
+++ new/xdg-desktop-portal-kde-5.11.3/CMakeLists.txt2017-11-07 
14:36:46.0 +0100
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.11.2")
+set(PROJECT_VERSION "5.11.3")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.11.2/po/pt_BR/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.11.3/po/pt_BR/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.11.2/po/pt_BR/xdg-desktop-portal-kde.po
2017-10-24 13:46:43.0 +0200
+++ new/xdg-desktop-portal-kde-5.11.3/po/pt_BR/xdg-desktop-portal-kde.po
2017-11-07 14:36:40.0 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2017-05-23 03:08+0200\n"
-"PO-Revision-Date: 2017-07-31 10:11-0300\n"
+"PO-Revision-Date: 2017-11-03 18:50-0300\n"
 "Last-Translator: Luiz Fernando Ranghetti \n"
 "Language-Team: Portuguese \n"
 "Language: pt_BR\n"
@@ -46,20 +46,20 @@
 #: src/appchooserdialog.cpp:66
 #, kde-format
 msgid "Select"
-msgstr ""
+msgstr "Selecionar"
 
 #: src/appchooserdialog.cpp:67
 #, kde-format
 msgid "Select application"
-msgstr ""
+msgstr "Selecionar aplicativo"
 
 #. i18n: ectx: property (text), widget (QLabel, searchLabel)
 #: src/appchooserdialog.ui:22
 #, kde-format
 msgid "Search"
-msgstr ""
+msgstr "Pesquisar"
 
 #: src/filechooser.cpp:159
 #, kde-format
 msgid "Open"
-msgstr ""
\ No newline at end of file
+msgstr "Abrir"
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.11.2/src/email.cpp 
new/xdg-desktop-portal-kde-5.11.3/src/email.cpp
--- old/xdg-desktop-portal-kde-5.11.2/src/email.cpp 2017-10-24 
13:46:17.0 +0200
+++ new/xdg-desktop-portal-kde-5.11.3/src/email.cpp 2017-11-07 
14:36:16.0 +0100
@@ -45,12 +45,16 @@
 qCDebug(XdgDesktopPortalKdeEmail) << "window: " << window;
 qCDebug(XdgDesktopPortalKdeEmail) << "options: " << options;
 
-// TODO attachements
-const QString mailtoUrl = 
QStringLiteral("mailto:%1?subject=%2=%3;).arg(options.value(QLatin1String("address")).toString())
-
.arg(options.value(QLatin1String("subject")).toString())
-
.arg(options.value(QLatin1String("body")).toString());
-qCDebug(XdgDesktopPortalKdeEmail) << "Mailto url: " << mailtoUrl;
+QString attachmentString;
+const QStringList attachments = 

commit xdg-desktop-portal-kde for openSUSE:Factory

2017-10-26 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2017-10-26 18:45:39

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Thu Oct 26 18:45:39 2017 rev:10 rq:536688 version:5.11.2

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2017-10-19 19:32:54.866693248 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2017-10-26 18:45:57.115560806 +0200
@@ -1,0 +2,10 @@
+Tue Oct 24 18:14:33 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.11.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.11.2.php
+- Changes since 5.11.1:
+  * None
+
+---

Old:

  xdg-desktop-portal-kde-5.11.1.tar.xz

New:

  xdg-desktop-portal-kde-5.11.2.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.Oj7kEl/_old  2017-10-26 18:45:58.083515627 +0200
+++ /var/tmp/diff_new_pack.Oj7kEl/_new  2017-10-26 18:45:58.087515441 +0200
@@ -20,7 +20,7 @@
 
 %define kf5_version 5.26.0
 Name:   xdg-desktop-portal-kde
-Version:5.11.1
+Version:5.11.2
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1+

++ xdg-desktop-portal-kde-5.11.1.tar.xz -> 
xdg-desktop-portal-kde-5.11.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.11.1/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.11.2/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.11.1/CMakeLists.txt2017-10-17 
13:38:16.0 +0200
+++ new/xdg-desktop-portal-kde-5.11.2/CMakeLists.txt2017-10-24 
13:46:50.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.11.1")
+set(PROJECT_VERSION "5.11.2")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.11.1/po/tr/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.11.2/po/tr/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.11.1/po/tr/xdg-desktop-portal-kde.po   
2017-10-17 13:38:12.0 +0200
+++ new/xdg-desktop-portal-kde-5.11.2/po/tr/xdg-desktop-portal-kde.po   
2017-10-24 13:46:48.0 +0200
@@ -8,8 +8,8 @@
 "Project-Id-Version: xdg-desktop-portal-kde\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2017-05-23 03:08+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME \n"
+"PO-Revision-Date: 2017-10-04 12:13+\n"
+"Last-Translator: Kaan \n"
 "Language-Team: Turkish \n"
 "Language: \n"
 "MIME-Version: 1.0\n"
@@ -20,20 +20,20 @@
 #: src/accessdialog.cpp:42
 #, kde-format
 msgid "Request device access"
-msgstr ""
+msgstr "Aygıta erişim iste"
 
 #. i18n: ectx: property (windowTitle), widget (QDialog, AppChooserDialog)
 #. i18n: ectx: property (windowTitle), widget (QDialog, AccessDialog)
 #: src/accessdialog.ui:20 src/appchooserdialog.ui:14
 #, kde-format
 msgid "Dialog"
-msgstr ""
+msgstr "Pencere"
 
 #. i18n: ectx: property (text), widget (QLabel, iconLabel)
 #: src/accessdialog.ui:26
 #, kde-format
 msgid "Icon"
-msgstr ""
+msgstr "Simge"
 
 #. i18n: ectx: property (text), widget (QLabel, titleLabel)
 #. i18n: ectx: property (text), widget (QLabel, subtitleLabel)
@@ -41,25 +41,25 @@
 #: src/accessdialog.ui:38 src/accessdialog.ui:51 src/accessdialog.ui:69
 #, kde-format
 msgid "TextLabel"
-msgstr ""
+msgstr "MetinEtiketi"
 
 #: src/appchooserdialog.cpp:66
 #, kde-format
 msgid "Select"
-msgstr ""
+msgstr "Seç"
 
 #: src/appchooserdialog.cpp:67
 #, kde-format
 msgid "Select application"
-msgstr ""
+msgstr "Uygulama seç"
 
 #. i18n: ectx: property (text), widget (QLabel, searchLabel)
 #: src/appchooserdialog.ui:22
 #, kde-format
 msgid "Search"
-msgstr ""
+msgstr "Ara"
 
 #: src/filechooser.cpp:159
 #, kde-format
 msgid "Open"
-msgstr ""
\ No newline at end of file
+msgstr "Aç"
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.11.1/po/zh_CN/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.11.2/po/zh_CN/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.11.1/po/zh_CN/xdg-desktop-portal-kde.po

commit xdg-desktop-portal-kde for openSUSE:Factory

2017-10-19 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2017-10-19 19:32:52

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Thu Oct 19 19:32:52 2017 rev:9 rq:534587 version:5.11.1

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2017-10-09 19:47:34.461289545 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2017-10-19 19:32:54.866693248 +0200
@@ -1,0 +2,10 @@
+Tue Oct 17 17:20:10 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.11.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.11.1.php
+- Changes since 5.11.0:
+  * None
+
+---

Old:

  xdg-desktop-portal-kde-5.11.0.tar.xz

New:

  xdg-desktop-portal-kde-5.11.1.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.BHdmxO/_old  2017-10-19 19:32:55.310672475 +0200
+++ /var/tmp/diff_new_pack.BHdmxO/_new  2017-10-19 19:32:55.314672288 +0200
@@ -20,13 +20,13 @@
 
 %define kf5_version 5.26.0
 Name:   xdg-desktop-portal-kde
-Version:5.11.0
+Version:5.11.1
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1+
 Group:  System/Libraries
 Url:http://www.kde.org
-Source: xdg-desktop-portal-kde-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
 BuildRequires:  extra-cmake-modules >= %{kf5_version}
 BuildRequires:  libQt5PrintSupport-private-headers-devel
 BuildRequires:  cmake(KF5CoreAddons) >= %{kf5_version}

++ xdg-desktop-portal-kde-5.11.0.tar.xz -> 
xdg-desktop-portal-kde-5.11.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.11.0/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.11.1/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.11.0/CMakeLists.txt2017-10-05 
14:58:21.0 +0200
+++ new/xdg-desktop-portal-kde-5.11.1/CMakeLists.txt2017-10-17 
13:38:16.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.11.0")
+set(PROJECT_VERSION "5.11.1")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #




commit xdg-desktop-portal-kde for openSUSE:Factory

2017-10-09 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2017-10-09 19:43:46

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Mon Oct  9 19:43:46 2017 rev:8 rq:532053 version:5.11.0

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2017-08-23 11:56:56.431754713 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2017-10-09 19:47:34.461289545 +0200
@@ -1,0 +2,29 @@
+Thu Oct  5 12:39:19 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.11.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.11.0.php
+- Changes since 5.10.95:
+  * None
+
+---
+Thu Sep 14 14:29:08 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10.95
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.10.95.php
+- Changes since 5.10.5:
+  * Use CMAKE_INSTALL_FULL_LIBEXECDIR
+  * Use CMAKE_INSTALL_FULL_LIBEXECDIR
+  * Add arcconfig
+  * Massively simplify the class DesktopPortal
+  * Add missing files
+  * Add Access portal for requesting hardware access
+  * Restore previous version
+  * Fix description
+  * Update AppChooser portal
+  * Fix minor issues spotted by Lamarque
+
+---

Old:

  xdg-desktop-portal-kde-5.10.5.tar.xz

New:

  xdg-desktop-portal-kde-5.11.0.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.Muml4F/_old  2017-10-09 19:47:34.881271086 +0200
+++ /var/tmp/diff_new_pack.Muml4F/_new  2017-10-09 19:47:34.885270910 +0200
@@ -20,13 +20,13 @@
 
 %define kf5_version 5.26.0
 Name:   xdg-desktop-portal-kde
-Version:5.10.5
+Version:5.11.0
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1+
 Group:  System/Libraries
 Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
+Source: xdg-desktop-portal-kde-%{version}.tar.xz
 BuildRequires:  extra-cmake-modules >= %{kf5_version}
 BuildRequires:  libQt5PrintSupport-private-headers-devel
 BuildRequires:  cmake(KF5CoreAddons) >= %{kf5_version}

++ xdg-desktop-portal-kde-5.10.5.tar.xz -> 
xdg-desktop-portal-kde-5.11.0.tar.xz ++
 3388 lines of diff (skipped)




commit xdg-desktop-portal-kde for openSUSE:Factory

2017-08-23 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2017-08-23 11:55:39

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Wed Aug 23 11:55:39 2017 rev:7 rq:518292 version:5.10.5

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2017-07-19 12:22:35.175005649 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2017-08-23 11:56:56.431754713 +0200
@@ -1,0 +2,10 @@
+Tue Aug 22 19:11:33 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.10.5.php
+- Changes since 5.10.4:
+  * None
+
+---

Old:

  xdg-desktop-portal-kde-5.10.4.tar.xz

New:

  xdg-desktop-portal-kde-5.10.5.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.VsI44V/_old  2017-08-23 11:56:57.235641551 +0200
+++ /var/tmp/diff_new_pack.VsI44V/_new  2017-08-23 11:56:57.259638173 +0200
@@ -20,7 +20,7 @@
 
 %define kf5_version 5.26.0
 Name:   xdg-desktop-portal-kde
-Version:5.10.4
+Version:5.10.5
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1+

++ xdg-desktop-portal-kde-5.10.4.tar.xz -> 
xdg-desktop-portal-kde-5.10.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.10.4/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.10.5/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.10.4/CMakeLists.txt2017-07-18 
13:54:59.0 +0200
+++ new/xdg-desktop-portal-kde-5.10.5/CMakeLists.txt2017-08-22 
17:44:28.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.10.4")
+set(PROJECT_VERSION "5.10.5")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.10.4/po/de/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.10.5/po/de/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.10.4/po/de/xdg-desktop-portal-kde.po   
1970-01-01 01:00:00.0 +0100
+++ new/xdg-desktop-portal-kde-5.10.5/po/de/xdg-desktop-portal-kde.po   
2017-08-22 17:44:11.0 +0200
@@ -0,0 +1,45 @@
+# Copyright (C) YEAR This_file_is_part_of_KDE
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Burkhard Lück , 2017.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n;
+"POT-Creation-Date: 2017-05-17 09:04+0200\n"
+"PO-Revision-Date: 2017-08-20 19:51+0100\n"
+"Last-Translator: Burkhard Lück \n"
+"Language-Team: German \n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: src/appchooserdialog.cpp:66
+#, kde-format
+msgid "Select"
+msgstr "Auswählen"
+
+#: src/appchooserdialog.cpp:67
+#, kde-format
+msgid "Select application"
+msgstr "Anwendung auswählen"
+
+#. i18n: ectx: property (windowTitle), widget (QDialog, AppChooserDialog)
+#: src/appchooserdialog.ui:14
+#, kde-format
+msgid "Dialog"
+msgstr "Dialog"
+
+#. i18n: ectx: property (text), widget (QLabel, searchLabel)
+#: src/appchooserdialog.ui:22
+#, kde-format
+msgid "Search"
+msgstr "Suchen"
+
+#: src/filechooser.cpp:159
+#, kde-format
+msgid "Open"
+msgstr "Öffnen"
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.10.4/po/it/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.10.5/po/it/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.10.4/po/it/xdg-desktop-portal-kde.po   
1970-01-01 01:00:00.0 +0100
+++ new/xdg-desktop-portal-kde-5.10.5/po/it/xdg-desktop-portal-kde.po   
2017-08-22 17:44:14.0 +0200
@@ -0,0 +1,45 @@
+# Copyright (C) YEAR This_file_is_part_of_KDE
+# This file is distributed under the same license as the 
xdg-desktop-portal-kde package.
+# Luigi Toscano , 2017.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n;
+"POT-Creation-Date: 2017-05-17 09:04+0200\n"

commit xdg-desktop-portal-kde for openSUSE:Factory

2017-07-19 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2017-07-19 11:23:14

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Wed Jul 19 11:23:14 2017 rev:6 rq:511296 version:5.10.4

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2017-06-28 10:38:03.116390588 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2017-07-19 12:22:35.175005649 +0200
@@ -1,0 +2,10 @@
+Tue Jul 18 16:14:53 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.10.4.php
+- Changes since 5.10.3:
+  * Use CMAKE_INSTALL_FULL_LIBEXECDIR
+
+---

Old:

  xdg-desktop-portal-kde-5.10.3.tar.xz

New:

  xdg-desktop-portal-kde-5.10.4.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.DRVBoz/_old  2017-07-19 12:22:35.606944698 +0200
+++ /var/tmp/diff_new_pack.DRVBoz/_new  2017-07-19 12:22:35.610944133 +0200
@@ -20,7 +20,7 @@
 
 %define kf5_version 5.26.0
 Name:   xdg-desktop-portal-kde
-Version:5.10.3
+Version:5.10.4
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1+

++ xdg-desktop-portal-kde-5.10.3.tar.xz -> 
xdg-desktop-portal-kde-5.10.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.10.3/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.10.4/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.10.3/CMakeLists.txt2017-06-27 
12:05:43.0 +0200
+++ new/xdg-desktop-portal-kde-5.10.4/CMakeLists.txt2017-07-18 
13:54:59.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.10.3")
+set(PROJECT_VERSION "5.10.4")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.10.3/data/org.freedesktop.impl.portal.desktop.kde.cmake.in
 
new/xdg-desktop-portal-kde-5.10.4/data/org.freedesktop.impl.portal.desktop.kde.cmake.in
--- 
old/xdg-desktop-portal-kde-5.10.3/data/org.freedesktop.impl.portal.desktop.kde.cmake.in
 2017-06-27 12:05:20.0 +0200
+++ 
new/xdg-desktop-portal-kde-5.10.4/data/org.freedesktop.impl.portal.desktop.kde.cmake.in
 2017-07-18 13:54:19.0 +0200
@@ -1,3 +1,3 @@
 [D-BUS Service]
 Name=org.freedesktop.impl.portal.desktop.kde
-Exec=@CMAKE_INSTALL_LIBEXECDIR@/xdg-desktop-portal-kde
+Exec=@CMAKE_INSTALL_FULL_LIBEXECDIR@/xdg-desktop-portal-kde
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.10.3/po/fr/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.10.4/po/fr/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.10.3/po/fr/xdg-desktop-portal-kde.po   
2017-06-27 12:05:32.0 +0200
+++ new/xdg-desktop-portal-kde-5.10.4/po/fr/xdg-desktop-portal-kde.po   
2017-07-18 13:54:44.0 +0200
@@ -1,17 +1,18 @@
+# Vincent Pinon , 2017.
 msgid ""
 msgstr ""
 "Project-Id-Version: xdg-desktop-portal-kde\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2017-05-17 09:04+0200\n"
-"PO-Revision-Date: 2017-05-11 08:12+0200\n"
-"Last-Translator: KDE Francophone \n"
-"Language-Team: KDE Francophone \n"
+"PO-Revision-Date: 2017-06-28 21:54+0100\n"
+"Last-Translator: Vincent Pinon \n"
+"Language-Team: French \n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
@@ -24,7 +25,7 @@
 #: src/appchooserdialog.cpp:67
 #, kde-format
 msgid "Select application"
-msgstr ""
+msgstr "Sélectionner une application"
 
 #. i18n: ectx: property (windowTitle), widget (QDialog, AppChooserDialog)
 #: src/appchooserdialog.ui:14
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.10.3/po/zh_CN/xdg-desktop-portal-kde.po 

commit xdg-desktop-portal-kde for openSUSE:Factory

2017-06-28 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2017-06-28 10:37:52

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Wed Jun 28 10:37:52 2017 rev:5 rq:506577 version:5.10.3

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2017-06-15 11:25:43.371668188 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2017-06-28 10:38:03.116390588 +0200
@@ -1,0 +2,10 @@
+Tue Jun 27 17:51:40 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.10.3.php
+- Changes since 5.10.2:
+  * None
+
+---

Old:

  xdg-desktop-portal-kde-5.10.2.tar.xz

New:

  xdg-desktop-portal-kde-5.10.3.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.Df5fU0/_old  2017-06-28 10:38:03.628318165 +0200
+++ /var/tmp/diff_new_pack.Df5fU0/_new  2017-06-28 10:38:03.632317599 +0200
@@ -20,7 +20,7 @@
 
 %define kf5_version 5.26.0
 Name:   xdg-desktop-portal-kde
-Version:5.10.2
+Version:5.10.3
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1+

++ xdg-desktop-portal-kde-5.10.2.tar.xz -> 
xdg-desktop-portal-kde-5.10.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.10.2/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.10.3/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.10.2/CMakeLists.txt2017-06-13 
21:02:37.0 +0200
+++ new/xdg-desktop-portal-kde-5.10.3/CMakeLists.txt2017-06-27 
12:05:43.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.10.2")
+set(PROJECT_VERSION "5.10.3")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.10.2/po/ja/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.10.3/po/ja/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.10.2/po/ja/xdg-desktop-portal-kde.po   
1970-01-01 01:00:00.0 +0100
+++ new/xdg-desktop-portal-kde-5.10.3/po/ja/xdg-desktop-portal-kde.po   
2017-06-27 12:05:34.0 +0200
@@ -0,0 +1,42 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: xdg-desktop-portal-kde\n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n;
+"POT-Creation-Date: 2017-05-17 09:04+0200\n"
+"PO-Revision-Date: 2017-04-27 19:03-0700\n"
+"Last-Translator: Japanese KDE translation team \n"
+"Language-Team: Japanese \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Accelerator-Marker: &\n"
+"X-Text-Markup: kde4\n"
+
+#: src/appchooserdialog.cpp:66
+#, kde-format
+msgid "Select"
+msgstr ""
+
+#: src/appchooserdialog.cpp:67
+#, kde-format
+msgid "Select application"
+msgstr ""
+
+#. i18n: ectx: property (windowTitle), widget (QDialog, AppChooserDialog)
+#: src/appchooserdialog.ui:14
+#, kde-format
+msgid "Dialog"
+msgstr ""
+
+#. i18n: ectx: property (text), widget (QLabel, searchLabel)
+#: src/appchooserdialog.ui:22
+#, kde-format
+msgid "Search"
+msgstr ""
+
+#: src/filechooser.cpp:159
+#, kde-format
+msgid "Open"
+msgstr ""
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.10.2/po/sl/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.10.3/po/sl/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.10.2/po/sl/xdg-desktop-portal-kde.po   
1970-01-01 01:00:00.0 +0100
+++ new/xdg-desktop-portal-kde-5.10.3/po/sl/xdg-desktop-portal-kde.po   
2017-06-27 12:05:39.0 +0200
@@ -0,0 +1,46 @@
+# Copyright (C) YEAR This_file_is_part_of_KDE
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Andrej Mernik , 2017.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n;
+"POT-Creation-Date: 2017-05-17 09:04+0200\n"
+"PO-Revision-Date: 2017-06-17 07:46+0100\n"
+"Last-Translator: Andrej Mernik \n"
+"Language-Team: Slovenian \n"
+"Language: sl\n"
+"MIME-Version: 1.0\n"

commit xdg-desktop-portal-kde for openSUSE:Factory

2017-06-15 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2017-06-15 11:25:04

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Thu Jun 15 11:25:04 2017 rev:4 rq:503606 version:5.10.2

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2017-06-07 09:57:16.582972134 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2017-06-15 11:25:43.371668188 +0200
@@ -1,0 +2,10 @@
+Tue Jun 13 21:35:02 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.10.2.php
+- Changes since 5.10.1:
+  * None
+
+---

Old:

  xdg-desktop-portal-kde-5.10.1.tar.xz

New:

  xdg-desktop-portal-kde-5.10.2.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.9YV8eq/_old  2017-06-15 11:25:43.955585760 +0200
+++ /var/tmp/diff_new_pack.9YV8eq/_new  2017-06-15 11:25:43.959585196 +0200
@@ -20,7 +20,7 @@
 
 %define kf5_version 5.26.0
 Name:   xdg-desktop-portal-kde
-Version:5.10.1
+Version:5.10.2
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1+

++ xdg-desktop-portal-kde-5.10.1.tar.xz -> 
xdg-desktop-portal-kde-5.10.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.10.1/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.10.2/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.10.1/CMakeLists.txt2017-06-06 
18:58:57.0 +0200
+++ new/xdg-desktop-portal-kde-5.10.2/CMakeLists.txt2017-06-13 
21:02:37.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.10.1")
+set(PROJECT_VERSION "5.10.2")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.10.1/po/fi/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.10.2/po/fi/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.10.1/po/fi/xdg-desktop-portal-kde.po   
1970-01-01 01:00:00.0 +0100
+++ new/xdg-desktop-portal-kde-5.10.2/po/fi/xdg-desktop-portal-kde.po   
2017-06-13 21:02:14.0 +0200
@@ -0,0 +1,45 @@
+# Copyright (C) YEAR This_file_is_part_of_KDE
+# This file is distributed under the same license as the PACKAGE package.
+# Tommi Nieminen , 2017.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n;
+"POT-Creation-Date: 2017-05-17 09:04+0200\n"
+"PO-Revision-Date: 2017-06-08 21:34+0200\n"
+"Last-Translator: Tommi Nieminen \n"
+"Language-Team: Finnish \n"
+"Language: fi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: src/appchooserdialog.cpp:66
+#, kde-format
+msgid "Select"
+msgstr "Valitse"
+
+#: src/appchooserdialog.cpp:67
+#, kde-format
+msgid "Select application"
+msgstr "Valitse sovellus"
+
+#. i18n: ectx: property (windowTitle), widget (QDialog, AppChooserDialog)
+#: src/appchooserdialog.ui:14
+#, kde-format
+msgid "Dialog"
+msgstr "Valintaikkuna"
+
+#. i18n: ectx: property (text), widget (QLabel, searchLabel)
+#: src/appchooserdialog.ui:22
+#, kde-format
+msgid "Search"
+msgstr "Etsi"
+
+#: src/filechooser.cpp:159
+#, kde-format
+msgid "Open"
+msgstr "Avaa"
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.10.1/po/fr/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.10.2/po/fr/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.10.1/po/fr/xdg-desktop-portal-kde.po   
1970-01-01 01:00:00.0 +0100
+++ new/xdg-desktop-portal-kde-5.10.2/po/fr/xdg-desktop-portal-kde.po   
2017-06-13 21:02:14.0 +0200
@@ -0,0 +1,44 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: xdg-desktop-portal-kde\n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n;
+"POT-Creation-Date: 2017-05-17 09:04+0200\n"
+"PO-Revision-Date: 2017-05-11 08:12+0200\n"
+"Last-Translator: KDE Francophone \n"
+"Language-Team: KDE Francophone 

commit xdg-desktop-portal-kde for openSUSE:Factory

2017-06-07 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2017-06-07 09:56:17

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Wed Jun  7 09:56:17 2017 rev:3 rq:501509 version:5.10.1

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2017-05-29 22:31:48.640955602 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2017-06-07 09:57:16.582972134 +0200
@@ -1,0 +2,15 @@
+Tue Jun  6 17:19:57 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.10.1.php
+- Changes since 5.10.0:
+  * Add missing files
+  * Add Access portal for requesting hardware access
+  * Restore previous version
+  * Fix description
+  * Update AppChooser portal
+  * Fix minor issues spotted by Lamarque
+
+---

Old:

  xdg-desktop-portal-kde-5.10.0.tar.xz

New:

  xdg-desktop-portal-kde-5.10.1.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.ELjKmz/_old  2017-06-07 09:57:17.650821234 +0200
+++ /var/tmp/diff_new_pack.ELjKmz/_new  2017-06-07 09:57:17.654820670 +0200
@@ -20,13 +20,13 @@
 
 %define kf5_version 5.26.0
 Name:   xdg-desktop-portal-kde
-Version:5.10.0
+Version:5.10.1
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1+
 Group:  System/Libraries
 Url:http://www.kde.org
-Source: xdg-desktop-portal-kde-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
 BuildRequires:  extra-cmake-modules >= %{kf5_version}
 BuildRequires:  libQt5PrintSupport-private-headers-devel
 BuildRequires:  cmake(KF5CoreAddons) >= %{kf5_version}

++ xdg-desktop-portal-kde-5.10.0.tar.xz -> 
xdg-desktop-portal-kde-5.10.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.10.0/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.10.1/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.10.0/CMakeLists.txt2017-05-26 
11:28:08.0 +0200
+++ new/xdg-desktop-portal-kde-5.10.1/CMakeLists.txt2017-06-06 
18:58:57.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.10.90")
+set(PROJECT_VERSION "5.10.1")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.10.0/data/kde.portal 
new/xdg-desktop-portal-kde-5.10.1/data/kde.portal
--- old/xdg-desktop-portal-kde-5.10.0/data/kde.portal   2017-05-26 
11:27:38.0 +0200
+++ new/xdg-desktop-portal-kde-5.10.1/data/kde.portal   2017-06-06 
18:58:25.0 +0200
@@ -1,4 +1,4 @@
 [portal]
 DBusName=org.freedesktop.impl.portal.desktop.kde
-Interfaces=org.freedesktop.impl.portal.Access;org.freedesktop.impl.portal.AppChooser;org.freedesktop.impl.portal.Email;org.freedesktop.impl.portal.FileChooser;org.freedesktop.impl.portal.Inhibit;org.freedesktop.impl.portal.Notification;org.freedesktop.impl.portal.Print
+Interfaces=org.freedesktop.impl.portal.AppChooser;org.freedesktop.impl.portal.Email;org.freedesktop.impl.portal.FileChooser;org.freedesktop.impl.portal.Inhibit;org.freedesktop.impl.portal.Notification;org.freedesktop.impl.portal.Print
 UseIn=KDE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.10.0/po/da/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.10.1/po/da/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.10.0/po/da/xdg-desktop-portal-kde.po   
1970-01-01 01:00:00.0 +0100
+++ new/xdg-desktop-portal-kde-5.10.1/po/da/xdg-desktop-portal-kde.po   
2017-06-06 18:58:40.0 +0200
@@ -0,0 +1,45 @@
+# Copyright (C) YEAR This_file_is_part_of_KDE
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Martin Schlander , 2017.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n;
+"POT-Creation-Date: 2017-05-17 09:04+0200\n"
+"PO-Revision-Date: 2017-05-30 22:09+0100\n"
+"Last-Translator: Martin Schlander \n"
+"Language-Team: Danish \n"

commit xdg-desktop-portal-kde for openSUSE:Factory

2017-05-29 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2017-05-29 22:31:47

Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-kde (Old)
 and  /work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new (New)


Package is "xdg-desktop-portal-kde"

Mon May 29 22:31:47 2017 rev:2 rq:498826 version:5.10.0

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2017-05-17 10:54:37.876488436 +0200
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2017-05-29 22:31:48.640955602 +0200
@@ -1,0 +2,22 @@
+Fri May 26 14:10:35 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.10.0.php
+- Changes since 5.9.95:
+  * Restore previous version
+  * Fix interface name
+  * Add email portal
+  * Fix logging category name
+  * Remove unused variable
+  * Add support for inhibit portal
+  * Fix description
+  * Update AppChooser portal
+  * Fix minor issues spotted by Lamarque
+  * Fix description
+  * Update AppChooser portal
+  * Fix minor issues spotted by Lamarque
+  * Set version to be identical with Plasma
+
+---

Old:

  xdg-desktop-portal-kde-5.9.95.tar.xz

New:

  xdg-desktop-portal-kde-5.10.0.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.aXhlK1/_old  2017-05-29 22:31:49.408847165 +0200
+++ /var/tmp/diff_new_pack.aXhlK1/_new  2017-05-29 22:31:49.412846600 +0200
@@ -15,11 +15,12 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %bcond_without lang
 
 %define kf5_version 5.26.0
 Name:   xdg-desktop-portal-kde
-Version:5.9.95
+Version:5.10.0
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1+
@@ -27,14 +28,14 @@
 Url:http://www.kde.org
 Source: xdg-desktop-portal-kde-%{version}.tar.xz
 BuildRequires:  extra-cmake-modules >= %{kf5_version}
-BuildRequires:  cmake(Qt5Core) >= 5.4.0
-BuildRequires:  cmake(Qt5DBus)
-BuildRequires:  cmake(Qt5PrintSupport)
-BuildRequires:  cmake(Qt5Widgets)
 BuildRequires:  libQt5PrintSupport-private-headers-devel
 BuildRequires:  cmake(KF5CoreAddons) >= %{kf5_version}
 BuildRequires:  cmake(KF5I18n) >= %{kf5_version}
 BuildRequires:  cmake(KF5Notifications) >= %{kf5_version}
+BuildRequires:  cmake(Qt5Core) >= 5.4.0
+BuildRequires:  cmake(Qt5DBus)
+BuildRequires:  cmake(Qt5PrintSupport)
+BuildRequires:  cmake(Qt5Widgets)
 Requires:   xdg-desktop-portal
 Recommends: %{name}-lang
 Supplements:packageand(xdg-desktop-portal:plasma5-desktop)

++ xdg-desktop-portal-kde-5.9.95.tar.xz -> 
xdg-desktop-portal-kde-5.10.0.tar.xz ++
 1923 lines of diff (skipped)