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.txt    2018-07-31 
15:04:53.000000000 +0200
+++ new/xdg-desktop-portal-kde-5.13.5/CMakeLists.txt    2018-09-04 
12:27:04.000000000 +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.000000000 +0200
+++ new/xdg-desktop-portal-kde-5.13.5/cmake/modules/FindPipeWire.cmake  
2018-09-04 12:26:42.000000000 +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.000000000 +0200
+++ new/xdg-desktop-portal-kde-5.13.5/cmake/modules/FindSPA.cmake       
1970-01-01 01:00:00.000000000 +0100
@@ -1,109 +0,0 @@
-#.rst:
-# FindSPA
-# -------
-#
-# Try to find the Simple Plugin API (SPA) on a Unix system.
-#
-# This will define the following variables:
-#
-# ``SPA_FOUND``
-#     True if (the requested version of) SPA is available
-# ``SPA_VERSION``
-#     The version of SPA
-# ``SPA_LIBRARIES``
-#     This can be passed to target_link_libraries() instead of the ``SPA::SPA``
-#     target
-# ``SPA_INCLUDE_DIRSS``
-#     This should be passed to target_include_directories() if the target is 
not
-#     used for linking
-# ``SPA_DEFINITIONS``
-#     This should be passed to target_compile_options() if the target is not
-#     used for linking
-#
-# If ``SPA_FOUND`` is TRUE, it will also define the following imported target:
-#
-# ``SPA::SPA``
-#     The SPA library
-#
-# In general we recommend using the imported target, as it is easier to use.
-# Bear in mind, however, that if the target is in the link interface of an
-# exported library, it must be made available by the package config file.
-
-#=============================================================================
-# Copyright 2014 Alex Merry <alex.me...@kde.org>
-# Copyright 2014 Martin Gräßlin <mgraess...@kde.org>
-# Copyright 2018 Jan Grulich <jgrul...@redhat.com>
-
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1. Redistributions of source code must retain the copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-# 3. The name of the author may not be used to endorse or promote products
-#    derived from this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
-# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
-# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
-# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
-# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
-# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#=============================================================================
-
-
-# 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_SPA QUIET libspa-0.1)
-
-set(SPA_DEFINITIONS "${PKG_SPA_CFLAGS_OTHER}")
-set(SPA_VERSION "${PKG_SPA_VERSION}")
-
-find_path(SPA_INCLUDE_DIRS
-    NAMES
-        spa/pod/pod.h
-    HINTS
-        ${PKG_SPA_INCLUDE_DIRS}
-)
-
-find_library(SPA_LIBRARIES
-    NAMES
-        spa-lib
-    HINTS
-        ${PKG_SPA_LIBRARIES_DIRS}
-)
-
-include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(SPA
-    FOUND_VAR
-        SPA_FOUND
-    REQUIRED_VARS
-        SPA_LIBRARIES
-        SPA_INCLUDE_DIRS
-    VERSION_VAR
-        SPA_VERSION
-)
-
-if(SPA_FOUND AND NOT TARGET SPA::SPA)
-    add_library(SPA::SPA UNKNOWN IMPORTED)
-    set_target_properties(SPA::SPA PROPERTIES
-        IMPORTED_LOCATION "${SPA_LIBRARIES}"
-        INTERFACE_COMPILE_OPTIONS "${SPA_DEFINITIONS}"
-        INTERFACE_INCLUDE_DIRECTORIES "${SPA_INCLUDE_DIRS}"
-    )
-endif()
-
-mark_as_advanced(SPA_LIBRARIES SPA_INCLUDE_DIRS)
-
-include(FeatureSummary)
-set_package_properties(SPA PROPERTIES
-    DESCRIPTION "Simple Plugin API"
-)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.13.4/po/de/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.13.5/po/de/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.13.4/po/de/xdg-desktop-portal-kde.po   
2018-07-31 15:04:36.000000000 +0200
+++ new/xdg-desktop-portal-kde-5.13.5/po/de/xdg-desktop-portal-kde.po   
2018-09-04 12:26:53.000000000 +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-06-25 06:17+0100\n"
+"PO-Revision-Date: 2018-08-27 17:02+0100\n"
 "Last-Translator: Burkhard Lück <lu...@hube-lueck.de>\n"
 "Language-Team: German <kde-i18n...@kde.org>\n"
 "Language: de\n"
@@ -52,6 +52,9 @@
 "href=#discover><span style=\"text-decoration: underline\">Discover</span></"
 "a>."
 msgstr ""
+"Wählen Sie eine Anwendung zum Öffnen von „%1“. Weitere Anwendungen finden "
+"Sie in <a href=#discover><span style=\"text-decoration: underline"
+"\">Discover</span></a>."
 
 #: src/appchooserdialog.cpp:105
 #, kde-format
@@ -69,6 +72,8 @@
 "Laptop screen\n"
 "Model: %1"
 msgstr ""
+"Laptop-Bildschirm\n"
+"Modell: %1"
 
 #: src/screenchooserdialog.cpp:48 src/screenchooserdialog.cpp:51
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.13.4/po/ko/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.13.5/po/ko/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.13.4/po/ko/xdg-desktop-portal-kde.po   
2018-07-31 15:04:43.000000000 +0200
+++ new/xdg-desktop-portal-kde-5.13.5/po/ko/xdg-desktop-portal-kde.po   
2018-09-04 12:26:58.000000000 +0200
@@ -1,15 +1,15 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
-# Shinjo Park <k...@peremen.name>, 2017.
+# Shinjo Park <k...@peremen.name>, 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-12-03 00:15+0100\n"
+"PO-Revision-Date: 2018-08-14 15:04+0100\n"
 "Last-Translator: Shinjo Park <k...@peremen.name>\n"
-"Language-Team: Korean <k...@peremen.name>\n"
+"Language-Team: Korean <kde-i18n-...@kde.org>\n"
 "Language: ko\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -52,12 +52,14 @@
 "href=#discover><span style=\"text-decoration: underline\">Discover</span></"
 "a>."
 msgstr ""
+"\"%1\"을(를) 열 프로그램을 선택하십시오. <a href=#discover><span style="
+"\"text-decoration: underline\">발견</span></a> 프로그램에서 더 많은 프로그램"
+"을 찾을 수 있습니다."
 
 #: src/appchooserdialog.cpp:105
-#, fuzzy, kde-format
-#| msgid "Open"
+#, kde-format
 msgid "Open with"
-msgstr "열기"
+msgstr "다음으로 열기"
 
 #: src/filechooser.cpp:159
 #, kde-format
@@ -70,6 +72,8 @@
 "Laptop screen\n"
 "Model: %1"
 msgstr ""
+"노트북 화면\n"
+"모델: %1"
 
 #: src/screenchooserdialog.cpp:48 src/screenchooserdialog.cpp:51
 #, kde-format
@@ -77,85 +81,86 @@
 "Manufacturer: %1\n"
 "Model: %2"
 msgstr ""
+"제조사: %1\n"
+"모델: %2"
 
 #: src/screenchooserdialog.cpp:65
 #, kde-format
 msgid "Share"
-msgstr ""
+msgstr "공유"
 
 #: src/screenchooserdialog.cpp:66
 #, kde-format
 msgid "Select screen to share"
-msgstr ""
+msgstr "공유할 화면 선택"
 
 #: src/screenshotdialog.cpp:95
-#, fuzzy, kde-format
-#| msgid "Request device access"
+#, kde-format
 msgid "Request screenshot"
-msgstr "장치 접근 요청"
+msgstr "스크린샷 요청"
 
 #. i18n: ectx: property (text), widget (QLabel, label)
 #: src/screenshotdialog.ui:26
 #, kde-format
 msgid "<b>Capture Mode</b>"
-msgstr ""
+msgstr "<b>캡처 모드</b>"
 
 #. i18n: ectx: property (text), widget (QLabel, label_3)
 #: src/screenshotdialog.ui:41
 #, kde-format
 msgid "Area:"
-msgstr ""
+msgstr "영역:"
 
 #. i18n: ectx: property (text), item, widget (QComboBox, areaComboBox)
 #: src/screenshotdialog.ui:58
 #, kde-format
 msgid "Full Screen (All Monitors)"
-msgstr ""
+msgstr "전체 화면(모든 모니터)"
 
 #. i18n: ectx: property (text), item, widget (QComboBox, areaComboBox)
 #: src/screenshotdialog.ui:63
 #, kde-format
 msgid "Current Screen"
-msgstr ""
+msgstr "현재 화면"
 
 #. i18n: ectx: property (text), item, widget (QComboBox, areaComboBox)
 #: src/screenshotdialog.ui:68
 #, kde-format
 msgid "Active Window"
-msgstr ""
+msgstr "활성 창"
 
 #. i18n: ectx: property (text), widget (QLabel, label_4)
 #: src/screenshotdialog.ui:82
 #, kde-format
 msgid "Delay:"
-msgstr ""
+msgstr "지연 시간:"
 
 #. i18n: ectx: property (specialValueText), widget (QSpinBox, delaySpinBox)
 #: src/screenshotdialog.ui:98
 #, kde-format
 msgid "No Delay"
-msgstr ""
+msgstr "지연 없음"
 
 #. i18n: ectx: property (text), widget (QLabel, label_2)
 #: src/screenshotdialog.ui:110
 #, kde-format
 msgid "<b>Content Options</b>"
-msgstr ""
+msgstr "<b>내용 옵션</b>"
 
 #. i18n: ectx: property (text), widget (QCheckBox, includeCursorCheckbox)
 #: src/screenshotdialog.ui:117
 #, kde-format
 msgid "Include mouse pointer"
-msgstr ""
+msgstr "마우스 포인터 포함"
 
 #. i18n: ectx: property (text), widget (QCheckBox, includeBordersCheckbox)
 #: src/screenshotdialog.ui:127
 #, kde-format
 msgid "Include window borders"
-msgstr ""
+msgstr "창 경계선 포함"
 
 #. i18n: ectx: property (text), widget (QPushButton, takeScreenshotButton)
 #: src/screenshotdialog.ui:164
 #, kde-format
 msgid "Take screenshot"
-msgstr ""
\ No newline at end of file
+msgstr "스크린샷 찍기"
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.13.4/po/sk/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.13.5/po/sk/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.13.4/po/sk/xdg-desktop-portal-kde.po   
2018-07-31 15:04:48.000000000 +0200
+++ new/xdg-desktop-portal-kde-5.13.5/po/sk/xdg-desktop-portal-kde.po   
2018-09-04 12:27:01.000000000 +0200
@@ -1,13 +1,14 @@
 # translation of xdg-desktop-portal-kde.po to Slovak
 # Roman Paholik <wizzar...@gmail.com>, 2017.
+# Mthw <jari...@hotmail.com>, 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: 2017-07-02 11:10+0100\n"
-"Last-Translator: Roman Paholik <wizzar...@gmail.com>\n"
-"Language-Team: Slovak <kde...@linux.sk>\n"
+"PO-Revision-Date: 2018-09-02 19:58+0100\n"
+"Last-Translator: Mthw <jari...@hotmail.com>\n"
+"Language-Team: Slovak <kde-i18n-...@kde.org>\n"
 "Language: sk\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -50,12 +51,13 @@
 "href=#discover><span style=\"text-decoration: underline\">Discover</span></"
 "a>."
 msgstr ""
+"Vybrať aplikáciu na otvorenie \"%1\". Ostatné aplikácie dostupné na  <a "
+"href=#discover><span style=\"text-decoration: underline\">Objaviť</span></a>."
 
 #: src/appchooserdialog.cpp:105
-#, fuzzy, kde-format
-#| msgid "Open"
+#, kde-format
 msgid "Open with"
-msgstr "Otvoriť"
+msgstr "Otvoriť s"
 
 #: src/filechooser.cpp:159
 #, kde-format
@@ -68,6 +70,8 @@
 "Laptop screen\n"
 "Model: %1"
 msgstr ""
+"Obrazovka notebooku\n"
+"Model: %1"
 
 #: src/screenchooserdialog.cpp:48 src/screenchooserdialog.cpp:51
 #, kde-format
@@ -75,85 +79,86 @@
 "Manufacturer: %1\n"
 "Model: %2"
 msgstr ""
+"Výrobca: %1\n"
+"Model: %2"
 
 #: src/screenchooserdialog.cpp:65
 #, kde-format
 msgid "Share"
-msgstr ""
+msgstr "Zdieľať"
 
 #: src/screenchooserdialog.cpp:66
 #, kde-format
 msgid "Select screen to share"
-msgstr ""
+msgstr "Vybrať obrazovku na zdieľanie"
 
 #: src/screenshotdialog.cpp:95
-#, fuzzy, kde-format
-#| msgid "Request device access"
+#, kde-format
 msgid "Request screenshot"
-msgstr "Vyžiadať prístup zariadenia"
+msgstr "Vyžiadať snímku obrazovky"
 
 #. i18n: ectx: property (text), widget (QLabel, label)
 #: src/screenshotdialog.ui:26
 #, kde-format
 msgid "<b>Capture Mode</b>"
-msgstr ""
+msgstr "<b>Režim Zaznamenavánia</b>"
 
 #. i18n: ectx: property (text), widget (QLabel, label_3)
 #: src/screenshotdialog.ui:41
 #, kde-format
 msgid "Area:"
-msgstr ""
+msgstr "Oblasť:"
 
 #. i18n: ectx: property (text), item, widget (QComboBox, areaComboBox)
 #: src/screenshotdialog.ui:58
 #, kde-format
 msgid "Full Screen (All Monitors)"
-msgstr ""
+msgstr "Celá obrazovka"
 
 #. i18n: ectx: property (text), item, widget (QComboBox, areaComboBox)
 #: src/screenshotdialog.ui:63
 #, kde-format
 msgid "Current Screen"
-msgstr ""
+msgstr "Aktuálna obrazovka"
 
 #. i18n: ectx: property (text), item, widget (QComboBox, areaComboBox)
 #: src/screenshotdialog.ui:68
 #, kde-format
 msgid "Active Window"
-msgstr ""
+msgstr "Aktívne okno"
 
 #. i18n: ectx: property (text), widget (QLabel, label_4)
 #: src/screenshotdialog.ui:82
 #, kde-format
 msgid "Delay:"
-msgstr ""
+msgstr "Oneskorenie:"
 
 #. i18n: ectx: property (specialValueText), widget (QSpinBox, delaySpinBox)
 #: src/screenshotdialog.ui:98
 #, kde-format
 msgid "No Delay"
-msgstr ""
+msgstr "Bez oneskorenia"
 
 #. i18n: ectx: property (text), widget (QLabel, label_2)
 #: src/screenshotdialog.ui:110
 #, kde-format
 msgid "<b>Content Options</b>"
-msgstr ""
+msgstr "<b>Nastavenia obsahu</b>"
 
 #. i18n: ectx: property (text), widget (QCheckBox, includeCursorCheckbox)
 #: src/screenshotdialog.ui:117
 #, kde-format
 msgid "Include mouse pointer"
-msgstr ""
+msgstr "Zahrnúť ukazovateľ myši"
 
 #. i18n: ectx: property (text), widget (QCheckBox, includeBordersCheckbox)
 #: src/screenshotdialog.ui:127
 #, kde-format
 msgid "Include window borders"
-msgstr ""
+msgstr "Zahrnúť okraje okna"
 
 #. i18n: ectx: property (text), widget (QPushButton, takeScreenshotButton)
 #: src/screenshotdialog.ui:164
 #, kde-format
 msgid "Take screenshot"
-msgstr ""
\ No newline at end of file
+msgstr "Spraviť snímku obrazovky"
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.13.4/po/zh_CN/xdg-desktop-portal-kde.po 
new/xdg-desktop-portal-kde-5.13.5/po/zh_CN/xdg-desktop-portal-kde.po
--- old/xdg-desktop-portal-kde-5.13.4/po/zh_CN/xdg-desktop-portal-kde.po        
2018-07-31 15:04:53.000000000 +0200
+++ new/xdg-desktop-portal-kde-5.13.5/po/zh_CN/xdg-desktop-portal-kde.po        
2018-09-04 12:27:04.000000000 +0200
@@ -3,8 +3,8 @@
 "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-07-24 08:45\n"
-"Last-Translator: guoyunhebrave <guoyunhebr...@gmail.com>\n"
+"PO-Revision-Date: 2018-08-30 13:15\n"
+"Last-Translator: guoyunhebrave <yunhe....@protonmail.com>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.13.4/src/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.13.5/src/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.13.4/src/CMakeLists.txt        2018-07-31 
15:04:22.000000000 +0200
+++ new/xdg-desktop-portal-kde-5.13.5/src/CMakeLists.txt        2018-09-04 
12:26:42.000000000 +0200
@@ -54,7 +54,6 @@
 if (SCREENCAST_ENABLED)
     target_link_libraries(xdg-desktop-portal-kde
                           PipeWire::PipeWire
-                          SPA::SPA
                           GLIB2::GLIB2
                           ${Epoxy_LIBRARIES}
                           GBM::GBM)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xdg-desktop-portal-kde-5.13.4/src/screencaststream.cpp 
new/xdg-desktop-portal-kde-5.13.5/src/screencaststream.cpp
--- old/xdg-desktop-portal-kde-5.13.4/src/screencaststream.cpp  2018-07-31 
15:04:22.000000000 +0200
+++ new/xdg-desktop-portal-kde-5.13.5/src/screencaststream.cpp  2018-09-04 
12:26:42.000000000 +0200
@@ -303,8 +303,6 @@
     pwCoreType = pw_core_get_type(pwCore);
     pwRemote = pw_remote_new(pwCore, nullptr, 0);
 
-    spa_debug_set_type_map(pwCoreType->map);
-
     initializePwTypes();
 
     pw_remote_add_listener(pwRemote, &remoteListener, &pwRemoteEvents, this);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.13.4/src/screencaststream.h 
new/xdg-desktop-portal-kde-5.13.5/src/screencaststream.h
--- old/xdg-desktop-portal-kde-5.13.4/src/screencaststream.h    2018-07-31 
15:04:22.000000000 +0200
+++ new/xdg-desktop-portal-kde-5.13.5/src/screencaststream.h    2018-09-04 
12:26:42.000000000 +0200
@@ -32,8 +32,6 @@
 #include <spa/param/video/raw-utils.h>
 #include <spa/param/props.h>
 
-#include <spa/lib/debug.h>
-
 #include <pipewire/factory.h>
 #include <pipewire/pipewire.h>
 #include <pipewire/remote.h>


Reply via email to