Hello community,

here is the log from the commit of package krfb for openSUSE:Factory checked in 
at 2020-03-12 23:03:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/krfb (Old)
 and      /work/SRC/openSUSE:Factory/.krfb.new.3160 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "krfb"

Thu Mar 12 23:03:49 2020 rev:89 rq:782443 version:19.12.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/krfb/krfb.changes        2020-02-11 
22:20:48.551416491 +0100
+++ /work/SRC/openSUSE:Factory/.krfb.new.3160/krfb.changes      2020-03-12 
23:05:48.659170079 +0100
@@ -1,0 +2,10 @@
+Thu Mar  5 20:36:27 UTC 2020 - Luca Beltrame <lbeltr...@kde.org>
+
+- Update to 19.12.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/releases/19.12.3
+- Changes since 19.12.2:
+  * PW framebuffer: send correct type over DBus
+
+-------------------------------------------------------------------

Old:
----
  krfb-19.12.2.tar.xz
  krfb-19.12.2.tar.xz.sig

New:
----
  krfb-19.12.3.tar.xz
  krfb-19.12.3.tar.xz.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ krfb.spec ++++++
--- /var/tmp/diff_new_pack.eQswgA/_old  2020-03-12 23:05:49.339170348 +0100
+++ /var/tmp/diff_new_pack.eQswgA/_new  2020-03-12 23:05:49.367170359 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:           krfb
-Version:        19.12.2
+Version:        19.12.3
 Release:        0
 Summary:        Screen sharing using the VNC/RFB protocol
 License:        GPL-2.0-or-later


++++++ krfb-19.12.2.tar.xz -> krfb-19.12.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krfb-19.12.2/CMakeLists.txt 
new/krfb-19.12.3/CMakeLists.txt
--- old/krfb-19.12.2/CMakeLists.txt     2020-02-04 02:23:06.000000000 +0100
+++ new/krfb-19.12.3/CMakeLists.txt     2020-03-03 01:29:39.000000000 +0100
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (KDE_APPLICATIONS_VERSION_MAJOR "19")
 set (KDE_APPLICATIONS_VERSION_MINOR "12")
-set (KDE_APPLICATIONS_VERSION_MICRO "2")
+set (KDE_APPLICATIONS_VERSION_MICRO "3")
 set (KDE_APPLICATIONS_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
 
 project(krfb VERSION ${KDE_APPLICATIONS_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/krfb-19.12.2/framebuffers/pipewire/pw_framebuffer.cpp 
new/krfb-19.12.3/framebuffers/pipewire/pw_framebuffer.cpp
--- old/krfb-19.12.2/framebuffers/pipewire/pw_framebuffer.cpp   2020-02-04 
00:29:19.000000000 +0100
+++ new/krfb-19.12.3/framebuffers/pipewire/pw_framebuffer.cpp   2020-03-01 
10:49:41.000000000 +0100
@@ -260,7 +260,7 @@
     // select sources for the session
     auto selectionOptions = QVariantMap {
         // We have to specify it's an uint, otherwise xdg-desktop-portal will 
not forward it to backend implementation
-        { QLatin1String("types"),QVariant::fromValue<uint>(7) }, // request 
all (KeyBoard, Pointer, TouchScreen)
+        { QLatin1String("types"), QVariant::fromValue<uint>(7) }, // request 
all (KeyBoard, Pointer, TouchScreen)
 #if (QT_VERSION >= QT_VERSION_CHECK(5, 10, 0))
         { QLatin1String("handle_token"), 
QStringLiteral("krfb%1").arg(QRandomGenerator::global()->generate()) }
 #else
@@ -304,7 +304,7 @@
 
     // select sources for the session
     auto selectionOptions = QVariantMap {
-        { QLatin1String("types"), 1 }, // only MONITOR is supported
+        { QLatin1String("types"), QVariant::fromValue<uint>(1) }, // only 
MONITOR is supported
         { QLatin1String("multiple"), false },
 #if (QT_VERSION >= QT_VERSION_CHECK(5, 10, 0))
         { QLatin1String("handle_token"), 
QStringLiteral("krfb%1").arg(QRandomGenerator::global()->generate()) }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krfb-19.12.2/krfb/org.kde.krfb.appdata.xml 
new/krfb-19.12.3/krfb/org.kde.krfb.appdata.xml
--- old/krfb-19.12.2/krfb/org.kde.krfb.appdata.xml      2020-02-04 
00:29:19.000000000 +0100
+++ new/krfb-19.12.3/krfb/org.kde.krfb.appdata.xml      2020-03-01 
10:49:41.000000000 +0100
@@ -150,6 +150,7 @@
   </provides>
   <project_group>KDE</project_group>
   <releases>
+    <release version="19.12.3" date="2020-03-05"/>
     <release version="19.12.2" date="2020-02-06"/>
     <release version="19.12.1" date="2020-01-09"/>
     <release version="19.12.0" date="2019-12-12"/>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krfb-19.12.2/po/ca/krfb.po 
new/krfb-19.12.3/po/ca/krfb.po
--- old/krfb-19.12.2/po/ca/krfb.po      2020-02-04 02:20:50.000000000 +0100
+++ new/krfb-19.12.3/po/ca/krfb.po      2020-03-03 01:29:35.000000000 +0100
@@ -1,9 +1,9 @@
 # Translation of krfb.po to Catalan
-# Copyright (C) 2003-2019 This_file_is_part_of_KDE
+# Copyright (C) 2003-2020 This_file_is_part_of_KDE
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
-# Antoni Bella Pérez <antonibel...@yahoo.com>, 2003, 2012, 2015, 2017.
+# Antoni Bella Pérez <antonibel...@yahoo.com>, 2003, 2012, 2015, 2017, 2020.
 # Albert Astals Cid <aa...@kde.org>, 2004, 2005.
 # Josep Ma. Ferrer <txe...@gmail.com>, 2007, 2008, 2009, 2010, 2011, 2013, 
2014, 2015, 2016, 2019.
 msgid ""
@@ -11,14 +11,14 @@
 "Project-Id-Version: krfb\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-08-11 02:53+0200\n"
-"PO-Revision-Date: 2019-07-08 21:49+0100\n"
-"Last-Translator: Josep Ma. Ferrer <txe...@gmail.com>\n"
+"PO-Revision-Date: 2020-02-21 19:08+0100\n"
+"Last-Translator: Antoni Bella Pérez <antonibel...@yahoo.com>\n"
 "Language-Team: Catalan <kde-i18n...@kde.org>\n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 20.03.70\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: &\n"
 
@@ -184,7 +184,7 @@
 #: main.cpp:113
 #, kde-format
 msgid "KDE4 porting"
-msgstr "Portat al KDE4"
+msgstr "Adaptació al KDE 4"
 
 #: main.cpp:114
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krfb-19.12.2/po/ca@valencia/krfb.po 
new/krfb-19.12.3/po/ca@valencia/krfb.po
--- old/krfb-19.12.2/po/ca@valencia/krfb.po     2020-02-04 02:20:52.000000000 
+0100
+++ new/krfb-19.12.3/po/ca@valencia/krfb.po     2020-03-03 01:29:36.000000000 
+0100
@@ -1,9 +1,9 @@
 # Translation of krfb.po to Catalan (Valencian)
-# Copyright (C) 2003-2019 This_file_is_part_of_KDE
+# Copyright (C) 2003-2020 This_file_is_part_of_KDE
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
-# Antoni Bella Pérez <antonibel...@yahoo.com>, 2003, 2012, 2015, 2017.
+# Antoni Bella Pérez <antonibel...@yahoo.com>, 2003, 2012, 2015, 2017, 2020.
 # Albert Astals Cid <aa...@kde.org>, 2004, 2005.
 # Josep Ma. Ferrer <txe...@gmail.com>, 2007, 2008, 2009, 2010, 2011, 2013, 
2014, 2015, 2016, 2019.
 msgid ""
@@ -11,14 +11,14 @@
 "Project-Id-Version: krfb\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-08-11 02:53+0200\n"
-"PO-Revision-Date: 2019-07-08 21:49+0100\n"
-"Last-Translator: Josep Ma. Ferrer <txe...@gmail.com>\n"
+"PO-Revision-Date: 2020-02-21 19:08+0100\n"
+"Last-Translator: Antoni Bella Pérez <antonibel...@yahoo.com>\n"
 "Language-Team: Catalan <kde-i18n...@kde.org>\n"
 "Language: ca@valencia\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 20.03.70\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: &\n"
 
@@ -129,8 +129,8 @@
 "Your X11 Server does not support the required XTest extension version 2.2. "
 "Sharing your desktop is not possible."
 msgstr ""
-"El vostre servidor X11 no permet l'extensió XTest versió 2.2 requerida. No es 
"
-"pot compartir el vostre escriptori."
+"El vostre servidor X11 no permet l'extensió XTest versió 2.2 requerida. No "
+"es pot compartir el vostre escriptori."
 
 #: main.cpp:53 main.cpp:152
 #, kde-format
@@ -184,7 +184,7 @@
 #: main.cpp:113
 #, kde-format
 msgid "KDE4 porting"
-msgstr "Portat al KDE4"
+msgstr "Adaptació al KDE 4"
 
 #: main.cpp:114
 #, kde-format
@@ -268,8 +268,8 @@
 "another port in the settings and restart krfb."
 msgstr ""
 "Ha fallat en iniciar el servidor krfb. La compartició d'escriptori no "
-"funcionarà. Intenteu definir un altre port a l'arranjament i torneu a engegar 
"
-"el krfb."
+"funcionarà. Intenteu definir un altre port a l'arranjament i torneu a "
+"engegar el krfb."
 
 #: mainwindow.cpp:234
 #, kde-format
@@ -286,8 +286,8 @@
 "If your computer is behind a firewall it may have a different address or be "
 "unreachable for other computers."
 msgstr ""
-"Aquest camp conté l'adreça del vostre ordinador i el número de port, separats 
"
-"per dos punts.\n"
+"Aquest camp conté l'adreça del vostre ordinador i el número de port, "
+"separats per dos punts.\n"
 "\n"
 "L'adreça només és una referència - podeu emprar qualsevol adreça que puga "
 "abastar el vostre ordinador.\n"
@@ -301,8 +301,8 @@
 #. i18n: ectx: property (whatsThis), widget (QLabel, titleLabel)
 #. i18n: ectx: property (text), widget (QLabel, titleLabel)
 #. i18n: ectx: property (whatsThis), widget (QLabel, aboutLabel)
-#: mainwindow.cpp:235 mainwindow.cpp:242 ui/mainwidget.ui:83 
ui/mainwidget.ui:86
-#: ui/mainwidget.ui:114
+#: mainwindow.cpp:235 mainwindow.cpp:242 ui/mainwidget.ui:83
+#: ui/mainwidget.ui:86 ui/mainwidget.ui:114
 #, kde-format
 msgid "KDE Desktop Sharing"
 msgstr "Compartir l'escriptori del KDE"
@@ -320,9 +320,9 @@
 "Qualsevol usuari remot amb contrasenya de compartició d'escriptori normal "
 "caldrà que estiga autenticat.\n"
 "\n"
-"Si l'accés desatés està activat, i l'usuari remot proporciona una contrasenya 
"
-"en mode desatés, s'atorgarà l'accés de compartició d'escriptori sense cap "
-"confirmació explícita."
+"Si l'accés desatés està activat, i l'usuari remot proporciona una "
+"contrasenya en mode desatés, s'atorgarà l'accés de compartició d'escriptori "
+"sense cap confirmació explícita."
 
 #: mainwindow.cpp:260
 #, kde-format
@@ -402,11 +402,11 @@
 "style=\" font-weight:600;\">qt</span> plugin is a safe fallback, if for some "
 "reason others don't work. But also it is very slow.</p></body></html>"
 msgstr ""
-"<html><head/><body><p>En utilitzar x11, cal preferir el connector <span 
style="
-"\"font-weight:600;\">xcb</span>, perquè és més actiu.<br/>El connector de les 
"
-"<span style=\"font-weight:600;\">Qt</span> és una solució segura, si per "
-"algun motiu els altres no funcionen. Però també és molt lent.</p></body></"
-"html>"
+"<html><head/><body><p>En utilitzar x11, cal preferir el connector <span "
+"style=\"font-weight:600;\">xcb</span>, perquè és més actiu.<br/>El connector "
+"de les <span style=\"font-weight:600;\">Qt</span> és una solució segura, si "
+"per algun motiu els altres no funcionen. Però també és molt lent.</p></"
+"body></html>"
 
 #. i18n: ectx: property (text), widget (QCheckBox, kcfg_allowDesktopControl)
 #: ui/configsecurity.ui:17
@@ -445,8 +445,8 @@
 "Somebody is requesting a connection to your computer. Granting this will "
 "allow the remote user to watch your desktop. "
 msgstr ""
-"Algú està demanant una connexió al vostre ordinador. En concedir-li permetreu 
"
-"a l'usuari remot de veure el vostre escriptori. "
+"Algú està demanant una connexió al vostre ordinador. En concedir-li "
+"permetreu a l'usuari remot de veure el vostre escriptori. "
 
 #. i18n: ectx: property (text), widget (QLabel, TextLabel1)
 #: ui/connectionwidget.ui:102
@@ -464,8 +464,8 @@
 #: ui/connectionwidget.ui:136
 #, kde-format
 msgid ""
-"If you turn this option on, the remote user can enter keystrokes and use your 
"
-"mouse pointer. This gives them full control over your computer, so be "
+"If you turn this option on, the remote user can enter keystrokes and use "
+"your mouse pointer. This gives them full control over your computer, so be "
 "careful. When the option is disabled the remote user can only watch your "
 "screen."
 msgstr ""
@@ -586,8 +586,8 @@
 "Unattended Access allows a remote user with the password to gain control to "
 "your desktop without your explicit confirmation."
 msgstr ""
-"L'accés desatés permet que un usuari remot amb contrasenya arribe a controlar 
"
-"el vostre escriptori sense cap confirmació explícita."
+"L'accés desatés permet que un usuari remot amb contrasenya arribe a "
+"controlar el vostre escriptori sense cap confirmació explícita."
 
 #. i18n: ectx: property (title), widget (QGroupBox, unattendedGroupBox)
 #: ui/mainwidget.ui:343
@@ -603,9 +603,9 @@
 "your desktop without your explicit confirmation. Click \"About\" button on "
 "right to know more."
 msgstr ""
-"L'accés desatés permet que un usuari remot amb contrasenya arribe a controlar 
"
-"el vostre escriptori sense cap confirmació explícita. Cliqueu el botó «Quant "
-"a» de la dreta per a conèixer més."
+"L'accés desatés permet que un usuari remot amb contrasenya arribe a "
+"controlar el vostre escriptori sense cap confirmació explícita. Cliqueu el "
+"botó «Quant a» de la dreta per a conèixer més."
 
 #. i18n: ectx: property (whatsThis), widget (QToolButton, 
unattendedAboutButton)
 #: ui/mainwidget.ui:394
@@ -620,8 +620,9 @@
 "Starts/Stops unattended access to your desktop. Click on button on right to "
 "change password, and \"About\" button to know more."
 msgstr ""
-"Inicieu/Atureu l'accés desatés al vostre escriptori. Cliqueu en el botó de la 
"
-"dreta per a canviar la contrasenya, i en el botó «Quant a» per a conèixer 
més."
+"Inicieu/Atureu l'accés desatés al vostre escriptori. Cliqueu en el botó de "
+"la dreta per a canviar la contrasenya, i en el botó «Quant a» per a conèixer "
+"més."
 
 #. i18n: ectx: property (text), widget (QCheckBox, enableUnattendedCheckBox)
 #: ui/mainwidget.ui:440


Reply via email to