Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package krfb for openSUSE:Factory checked in 
at 2023-08-31 13:44:58
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/krfb (Old)
 and      /work/SRC/openSUSE:Factory/.krfb.new.1766 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "krfb"

Thu Aug 31 13:44:58 2023 rev:130 rq:1105759 version:23.08.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/krfb/krfb.changes        2023-07-07 
15:51:42.705765568 +0200
+++ /work/SRC/openSUSE:Factory/.krfb.new.1766/krfb.changes      2023-08-31 
13:49:39.840685696 +0200
@@ -1,0 +2,25 @@
+Sun Aug 20 13:59:59 UTC 2023 - Christophe Marin <[email protected]>
+
+- Update to 23.08.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/gear/23.08.0/
+- No code change since 23.07.90
+
+-------------------------------------------------------------------
+Mon Aug 14 08:03:16 UTC 2023 - Christophe Marin <[email protected]>
+
+- Update to 23.07.90
+  * New feature release
+- No code change since 23.07.80
+
+-------------------------------------------------------------------
+Tue Aug  1 10:14:14 UTC 2023 - Christophe Marin <[email protected]>
+
+- Update to 23.07.80
+  * New feature release
+- Changes since 23.04.3:
+  * pipewire: Drop dependencies that remained after the port to KPipeWire
+  * README: Remove mentions to files that do not exist anymore
+
+-------------------------------------------------------------------

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

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

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

Other differences:
------------------
++++++ krfb.spec ++++++
--- /var/tmp/diff_new_pack.Oy2wQ8/_old  2023-08-31 13:49:40.968726014 +0200
+++ /var/tmp/diff_new_pack.Oy2wQ8/_new  2023-08-31 13:49:40.984726586 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without released
 Name:           krfb
-Version:        23.04.3
+Version:        23.08.0
 Release:        0
 Summary:        Screen sharing using the VNC/RFB protocol
 License:        GPL-2.0-or-later
@@ -30,10 +30,8 @@
 %endif
 BuildRequires:  LibVNCServer-devel
 BuildRequires:  extra-cmake-modules
-BuildRequires:  pipewire-devel
 BuildRequires:  pkgconfig
 BuildRequires:  update-desktop-files
-BuildRequires:  xcb-util-image-devel
 BuildRequires:  cmake(KF5Config)
 BuildRequires:  cmake(KF5CoreAddons)
 BuildRequires:  cmake(KF5Crash)
@@ -51,13 +49,21 @@
 BuildRequires:  cmake(PlasmaWaylandProtocols)
 BuildRequires:  cmake(Qt5Core)
 BuildRequires:  cmake(Qt5DBus)
-BuildRequires:  cmake(Qt5Widgets)
 BuildRequires:  cmake(Qt5WaylandClient)
+BuildRequires:  cmake(Qt5Widgets)
 BuildRequires:  cmake(Qt5X11Extras)
-BuildRequires:  pkgconfig(gbm)
+BuildRequires:  cmake(Qt5XkbCommonSupport)
 BuildRequires:  pkgconfig(libsystemd)
+BuildRequires:  pkgconfig(wayland-client)
+BuildRequires:  pkgconfig(x11)
+BuildRequires:  pkgconfig(xcb)
+BuildRequires:  pkgconfig(xcb-damage)
+BuildRequires:  pkgconfig(xcb-image)
+BuildRequires:  pkgconfig(xcb-render)
+BuildRequires:  pkgconfig(xcb-shape)
+BuildRequires:  pkgconfig(xcb-shm)
+BuildRequires:  pkgconfig(xcb-xfixes)
 BuildRequires:  pkgconfig(xdamage)
-BuildRequires:  pkgconfig(epoxy)
 BuildRequires:  pkgconfig(xt)
 BuildRequires:  pkgconfig(xtst)
 


++++++ krfb-23.04.3.tar.xz -> krfb-23.08.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krfb-23.04.3/CMakeLists.txt 
new/krfb-23.08.0/CMakeLists.txt
--- old/krfb-23.04.3/CMakeLists.txt     2023-07-04 07:08:17.000000000 +0200
+++ new/krfb-23.08.0/CMakeLists.txt     2023-08-16 23:16:41.000000000 +0200
@@ -2,8 +2,8 @@
 
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "23")
-set (RELEASE_SERVICE_VERSION_MINOR "04")
-set (RELEASE_SERVICE_VERSION_MICRO "3")
+set (RELEASE_SERVICE_VERSION_MINOR "08")
+set (RELEASE_SERVICE_VERSION_MICRO "0")
 set (RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
 project(krfb VERSION ${RELEASE_SERVICE_VERSION})
@@ -74,12 +74,11 @@
 option(DISABLE_PIPEWIRE "Disable PipeWire support." OFF)
 if(NOT DISABLE_PIPEWIRE)
     find_package(KPipeWire REQUIRED)
-    pkg_check_modules(PipeWire IMPORTED_TARGET libpipewire-0.3)
 endif()
-add_feature_info(PipeWire PipeWire_FOUND "Required for pipewire screencast 
plugin")
+add_feature_info(PipeWire KPipeWire_FOUND "Required for pipewire screencast 
plugin")
 find_package(PlasmaWaylandProtocols 1.5.0)
 
-if(PipeWire_FOUND AND PlasmaWaylandProtocols_FOUND)
+if(KPipeWire_FOUND AND PlasmaWaylandProtocols_FOUND)
     find_package(KF5Wayland ${KF5_MIN_VERSION})
     find_package(QtWaylandScanner REQUIRED)
     find_package(Qt5WaylandClient)
@@ -87,31 +86,6 @@
     find_package(Wayland REQUIRED COMPONENTS Client)
 endif()
 
-find_package(gbm)
-set_package_properties(gbm PROPERTIES
-    TYPE OPTIONAL
-    PURPOSE "Required for dma-buf support in pipewire screencast plugin."
-)
-
-find_package(EGL)
-set_package_properties(EGL PROPERTIES
-    TYPE OPTIONAL
-    PURPOSE "Required for dma-buf support in pipewire screencast plugin."
-)
-
-find_package(epoxy)
-set_package_properties(epoxy PROPERTIES DESCRIPTION "libepoxy"
-    URL "https://github.com/anholt/libepoxy";
-    TYPE OPTIONAL
-    PURPOSE "Required for dma-buf support in pipewire screencast plugin."
-)
-
-if(EGL_FOUND AND gbm_FOUND AND epoxy_FOUND)
-  set (HAVE_DMA_BUF TRUE)
-else()
-  set (HAVE_DMA_BUF FALSE)
-endif()
-
 ecm_setup_version(PROJECT
                   VARIABLE_PREFIX KRFB
                   VERSION_HEADER "krfb_version.h")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krfb-23.04.3/README new/krfb-23.08.0/README
--- old/krfb-23.04.3/README     2023-07-04 07:08:17.000000000 +0200
+++ new/krfb-23.08.0/README     2023-08-16 23:16:41.000000000 +0200
@@ -12,8 +12,4 @@
 
 Guide to documentation:
 TODO - things to be done
-INSTALL - Very short installation instructions
 NOTES - reasons for various decisions
-DCOP-INTERFACE - short documentation of the DCOP interface
-
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krfb-23.04.3/events/CMakeLists.txt 
new/krfb-23.08.0/events/CMakeLists.txt
--- old/krfb-23.04.3/events/CMakeLists.txt      2023-07-04 07:08:17.000000000 
+0200
+++ new/krfb-23.08.0/events/CMakeLists.txt      2023-08-16 23:16:41.000000000 
+0200
@@ -1,6 +1,6 @@
 add_subdirectory(x11)
 
 # Makes sense to use only when PW framebuffer is used
-if (${PipeWire_FOUND})
+if (TARGET K::KPipeWire)
     add_subdirectory(xdp)
 endif()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krfb-23.04.3/framebuffers/CMakeLists.txt 
new/krfb-23.08.0/framebuffers/CMakeLists.txt
--- old/krfb-23.04.3/framebuffers/CMakeLists.txt        2023-07-04 
07:08:17.000000000 +0200
+++ new/krfb-23.08.0/framebuffers/CMakeLists.txt        2023-08-16 
23:16:41.000000000 +0200
@@ -4,6 +4,6 @@
     add_subdirectory (xcb)
 endif()
 
-if (${PipeWire_FOUND})
+if (TARGET K::KPipeWire)
     add_subdirectory(pipewire)
 endif()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krfb-23.04.3/framebuffers/pipewire/CMakeLists.txt 
new/krfb-23.08.0/framebuffers/pipewire/CMakeLists.txt
--- old/krfb-23.04.3/framebuffers/pipewire/CMakeLists.txt       2023-07-04 
07:08:17.000000000 +0200
+++ new/krfb-23.08.0/framebuffers/pipewire/CMakeLists.txt       2023-08-16 
23:16:41.000000000 +0200
@@ -48,18 +48,10 @@
                       KF5::WaylandClient
                       Wayland::Client
                       krfbprivate
-                      PkgConfig::PipeWire
                       K::KPipeWire
                       K::KPipeWireDmaBuf
 )
 
-if (HAVE_DMA_BUF)
-    target_link_libraries(krfb_framebuffer_pw
-                          ${epoxy_LIBRARIES}
-                          gbm::gbm
-    )
-endif()
-
 set_target_properties(krfb_framebuffer_pw PROPERTIES OUTPUT_NAME pw)
 install (TARGETS krfb_framebuffer_pw
          DESTINATION ${KDE_INSTALL_PLUGINDIR}/krfb/framebuffer
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/krfb-23.04.3/framebuffers/pipewire/pw_framebuffer.cpp 
new/krfb-23.08.0/framebuffers/pipewire/pw_framebuffer.cpp
--- old/krfb-23.04.3/framebuffers/pipewire/pw_framebuffer.cpp   2023-07-04 
07:08:17.000000000 +0200
+++ new/krfb-23.08.0/framebuffers/pipewire/pw_framebuffer.cpp   2023-08-16 
23:16:41.000000000 +0200
@@ -26,15 +26,6 @@
 #include <KWayland/Client/registry.h>
 
 // pipewire
-#include <sys/ioctl.h>
-
-#include <spa/param/format-utils.h>
-#include <spa/param/video/format-utils.h>
-#include <spa/param/props.h>
-#include <spa/utils/result.h>
-
-#include <pipewire/pipewire.h>
-
 #include <climits>
 
 #include "pw_framebuffer.h"
@@ -45,14 +36,6 @@
 #include <KPipeWire/PipeWireSourceStream>
 #include <KPipeWire/DmaBufHandler>
 
-#if HAVE_DMA_BUF
-#include <unistd.h>
-
-#include <gbm.h>
-#include <epoxy/egl.h>
-#include <epoxy/gl.h>
-#endif /* HAVE_DMA_BUF */
-
 static const int BYTES_PER_PIXEL = 4;
 static const uint MIN_SUPPORTED_XDP_KDE_SC_VERSION = 1;
 
@@ -79,30 +62,6 @@
     return arg;
 }
 
-#if HAVE_DMA_BUF
-const char * formatGLError(GLenum err)
-{
-    switch(err) {
-    case GL_NO_ERROR:
-        return "GL_NO_ERROR";
-    case GL_INVALID_ENUM:
-        return "GL_INVALID_ENUM";
-    case GL_INVALID_VALUE:
-        return "GL_INVALID_VALUE";
-    case GL_INVALID_OPERATION:
-        return "GL_INVALID_OPERATION";
-    case GL_STACK_OVERFLOW:
-        return "GL_STACK_OVERFLOW";
-    case GL_STACK_UNDERFLOW:
-        return "GL_STACK_UNDERFLOW";
-    case GL_OUT_OF_MEMORY:
-        return "GL_OUT_OF_MEMORY";
-    default:
-        return (QLatin1String("0x") + QString::number(err, 
16)).toLocal8Bit().constData();
-    }
-}
-#endif /* HAVE_DMA_BUF */
-
 /**
  * @brief The PWFrameBuffer::Private class - private counterpart of 
PWFramebuffer class. This is the entity where
  *        whole logic resides, for more info search for "d-pointer pattern" 
information.
@@ -392,7 +351,6 @@
         memcpy(q->fb, frame.image->constBits(), frame.image->sizeInBytes());
         setVideoSize(frame.image->size());
     }
-#if HAVE_DMA_BUF
     else if (frame.dmabuf) {
         QImage src((uchar*) q->fb, videoSize.width(), videoSize.height(), 
QImage::Format_RGB32);
         if (!m_dmabufHandler.downloadFrame(src, frame)) {
@@ -401,9 +359,7 @@
             return;
         }
         setVideoSize(src.size());
-    }
-#endif /* HAVE_DMA_BUF */
-    else {
+    } else {
         qCDebug(KRFB_FB_PIPEWIRE) << "Unknown kind of frame";
     }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/krfb-23.04.3/framebuffers/pipewire/pw_framebufferplugin.h 
new/krfb-23.08.0/framebuffers/pipewire/pw_framebufferplugin.h
--- old/krfb-23.04.3/framebuffers/pipewire/pw_framebufferplugin.h       
2023-07-04 07:08:17.000000000 +0200
+++ new/krfb-23.08.0/framebuffers/pipewire/pw_framebufferplugin.h       
2023-08-16 23:16:41.000000000 +0200
@@ -22,8 +22,6 @@
 
 
 #include "framebufferplugin.h"
-#include <QWidget>
-
 
 class FrameBuffer;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krfb-23.04.3/krfb/config-krfb.h.cmake 
new/krfb-23.08.0/krfb/config-krfb.h.cmake
--- old/krfb-23.04.3/krfb/config-krfb.h.cmake   2023-07-04 07:08:17.000000000 
+0200
+++ new/krfb-23.08.0/krfb/config-krfb.h.cmake   2023-08-16 23:16:41.000000000 
+0200
@@ -9,6 +9,3 @@
 
 /* Define if XShm is available */
 #cmakedefine HAVE_XSHM 1
-
-/* Define if DMA-BUF support is available */
-#cmakedefine01 HAVE_DMA_BUF
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krfb-23.04.3/krfb/invitationsrfbserver.cpp 
new/krfb-23.08.0/krfb/invitationsrfbserver.cpp
--- old/krfb-23.04.3/krfb/invitationsrfbserver.cpp      2023-07-04 
07:08:17.000000000 +0200
+++ new/krfb-23.08.0/krfb/invitationsrfbserver.cpp      2023-08-16 
23:16:41.000000000 +0200
@@ -30,7 +30,7 @@
 #include <KLocalizedString>
 #include <KUser>
 #include <KStringHandler>
-#include <KWallet/KWallet>
+#include <KWallet>
 
 #include <kdnssd_version.h>
 #if KDNSSD_VERSION >= QT_VERSION_CHECK(5, 84, 0)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krfb-23.04.3/krfb/org.kde.krfb.appdata.xml 
new/krfb-23.08.0/krfb/org.kde.krfb.appdata.xml
--- old/krfb-23.04.3/krfb/org.kde.krfb.appdata.xml      2023-07-04 
07:08:17.000000000 +0200
+++ new/krfb-23.08.0/krfb/org.kde.krfb.appdata.xml      2023-08-16 
23:16:41.000000000 +0200
@@ -11,6 +11,7 @@
   <name xml:lang="de">Krfb</name>
   <name xml:lang="el">Krfb</name>
   <name xml:lang="en-GB">Krfb</name>
+  <name xml:lang="eo">Krfb</name>
   <name xml:lang="es">Krfb</name>
   <name xml:lang="et">Krfb</name>
   <name xml:lang="eu">Krfb</name>
@@ -49,6 +50,7 @@
   <summary xml:lang="de">Verbindung Ihrer Arbeitsfläche zu anderen Rechnern 
über VNC</summary>
   <summary xml:lang="el">Μοιραστείτε την επιφάνεια 
εργασίας σας με άλλον υπολογιστή μέσω 
VNC</summary>
   <summary xml:lang="en-GB">Share your desktop to another computer via 
VNC</summary>
+  <summary xml:lang="eo">Kundividu vian labortablon al alia komputilo per 
VNC</summary>
   <summary xml:lang="es">Compartir su escritorio con otro equipo usando 
VNC</summary>
   <summary xml:lang="et">Oma töölaua jagamine VNC kaudu teise 
arvutisse</summary>
   <summary xml:lang="eu">Partekatu zure mahaigaina beste ordenagailu batekin 
VNC erabiliz</summary>
@@ -82,6 +84,7 @@
     <p xml:lang="de">Krfb ist eine Serveranwendung, welche die gemeinsame 
Benutzung der aktuellen Sitzung mit einem Benutzer auf einem anderen Rechner 
ermöglicht, der mit Hilfe eines VNC-Programms den Bildschirminhalt sehen oder 
sogar die Arbeitsfläche bedienen kann.</p>
     <p xml:lang="el">Η κοινή χρήση επιφάνειας 
εργασίας Krfb είναι μια εφαρμογή εξυπηρετητή 
που σας επιτρέπει να μοιράζεστε την τρέχου
σα συνεδρία σας με έναν χρήστη σε άλλο 
μηχάνημα, ο οποίος μπορεί να χρησιμοποιεί 
έναν πελάτη VNC για να παρακολουθεί ή και να 
ελέγχει την επιφάνεια εργασίας σας.</p>
     <p xml:lang="en-GB">Krfb Desktop Sharing is a server application that 
allows you to share your current session with a user on another machine, who 
can use a VNC client to view or even control the desktop.</p>
+    <p xml:lang="eo">Krfb Desktop Sharing estas servila aplikaĵo, kiu ebligas 
al vi kunhavigi vian aktualan seancon kun uzanto sur alia maŝino, kiu povas 
uzi VNC-klienton por rigardi aŭ eĉ kontroli la labortablon.</p>
     <p xml:lang="es">Krfb para compartir el escritorio es una aplicación de 
servidor que le permite compartir su sesión actual con un usuario de otra 
máquina, que puede usar un cliente VNC para ver e incluso controlar su 
escritorio.</p>
     <p xml:lang="et">Krfb töölaua jagamine on serverirakendus, mis 
võimaldab jagada aktiivset seanssi mõne teise masina taga istuva kasutajaga, 
kes saab VNC kliendi kaudu töölauda näha või isegi juhtida.</p>
     <p xml:lang="eu">Krfb Mahaigaina Partekatzea zerbitzari aplikazio bat da 
zure uneko saioa beste makina batean dagoen erabiltzaile batekin partekatzen 
uzten dizuna. Beste makinan VNC bezeroa erabil dezake zure mahaigaina ikusi edo 
baita kontrolatzeko ere.</p>
@@ -92,7 +95,7 @@
     <p xml:lang="id">Krfb Desktop Sharing adalah aplikasi server yang 
memungkinkan kamu untuk berbagi sesimu saat ini dengan pengguna di mesin lain, 
yang bisa menggunakan klien VNC untuk menampilkan atau bahkan mengendalikan 
desktop.</p>
     <p xml:lang="it">Condivisione del desktop Krfb è un'applicazione server 
che permette di condividere la sessione attuale con un utente su un'altra 
macchina, che potrà usare un client VNC per visualizzare ed anche controllare 
il desktop.</p>
     <p xml:lang="ka">Krfb სამუშაო მაგიდის 
გაზიარება აპლიკაციის სერვერ
ია, რომელიც თქვენი მიმდინარე 
სესიის სხვა მომხმარ
ებლისთვის, რომელსაც VNC კლიენტი 
აქვს, გაზიარების და კონტროლის 
გადაცემის საშუალებას 
გაძლევთ.</p>
-    <p xml:lang="ko">Krfb 데스크톱 공유는 현재 세션을 다른 머신
의 사용자와 VNC를 통해서 공유하거나 원격 제어를 요청할 
수 있는 서버 프로그램입니다.</p>
+    <p xml:lang="ko">Krfb 데스크톱 공유는 현재 세션을 다른 머신
의 사용자와 VNC를 통해서 공유하거나 원격 제어를 요청할 
수 있는 서버 앱입니다.</p>
     <p xml:lang="nl">Bureaublad delen is een server-applicatie die u in staat 
stelt uw huidige sessie te delen met een gebruiker op een andere machine, die 
een VNC-client kan gebruiken om uw bureaublad te bekijken of zelfs te 
besturen.</p>
     <p xml:lang="nn">Krfb skrivebordsdeling er eit tenar­program som lèt deg 
dela skrivebords­økta di med ein brukar på ei anna maskin. Vedkommande kan 
så bruka ein VNC-klient for å sjå og eventuelt òg styra økta.</p>
     <p xml:lang="pl">Współdzielenie pulpitu Krfb jest aplikacją serwerową, 
która umożliwia współdzielenie twojej bieżącej sesji z użytkownikiem na 
innym komputerze, który może użyć klienta VNC do oglądania,a a nawet 
sterowania twoim pulpitem.</p>
@@ -127,6 +130,7 @@
       <caption xml:lang="de">Freigabe der Arbeitsfläche mit Krfb</caption>
       <caption xml:lang="el">Κοινή χρήση επιφάνειας 
εργασίας με το Krfb</caption>
       <caption xml:lang="en-GB">Sharing desktop with Krfb</caption>
+      <caption xml:lang="eo">Kundividante labortablon per Krfb</caption>
       <caption xml:lang="es">Compartiendo el escritorio con Krfb</caption>
       <caption xml:lang="et">Töölaua jagamine Krfb abil</caption>
       <caption xml:lang="eu">Mahaigaina Krfb-ren bidez partekatzea</caption>
@@ -161,9 +165,9 @@
   </provides>
   <project_group>KDE</project_group>
   <releases>
+    <release version="23.08.0" date="2023-08-24"/>
     <release version="23.04.3" date="2023-07-06"/>
     <release version="23.04.2" date="2023-06-08"/>
     <release version="23.04.1" date="2023-05-11"/>
-    <release version="23.04.0" date="2023-04-20"/>
   </releases>
 </component>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krfb-23.04.3/krfb/org.kde.krfb.desktop 
new/krfb-23.08.0/krfb/org.kde.krfb.desktop
--- old/krfb-23.04.3/krfb/org.kde.krfb.desktop  2023-07-04 07:08:17.000000000 
+0200
+++ new/krfb-23.08.0/krfb/org.kde.krfb.desktop  2023-08-16 23:16:41.000000000 
+0200
@@ -83,6 +83,7 @@
 GenericName[de]=Arbeitsflächen-Freigabe (VNC)
 GenericName[el]=Κοινή χρήση επιφάνειας εργασίας 
(VNC)
 GenericName[en_GB]=Desktop Sharing (VNC)
+GenericName[eo]=Kunhavigo de Labortablo (VNC)
 GenericName[es]=Escritorio compartido (VNC)
 GenericName[et]=Töölaua jagamine (VNC)
 GenericName[eu]=Mahaigaina partekatzea (VNC)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/krfb-23.04.3/krfb/org.kde.krfb.virtualmonitor.desktop.cmake 
new/krfb-23.08.0/krfb/org.kde.krfb.virtualmonitor.desktop.cmake
--- old/krfb-23.04.3/krfb/org.kde.krfb.virtualmonitor.desktop.cmake     
2023-07-04 07:08:17.000000000 +0200
+++ new/krfb-23.08.0/krfb/org.kde.krfb.virtualmonitor.desktop.cmake     
2023-08-16 23:16:41.000000000 +0200
@@ -10,6 +10,7 @@
 Name[cs]=Virtuální monitor KRFB
 Name[el]=Εικονική οθόνη του KRFB
 Name[en_GB]=KRFBs Virtual Monitor
+Name[eo]=Virtuala Monitoro de KRFB
 Name[es]=Monitor virtual de KRFB
 Name[eu]=KRFBren alegiazko monitorea
 Name[fi]=KRFB:n virtuaalinäyttö
@@ -20,6 +21,7 @@
 Name[ka]=KRFB-ის ვირტუალური ეკრანი
 Name[ko]=KRFBs 가상 모니터
 Name[nl]=Virtuele monitor van KRFB
+Name[nn]=KRFBs virtuell skjerm
 Name[pl]=Monitor wirtualny KRFB
 Name[pt]=Monitor Virtual do KRFB
 Name[pt_BR]=Monitor virtual do KRFB
@@ -38,6 +40,7 @@
 Comment[cs]=Vzdálený virtuální monitor
 Comment[el]=Απομακρυσμένη εικονική οθόνη
 Comment[en_GB]=Remote Virtual Monitor
+Comment[eo]=Fora Virtuala Monitoro
 Comment[es]=Monitor virtual remoto
 Comment[eu]=Urruneko alegiazko monitorea
 Comment[fi]=Virtuaalinen etänäyttö
@@ -48,6 +51,7 @@
 Comment[ka]=დაშორებული ვირტუალური 
ეკრანი
 Comment[ko]=원격 가상 모니터
 Comment[nl]=Virtual Monitor op afstand
+Comment[nn]=Virtuell skjerm for ekstern ressurs
 Comment[pl]=Zdalny monitor wirtualny
 Comment[pt]=Monitor Virtual Remoto
 Comment[pt_BR]=Monitor virtual remoto
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krfb-23.04.3/po/eo/krfb.po 
new/krfb-23.08.0/po/eo/krfb.po
--- old/krfb-23.04.3/po/eo/krfb.po      2023-07-04 07:08:17.000000000 +0200
+++ new/krfb-23.08.0/po/eo/krfb.po      2023-08-16 23:16:41.000000000 +0200
@@ -6,8 +6,8 @@
 "Project-Id-Version: krfb\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-07-18 00:45+0000\n"
-"PO-Revision-Date: 2009-11-15 12:06+0100\n"
-"Last-Translator: Axel Rousseau <[email protected]>\n"
+"PO-Revision-Date: 2023-03-25 16:19+0100\n"
+"Last-Translator: Oliver Kellogg <[email protected]>\n"
 "Language-Team: esperanto <[email protected]>\n"
 "Language: eo\n"
 "MIME-Version: 1.0\n"
@@ -645,25 +645,3 @@
 #, kde-format
 msgid "&Change Unattended Password"
 msgstr ""
-
-#~ msgid "Confirmation"
-#~ msgstr "Konfirmo"
-
-#, fuzzy
-#~ msgid "Delete All"
-#~ msgstr "Forigu arĥivon"
-
-#~ msgid "&Delete"
-#~ msgstr "&Forigi"
-
-#~ msgid "Ian Reinhart Geiser"
-#~ msgstr "Ian Reinhart Geiser"
-
-#~ msgid "DCOP interface"
-#~ msgstr "DCOP-interfaco"
-
-#~ msgid "Jason Spisak"
-#~ msgstr "Jason Spisak"
-
-#~ msgid "Karl Vogel"
-#~ msgstr "Karl Vogel"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krfb-23.04.3/po/fa/krfb.po 
new/krfb-23.08.0/po/fa/krfb.po
--- old/krfb-23.04.3/po/fa/krfb.po      2023-07-04 07:08:17.000000000 +0200
+++ new/krfb-23.08.0/po/fa/krfb.po      2023-08-16 23:16:41.000000000 +0200
@@ -15,7 +15,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: KBabel 1.11.4\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krfb-23.04.3/po/ko/krfb.po 
new/krfb-23.08.0/po/ko/krfb.po
--- old/krfb-23.04.3/po/ko/krfb.po      2023-07-04 07:08:17.000000000 +0200
+++ new/krfb-23.08.0/po/ko/krfb.po      2023-08-16 23:16:41.000000000 +0200
@@ -404,7 +404,7 @@
 #: mainwindow.cpp:256
 #, kde-format
 msgid "To apply framebuffer plugin setting, you need to restart the program."
-msgstr "프레임버퍼 플러그인 설정을 적용하려면 프로그램을 
다시 시작해야 합니다."
+msgstr "프레임버퍼 플러그인 설정을 적용하려면 앱을 다시 
시작해야 합니다."
 
 #: rfbservermanager.cpp:229
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krfb-23.04.3/po/nn/krfb.po 
new/krfb-23.08.0/po/nn/krfb.po
--- old/krfb-23.04.3/po/nn/krfb.po      2023-07-04 07:08:17.000000000 +0200
+++ new/krfb-23.08.0/po/nn/krfb.po      2023-08-16 23:16:41.000000000 +0200
@@ -1,20 +1,20 @@
 # Translation of krfb to Norwegian Nynorsk
 #
 # Gaute Hvoslef Kvalnes <[email protected]>, 2003, 2004.
-# Karl Ove Hufthammer <[email protected]>, 2007, 2008, 2009, 2018, 2020.
+# Karl Ove Hufthammer <[email protected]>, 2007, 2008, 2009, 2018, 2020, 2023.
 msgid ""
 msgstr ""
 "Project-Id-Version: krfb\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-07-18 00:45+0000\n"
-"PO-Revision-Date: 2020-11-02 20:58+0100\n"
+"PO-Revision-Date: 2023-07-31 21:03+0200\n"
 "Last-Translator: Karl Ove Hufthammer <[email protected]>\n"
 "Language-Team: Norwegian Nynorsk <[email protected]>\n"
 "Language: nn\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 20.08.2\n"
+"X-Generator: Lokalize 23.04.3\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
@@ -119,17 +119,17 @@
 #: main-virtualmonitor.cpp:49
 #, kde-format
 msgid "Creating a Virtual Monitor from %1"
-msgstr ""
+msgstr "Lagar virtuell avlyttar frå %1"
 
 #: main-virtualmonitor.cpp:80
 #, kde-format
 msgid "Remote Virtual Monitor"
-msgstr ""
+msgstr "Virtuell skjerm for ekstern ressurs"
 
 #: main-virtualmonitor.cpp:82
 #, kde-format
 msgid "Offer a Virtual Monitor that can be accessed remotely"
-msgstr ""
+msgstr "Tilbyr ein virtuell skjerm ein kan få tilgang til eksternt"
 
 #: main-virtualmonitor.cpp:84 main.cpp:98
 #, kde-format
@@ -153,7 +153,7 @@
 #: main-virtualmonitor.cpp:91
 #, kde-format
 msgid "Virtual Monitor implementation"
-msgstr ""
+msgstr "Implementasjon av virtuell skjerm"
 
 #: main-virtualmonitor.cpp:92 main.cpp:108
 #, kde-format
@@ -223,52 +223,52 @@
 #: main-virtualmonitor.cpp:108
 #, kde-format
 msgid "Logical resolution of the new monitor"
-msgstr ""
+msgstr "Logisk oppløysing på ny skjerm"
 
 #: main-virtualmonitor.cpp:108
 #, kde-format
 msgid "resolution"
-msgstr ""
+msgstr "oppløysing"
 
 #: main-virtualmonitor.cpp:110
 #, kde-format
 msgid "Name of the monitor"
-msgstr ""
+msgstr "Namnet på skjermen"
 
 #: main-virtualmonitor.cpp:110
 #, kde-format
 msgid "name"
-msgstr ""
+msgstr "namn"
 
 #: main-virtualmonitor.cpp:112
 #, kde-format
 msgid "Password for the client to connect to it"
-msgstr ""
+msgstr "Passord for tilkopling frå klienten"
 
 #: main-virtualmonitor.cpp:112
 #, kde-format
 msgid "password"
-msgstr ""
+msgstr "passord"
 
 #: main-virtualmonitor.cpp:114
 #, kde-format
 msgid "The device-pixel-ratio of the device, the scaling factor"
-msgstr ""
+msgstr "Einingspiksel-forholdet til eininga – skaleringsfaktor"
 
 #: main-virtualmonitor.cpp:114
 #, kde-format
 msgid "dpr"
-msgstr ""
+msgstr "dpr"
 
 #: main-virtualmonitor.cpp:116
 #, kde-format
 msgid "The port we will be listening to"
-msgstr ""
+msgstr "Porten me skal lytta til"
 
 #: main-virtualmonitor.cpp:116
 #, kde-format
 msgid "number"
-msgstr ""
+msgstr "tal"
 
 #: main.cpp:49
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krfb-23.04.3/po/zh_CN/krfb.po 
new/krfb-23.08.0/po/zh_CN/krfb.po
--- old/krfb-23.04.3/po/zh_CN/krfb.po   2023-07-04 07:08:17.000000000 +0200
+++ new/krfb-23.08.0/po/zh_CN/krfb.po   2023-08-16 23:16:41.000000000 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-07-18 00:45+0000\n"
-"PO-Revision-Date: 2023-07-03 11:41\n"
+"PO-Revision-Date: 2023-08-02 12:44\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"

Reply via email to