Script 'mail_helper' called by obssrc
Hello community,

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

Package is "dolphin-plugins"

Thu Aug 31 13:43:56 2023 rev:121 rq:1105619 version:23.08.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/dolphin-plugins/dolphin-plugins.changes  
2023-07-07 15:49:38.837027663 +0200
+++ 
/work/SRC/openSUSE:Factory/.dolphin-plugins.new.1766/dolphin-plugins.changes    
    2023-08-31 13:46:48.510561949 +0200
@@ -1,0 +2,27 @@
+Sun Aug 20 13:58:57 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:02:14 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:13:19 UTC 2023 - Christophe Marin <[email protected]>
+
+- Update to 23.07.80
+  * New feature release
+- Changes since 23.04.3:
+  * Fix install in kf<version>
+  * Better detect Qt6
+  * Use ECMDeprecationSettings
+  * Allow to build in KF6
+
+-------------------------------------------------------------------

Old:
----
  dolphin-plugins-23.04.3.tar.xz
  dolphin-plugins-23.04.3.tar.xz.sig

New:
----
  dolphin-plugins-23.08.0.tar.xz
  dolphin-plugins-23.08.0.tar.xz.sig

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

Other differences:
------------------
++++++ dolphin-plugins.spec ++++++
--- /var/tmp/diff_new_pack.fKMGw7/_old  2023-08-31 13:46:49.650602697 +0200
+++ /var/tmp/diff_new_pack.fKMGw7/_new  2023-08-31 13:46:49.650602697 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:           dolphin-plugins
-Version:        23.04.3
+Version:        23.08.0
 Release:        0
 Summary:        Version control plugins for Dolphin
 License:        GPL-2.0-or-later


++++++ dolphin-plugins-23.04.3.tar.xz -> dolphin-plugins-23.08.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-plugins-23.04.3/.kde-ci.yml 
new/dolphin-plugins-23.08.0/.kde-ci.yml
--- old/dolphin-plugins-23.04.3/.kde-ci.yml     2023-07-04 07:31:17.000000000 
+0200
+++ new/dolphin-plugins-23.08.0/.kde-ci.yml     2023-08-16 23:13:18.000000000 
+0200
@@ -2,7 +2,7 @@
 # SPDX-License-Identifier: CC0-1.0
 
 Dependencies:
-- 'on': ['@all']
+- 'on': ['Linux/Qt5', 'FreeBSD/Qt5', 'Windows/Qt5', 'macOS/Qt5']
   'require':
     'frameworks/extra-cmake-modules': '@stable'
     'frameworks/kcoreaddons': '@stable'
@@ -13,3 +13,15 @@
     'frameworks/solid': '@stable'
     'frameworks/ktexteditor': '@stable'
     'system/dolphin': '@same'
+
+- 'on': ['Linux/Qt6', 'FreeBSD/Qt6', 'Windows/Qt6', 'macOS/Qt6']
+  'require':
+    'frameworks/extra-cmake-modules': '@latest-kf6'
+    'frameworks/kcoreaddons': '@latest-kf6'
+    'frameworks/ki18n': '@latest-kf6'
+    'frameworks/kxmlgui': '@latest-kf6'
+    'frameworks/kio': '@latest-kf6'
+    'frameworks/ktextwidgets': '@latest-kf6'
+    'frameworks/solid': '@latest-kf6'
+    'frameworks/ktexteditor': '@latest-kf6'
+    'system/dolphin': 'kf6'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-plugins-23.04.3/CMakeLists.txt 
new/dolphin-plugins-23.08.0/CMakeLists.txt
--- old/dolphin-plugins-23.04.3/CMakeLists.txt  2023-07-04 07:31:17.000000000 
+0200
+++ new/dolphin-plugins-23.08.0/CMakeLists.txt  2023-08-16 23:13:18.000000000 
+0200
@@ -2,38 +2,48 @@
 
 # Release service 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(dolphin-plugins VERSION ${RELEASE_SERVICE_VERSION})
 
-set(QT_MIN_VERSION "5.15.2")
-set(KF5_MIN_VERSION "5.90.0")
+if (BUILD_WITH_QT6)
+    set(QT_MIN_VERSION "6.4.0")
+    set(KF_MIN_VERSION "5.240.0")
+else()
+    set(QT_MIN_VERSION "5.15.2")
+    set(KF_MIN_VERSION "5.91.0")
+endif()
+
 set(KDE_COMPILERSETTINGS_LEVEL "5.84")
 
-find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE)
-set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${ECM_MODULE_PATH})
+# ECM setup
+find_package(ECM ${KF_MIN_VERSION} CONFIG REQUIRED)
+set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${CMAKE_SOURCE_DIR}/cmake)
 
+include(QtVersionOption)
+include(ECMSetupVersion)
 include(KDEInstallDirs)
 include(KDECMakeSettings)
 include(KDECompilerSettings NO_POLICY_SCOPE)
 
+include(ECMDeprecationSettings)
 include(ECMOptionalAddSubdirectory)
 include(FeatureSummary)
 
-add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050f00)
-add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055a00)
-
 find_package(Qt${QT_MAJOR_VERSION} ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS
     Core
     Widgets
     Network
     DBus
 )
+if (QT_MAJOR_VERSION EQUAL 6)
+    find_package(Qt6 REQUIRED COMPONENTS Core5Compat)
+endif()
 
-find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS
+find_package(KF${QT_MAJOR_VERSION} ${KF_MIN_VERSION} REQUIRED COMPONENTS
     XmlGui
     I18n
     KIO
@@ -42,7 +52,7 @@
     Solid
 )
 
-find_package(DolphinVcs)
+find_package(DolphinVcs REQUIRED)
 set_package_properties(DolphinVcs PROPERTIES
     DESCRIPTION "the Dolphin version control plugin library"
     URL "https://kde.org/applications/system/org.kde.dolphin";
@@ -50,6 +60,11 @@
     PURPOSE "Provides the version control plugin interface."
 )
 
+ecm_set_disabled_deprecation_versions(
+    QT 5.15.2
+    KF 5.91
+)
+
 add_definitions(-DQT_NO_URL_CAST_FROM_STRING -DQT_NO_FOREACH -DQT_NO_KEYWORDS)
 
 ecm_optional_add_subdirectory(svn)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-plugins-23.04.3/bazaar/CMakeLists.txt 
new/dolphin-plugins-23.08.0/bazaar/CMakeLists.txt
--- old/dolphin-plugins-23.04.3/bazaar/CMakeLists.txt   2023-07-04 
07:31:17.000000000 +0200
+++ new/dolphin-plugins-23.08.0/bazaar/CMakeLists.txt   2023-08-16 
23:13:18.000000000 +0200
@@ -3,8 +3,8 @@
 kcoreaddons_add_plugin(fileviewbazaarplugin SOURCES fileviewbazaarplugin.cpp 
fileviewbazaarplugin.h INSTALL_NAMESPACE "dolphin/vcs")
 
 target_link_libraries(fileviewbazaarplugin
-    KF5::KIOCore
-    KF5::I18n
-    KF5::CoreAddons
+    KF${QT_MAJOR_VERSION}::KIOCore
+    KF${QT_MAJOR_VERSION}::I18n
+    KF${QT_MAJOR_VERSION}::CoreAddons
     DolphinVcs
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dolphin-plugins-23.04.3/bazaar/fileviewbazaarplugin.json 
new/dolphin-plugins-23.08.0/bazaar/fileviewbazaarplugin.json
--- old/dolphin-plugins-23.04.3/bazaar/fileviewbazaarplugin.json        
2023-07-04 07:31:17.000000000 +0200
+++ new/dolphin-plugins-23.08.0/bazaar/fileviewbazaarplugin.json        
2023-08-16 23:13:18.000000000 +0200
@@ -11,6 +11,7 @@
         "Name[cs]": "Bazaar",
         "Name[de]": "Bazaar",
         "Name[en_GB]": "Bazaar",
+        "Name[eo]": "Bazaar",
         "Name[es]": "Bazaar",
         "Name[eu]": "Bazaar",
         "Name[fi]": "Bazaar",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-plugins-23.04.3/dropbox/CMakeLists.txt 
new/dolphin-plugins-23.08.0/dropbox/CMakeLists.txt
--- old/dolphin-plugins-23.04.3/dropbox/CMakeLists.txt  2023-07-04 
07:31:17.000000000 +0200
+++ new/dolphin-plugins-23.08.0/dropbox/CMakeLists.txt  2023-08-16 
23:13:18.000000000 +0200
@@ -6,8 +6,8 @@
     Qt::Core
     Qt::Widgets
     Qt::Network
-    KF5::I18n
-    KF5::XmlGui
-    KF5::KIOCore
+    KF${QT_MAJOR_VERSION}::I18n
+    KF${QT_MAJOR_VERSION}::XmlGui
+    KF${QT_MAJOR_VERSION}::KIOCore
     DolphinVcs
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dolphin-plugins-23.04.3/dropbox/fileviewdropboxplugin.json 
new/dolphin-plugins-23.08.0/dropbox/fileviewdropboxplugin.json
--- old/dolphin-plugins-23.04.3/dropbox/fileviewdropboxplugin.json      
2023-07-04 07:31:17.000000000 +0200
+++ new/dolphin-plugins-23.08.0/dropbox/fileviewdropboxplugin.json      
2023-08-16 23:13:18.000000000 +0200
@@ -11,6 +11,7 @@
         "Name[cs]": "Dropbox",
         "Name[de]": "Dropbox",
         "Name[en_GB]": "Dropbox",
+        "Name[eo]": "Dropbox",
         "Name[es]": "Dropbox",
         "Name[eu]": "Dropbox",
         "Name[fi]": "Dropbox",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-plugins-23.04.3/git/CMakeLists.txt 
new/dolphin-plugins-23.08.0/git/CMakeLists.txt
--- old/dolphin-plugins-23.04.3/git/CMakeLists.txt      2023-07-04 
07:31:17.000000000 +0200
+++ new/dolphin-plugins-23.08.0/git/CMakeLists.txt      2023-08-16 
23:13:18.000000000 +0200
@@ -24,15 +24,22 @@
     fileviewgitpluginsettings.kcfgc
 )
 
-target_link_libraries(fileviewgitplugin
+target_link_libraries(fileviewgitplugin PRIVATE
     Qt::Core
     Qt::Widgets
-    KF5::I18n
-    KF5::XmlGui
-    KF5::KIOCore
-    KF5::KIOFileWidgets
-    KF5::TextWidgets
+    KF${QT_MAJOR_VERSION}::I18n
+    KF${QT_MAJOR_VERSION}::XmlGui
+    KF${QT_MAJOR_VERSION}::KIOCore
+    KF${QT_MAJOR_VERSION}::KIOFileWidgets
+    KF${QT_MAJOR_VERSION}::TextWidgets
     DolphinVcs
 )
 
+if (QT_MAJOR_VERSION EQUAL "6")
+    target_link_libraries(
+        fileviewgitplugin PRIVATE
+        Qt6::Core5Compat
+    )
+endif()
+
 install(FILES fileviewgitpluginsettings.kcfg DESTINATION 
${KDE_INSTALL_KCFGDIR})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-plugins-23.04.3/git/fileviewgitplugin.json 
new/dolphin-plugins-23.08.0/git/fileviewgitplugin.json
--- old/dolphin-plugins-23.04.3/git/fileviewgitplugin.json      2023-07-04 
07:31:17.000000000 +0200
+++ new/dolphin-plugins-23.08.0/git/fileviewgitplugin.json      2023-08-16 
23:13:18.000000000 +0200
@@ -11,6 +11,7 @@
         "Name[cs]": "Git",
         "Name[de]": "Git",
         "Name[en_GB]": "Git",
+        "Name[eo]": "Git",
         "Name[es]": "Git",
         "Name[eu]": "Git",
         "Name[fi]": "Git",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-plugins-23.04.3/hg/CMakeLists.txt 
new/dolphin-plugins-23.08.0/hg/CMakeLists.txt
--- old/dolphin-plugins-23.04.3/hg/CMakeLists.txt       2023-07-04 
07:31:17.000000000 +0200
+++ new/dolphin-plugins-23.08.0/hg/CMakeLists.txt       2023-08-16 
23:13:18.000000000 +0200
@@ -1,4 +1,4 @@
-find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS
+find_package(KF${QT_MAJOR_VERSION} ${KF_MIN_VERSION} REQUIRED COMPONENTS
     TextEditor
     WidgetsAddons
 )
@@ -76,17 +76,24 @@
     fileviewhgpluginsettings.kcfgc
 )
 
-target_link_libraries(fileviewhgplugin
+target_link_libraries(fileviewhgplugin PRIVATE
     Qt::Core
     Qt::Widgets
-    KF5::KIOCore
-    KF5::I18n
-    KF5::CoreAddons
-    KF5::WidgetsAddons
-    KF5::TextEditor
+    KF${QT_MAJOR_VERSION}::KIOCore
+    KF${QT_MAJOR_VERSION}::I18n
+    KF${QT_MAJOR_VERSION}::CoreAddons
+    KF${QT_MAJOR_VERSION}::WidgetsAddons
+    KF${QT_MAJOR_VERSION}::TextEditor
     DolphinVcs
 )
 
+if (QT_MAJOR_VERSION EQUAL "6")
+    target_link_libraries(
+        fileviewhgplugin PRIVATE
+        Qt6::Core5Compat
+    )
+endif()
+
 install(FILES fileviewhgpluginsettings.kcfg DESTINATION ${KDE_INSTALL_KCFGDIR})
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-plugins-23.04.3/hg/fileviewhgplugin.json 
new/dolphin-plugins-23.08.0/hg/fileviewhgplugin.json
--- old/dolphin-plugins-23.04.3/hg/fileviewhgplugin.json        2023-07-04 
07:31:17.000000000 +0200
+++ new/dolphin-plugins-23.08.0/hg/fileviewhgplugin.json        2023-08-16 
23:13:18.000000000 +0200
@@ -11,6 +11,7 @@
         "Name[cs]": "Mercurial",
         "Name[de]": "Mercurial",
         "Name[en_GB]": "Mercurial",
+        "Name[eo]": "Mercurial",
         "Name[es]": "Mercurial",
         "Name[eu]": "Mercurial",
         "Name[fi]": "Mercurial",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-plugins-23.04.3/mountiso/CMakeLists.txt 
new/dolphin-plugins-23.08.0/mountiso/CMakeLists.txt
--- old/dolphin-plugins-23.04.3/mountiso/CMakeLists.txt 2023-07-04 
07:31:17.000000000 +0200
+++ new/dolphin-plugins-23.08.0/mountiso/CMakeLists.txt 2023-08-16 
23:13:18.000000000 +0200
@@ -3,10 +3,10 @@
 kcoreaddons_add_plugin(
     mountisoaction
     SOURCES mountisoaction.cpp mountisoaction.h
-    INSTALL_NAMESPACE "kf5/kfileitemaction")
+    INSTALL_NAMESPACE "kf${QT_MAJOR_VERSION}/kfileitemaction")
 
 target_link_libraries(mountisoaction
     Qt::DBus
-    KF5::I18n
-    KF5::KIOWidgets
-    KF5::Solid)
+    KF${QT_MAJOR_VERSION}::I18n
+    KF${QT_MAJOR_VERSION}::KIOWidgets
+    KF${QT_MAJOR_VERSION}::Solid)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-plugins-23.04.3/mountiso/mountisoaction.json 
new/dolphin-plugins-23.08.0/mountiso/mountisoaction.json
--- old/dolphin-plugins-23.04.3/mountiso/mountisoaction.json    2023-07-04 
07:31:17.000000000 +0200
+++ new/dolphin-plugins-23.08.0/mountiso/mountisoaction.json    2023-08-16 
23:13:18.000000000 +0200
@@ -13,6 +13,7 @@
         "Name[cs]": "Připojit ISO a obrazy disku",
         "Name[de]": "ISO- und Datenträger-Abbilder einhängen",
         "Name[en_GB]": "Mount ISO and disk images",
+        "Name[eo]": "Munti ISO- kaj disk-binaraĵojn",
         "Name[es]": "Montar imágenes ISO y de disco",
         "Name[eu]": "ISO eta disko irudiak muntatzea",
         "Name[fi]": "Liitä ja irrota ISO-levykuva",
@@ -38,7 +39,7 @@
         "Name[sl]": "Priklopi slike ISO in diskov",
         "Name[sv]": "Montera ISO- och diskavbilder",
         "Name[ta]": "ISO மற்றும் வட்டு 
கோப்புகளை ஏற்றும்",
-        "Name[tr]": "ISO ve disk kalıplarını bağla",
+        "Name[tr]": "ISO/Disk Kalıplarını Bağla",
         "Name[uk]": "Монтування образів ISO і дисків",
         "Name[vi]": "Gắn kết ISO và ảnh đĩa",
         "Name[x-test]": "xxMount ISO and disk imagesxx",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dolphin-plugins-23.04.3/org.kde.dolphin-plugins.metainfo.xml 
new/dolphin-plugins-23.08.0/org.kde.dolphin-plugins.metainfo.xml
--- old/dolphin-plugins-23.04.3/org.kde.dolphin-plugins.metainfo.xml    
2023-07-04 07:31:17.000000000 +0200
+++ new/dolphin-plugins-23.08.0/org.kde.dolphin-plugins.metainfo.xml    
2023-08-16 23:13:18.000000000 +0200
@@ -13,6 +13,7 @@
   <name xml:lang="da">Dolphin-plugins</name>
   <name xml:lang="de">Dolphin-Module</name>
   <name xml:lang="en-GB">Dolphin Plugins</name>
+  <name xml:lang="eo">Dolphin-Kromprogramoj</name>
   <name xml:lang="es">Complementos de Dolphin</name>
   <name xml:lang="et">Dolphini pluginad</name>
   <name xml:lang="eu">Dolphin pluginak</name>
@@ -54,6 +55,7 @@
   <summary xml:lang="da">Dolphin-integration af revisionsstyringssystemer, 
Dropbox, og disk-imagefiler.</summary>
   <summary xml:lang="de">Integration von Versionsverwaltungssystemen, Dropbox 
und Datenträgerabbildern in Dolphin.</summary>
   <summary xml:lang="en-GB">Dolphin integration for revision control systems, 
Dropbox, and disk images.</summary>
+  <summary xml:lang="eo">Dolphin-integriĝo por versiokontrolsistemoj, 
Dropbox, kaj diskaj binaraĵoj.</summary>
   <summary xml:lang="es">Integración en Dolphin de sistemas de control de 
versiones, Dropbox e imágenes de disco.</summary>
   <summary xml:lang="et">Dolphini lõimimine versioonihaldussüsteemide, 
Dropboxi ja kettatõmmistega.</summary>
   <summary xml:lang="eu">Dolphin-en bateratzea berrikuspen kontrol sistemekin, 
Dropbox-ekin, eta diskoetako irudiekin.</summary>
@@ -95,6 +97,7 @@
     <p xml:lang="da">Disse plugins integrerer Dolphin med 
revisionsstyringssystemerne Bazaar, Mercurial og Git. Et Dropbox-plugin giver 
handlingselementer til at holde dine filer synkroniserede med 
Dropbox-tjenesten. Et plugin til disk-imagefil-integration giver en montér- 
eller afmontér-handling.</p>
     <p xml:lang="de">Diese Module integrieren die Versionsverwaltungssysteme 
Bazaar, Mercurial und Git. Ein Dropbox-Modul stellt Aktionen zum Abgleichen von 
Dateien mit dem Dropbox-Dienst bereit. Datenträgerabbilder können ein- und 
ausgehängt werden.</p>
     <p xml:lang="en-GB">These plugins integrate Dolphin with the revision 
control systems Bazaar, Mercurial and Git. A Dropbox plugin gives action items 
to keep your files synced to the Dropbox service. A disk image integration 
plugin adds a mount or unmount action.</p>
+    <p xml:lang="eo">Ĉi tiuj kromaĵoj integras Dolphin kun la 
versiokontrolsistemoj Bazaar, Mercurial kaj Git. Dropbox kromaĵo donas 
agadaĵojn por konservi viajn dosierojn sinkronigitaj kun la Dropbox-servo. 
Kromprogramo pri diskenhava integriĝo aldonas agon de muntado aŭ 
malmuntado.</p>
     <p xml:lang="es">Este complemento proporciona a Dolphin los sistemas de 
control de versiones Bazaar, Mercurial y Git. El complemento de Dropbox 
proporciona acciones para mantener archivos sincronizados mediante el servicio 
Dropbox. Un complemento de integración de imágenes de disco añade las 
acciones montar y desmontar.</p>
     <p xml:lang="et">Need pluginad lõimivad Dolphini 
versioonihaldussüsteemidega Bazaar, Mercurial ja Git. Dropboxi plugin 
võimaldab hoida faile sünkroonis Dropboxi teenusega. Kettatõmmise plugin 
lisab ühendamise ja lahutamise toimingud.</p>
     <p xml:lang="eu">Plugin hauek Dolphin Bazaar, Mercurial eta Git 
berrikuspen kontrol sistemekin bateratzen du. Dropbox plugin batek ekintza 
elementuak ematen ditu zure fitxategiak Dropbox zerbitzuarekin sinkronizatuta 
mantentzeko. Diskoen irudiekin bateratzeko plugin batek muntatu edo desmuntatu 
ekintzak gehitzen ditu.</p>
@@ -139,9 +142,9 @@
   </categories>
   <icon type="stock">system-file-manager</icon>
   <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/dolphin-plugins-23.04.3/po/eo/fileviewsvnplugin.po 
new/dolphin-plugins-23.08.0/po/eo/fileviewsvnplugin.po
--- old/dolphin-plugins-23.04.3/po/eo/fileviewsvnplugin.po      2023-07-04 
07:31:17.000000000 +0200
+++ new/dolphin-plugins-23.08.0/po/eo/fileviewsvnplugin.po      2023-08-16 
23:13:18.000000000 +0200
@@ -6,8 +6,8 @@
 "Project-Id-Version: fileviewsvnplugin\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-03-12 00:46+0000\n"
-"PO-Revision-Date: 2010-06-20 20:01+0200\n"
-"Last-Translator: Axel Rousseau <[email protected]>\n"
+"PO-Revision-Date: 2023-03-20 22:31+0100\n"
+"Last-Translator: Oliver Kellogg <[email protected]>\n"
 "Language-Team: esperanto <[email protected]>\n"
 "Language: eo\n"
 "MIME-Version: 1.0\n"
@@ -47,12 +47,10 @@
 msgstr "SVN Forigado"
 
 #: fileviewsvnplugin.cpp:101
-#, fuzzy, kde-format
-#| msgctxt "@item:inmenu"
-#| msgid "SVN Delete"
+#, kde-format
 msgctxt "@item:inmenu"
 msgid "SVN Revert"
-msgstr "SVN Forigado"
+msgstr ""
 
 #: fileviewsvnplugin.cpp:107
 #, kde-format
@@ -61,28 +59,22 @@
 msgstr ""
 
 #: fileviewsvnplugin.cpp:115
-#, fuzzy, kde-format
-#| msgctxt "@item:inmenu"
-#| msgid "SVN Commit..."
+#, kde-format
 msgctxt "@action:inmenu"
 msgid "SVN Log..."
-msgstr "SVN Commit..."
+msgstr ""
 
 #: fileviewsvnplugin.cpp:120
-#, fuzzy, kde-format
-#| msgctxt "@item:inmenu"
-#| msgid "SVN Commit..."
+#, kde-format
 msgctxt "@action:inmenu"
 msgid "SVN Checkout..."
-msgstr "SVN Commit..."
+msgstr ""
 
 #: fileviewsvnplugin.cpp:125
-#, fuzzy, kde-format
-#| msgctxt "@item:inmenu"
-#| msgid "SVN Commit..."
+#, kde-format
 msgctxt "@action:inmenu"
 msgid "SVN Cleanup..."
-msgstr "SVN Commit..."
+msgstr ""
 
 #: fileviewsvnplugin.cpp:220
 #, kde-format
@@ -91,9 +83,7 @@
 msgstr ""
 
 #: fileviewsvnplugin.cpp:356
-#, fuzzy, kde-format
-#| msgctxt "@item:inmenu"
-#| msgid "SVN Update"
+#, kde-format
 msgctxt "@title:window"
 msgid "SVN Update"
 msgstr "SVN Update"
@@ -102,13 +92,13 @@
 #, kde-format
 msgctxt "@info:status"
 msgid "Updating SVN repository..."
-msgstr ""
+msgstr "Ĝisdatigante SVN-deponejon..."
 
 #: fileviewsvnplugin.cpp:361
 #, kde-format
 msgctxt "@info:status"
 msgid "Update of SVN repository failed."
-msgstr ""
+msgstr "Ĝisdatigo de SVN-deponejo malsukcesis."
 
 #: fileviewsvnplugin.cpp:362
 #, kde-format
@@ -172,36 +162,28 @@
 msgstr ""
 
 #: fileviewsvnplugin.cpp:465 fileviewsvnplugin.cpp:551
-#, fuzzy, kde-format
-#| msgctxt "@item:inmenu"
-#| msgid "SVN Delete"
+#, kde-format
 msgctxt "@title:window"
 msgid "SVN Revert"
-msgstr "SVN Forigado"
+msgstr ""
 
 #: fileviewsvnplugin.cpp:469
-#, fuzzy, kde-format
-#| msgctxt "@info:status"
-#| msgid "Adding files to SVN repository..."
+#, kde-format
 msgctxt "@info:status"
 msgid "Reverting files from SVN repository..."
-msgstr "Aldonas dosierojn al la SVN deponejo..."
+msgstr ""
 
 #: fileviewsvnplugin.cpp:470
-#, fuzzy, kde-format
-#| msgctxt "@info:status"
-#| msgid "Adding files to SVN repository..."
+#, kde-format
 msgctxt "@info:status"
 msgid "Reverting of files from SVN repository failed."
-msgstr "Aldonas dosierojn al la SVN deponejo..."
+msgstr ""
 
 #: fileviewsvnplugin.cpp:471
-#, fuzzy, kde-format
-#| msgctxt "@info:status"
-#| msgid "Adding files to SVN repository..."
+#, kde-format
 msgctxt "@info:status"
 msgid "Reverted files from SVN repository."
-msgstr "Aldonas dosierojn al la SVN deponejo..."
+msgstr ""
 
 #: fileviewsvnplugin.cpp:555
 #, kde-format
@@ -254,11 +236,9 @@
 
 #. i18n: ectx: label, entry (showUpdates), group (General)
 #: fileviewsvnpluginsettings.kcfg:9
-#, fuzzy, kde-format
-#| msgctxt "@item:inmenu"
-#| msgid "SVN Update"
+#, kde-format
 msgid "Show updates"
-msgstr "SVN Update"
+msgstr ""
 
 #: svncheckoutdialog.cpp:56
 #, kde-format
@@ -286,11 +266,9 @@
 
 #. i18n: ectx: property (windowTitle), widget (QWidget, SvnCheckoutDialog)
 #: svncheckoutdialog.ui:20
-#, fuzzy, kde-format
-#| msgctxt "@item:inmenu"
-#| msgid "SVN Commit..."
+#, kde-format
 msgid "SVN Checkout"
-msgstr "SVN Commit..."
+msgstr ""
 
 #. i18n: ectx: property (text), widget (QLabel, label)
 #: svncheckoutdialog.ui:26
@@ -345,11 +323,9 @@
 
 #. i18n: ectx: property (windowTitle), widget (QWidget, SvnCleanupDialog)
 #: svncleanupdialog.ui:20
-#, fuzzy, kde-format
-#| msgctxt "@item:inmenu"
-#| msgid "SVN Commit..."
+#, kde-format
 msgid "SVN Cleanup..."
-msgstr "SVN Commit..."
+msgstr ""
 
 #. i18n: ectx: property (text), widget (QLabel, label)
 #: svncleanupdialog.ui:26
@@ -394,20 +370,16 @@
 msgstr "Enmeti"
 
 #: svncommitdialog.cpp:114
-#, fuzzy, kde-format
-#| msgctxt "@item:inmenu"
-#| msgid "SVN Delete"
+#, kde-format
 msgctxt "@item:inmenu"
 msgid "Revert"
-msgstr "SVN Forigado"
+msgstr ""
 
 #: svncommitdialog.cpp:121
-#, fuzzy, kde-format
-#| msgctxt "@item:inmenu"
-#| msgid "SVN Update"
+#, kde-format
 msgctxt "@item:inmenu"
 msgid "Show changes"
-msgstr "SVN Update"
+msgstr ""
 
 #: svncommitdialog.cpp:128
 #, kde-format
@@ -446,12 +418,10 @@
 msgstr ""
 
 #: svncommitdialog.cpp:219
-#, fuzzy, kde-format
-#| msgctxt "@item:inmenu"
-#| msgid "SVN Delete"
+#, kde-format
 msgctxt "@item:intable"
 msgid "Deleted"
-msgstr "SVN Forigado"
+msgstr ""
 
 #: svncommitdialog.cpp:222
 #, kde-format
@@ -482,11 +452,9 @@
 msgstr ""
 
 #: svnlogdialog.cpp:102
-#, fuzzy, kde-format
-#| msgctxt "@item:inmenu"
-#| msgid "SVN Update"
+#, kde-format
 msgid "Show changes"
-msgstr "SVN Update"
+msgstr ""
 
 #: svnlogdialog.cpp:109
 #, kde-format
@@ -519,11 +487,9 @@
 
 #. i18n: ectx: property (windowTitle), widget (QWidget, SvnLogDialog)
 #: svnlogdialog.ui:20
-#, fuzzy, kde-format
-#| msgctxt "@item:inmenu"
-#| msgid "SVN Commit..."
+#, kde-format
 msgid "SVN Log"
-msgstr "SVN Commit..."
+msgstr ""
 
 #. i18n: ectx: property (text), widget (QTableWidget, tLog)
 #: svnlogdialog.ui:55
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-plugins-23.04.3/po/eo/mountisoaction.po 
new/dolphin-plugins-23.08.0/po/eo/mountisoaction.po
--- old/dolphin-plugins-23.04.3/po/eo/mountisoaction.po 1970-01-01 
01:00:00.000000000 +0100
+++ new/dolphin-plugins-23.08.0/po/eo/mountisoaction.po 2023-08-16 
23:13:18.000000000 +0200
@@ -0,0 +1,30 @@
+# translation of mountisoaction.po to esperanto
+# Copyright (C) 2022 Free Software Foundation, Inc.
+# This file is distributed under the same license as the dolphin-plugins 
package.
+# Oliver Kellogg <[email protected], 2023.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: dolphin-plugins\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2022-10-07 00:49+0000\n"
+"PO-Revision-Date: 2023-06-11 23:52+0100\n"
+"Last-Translator: Oliver Kellogg <[email protected]>\n"
+"Language-Team: Esperanto <[email protected]>\n"
+"Language: eo\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"
+
+#: mountisoaction.cpp:219
+#, kde-format
+msgctxt "@action:inmenu Action to mount a disk image"
+msgid "Mount"
+msgstr "Munti"
+
+#: mountisoaction.cpp:228
+#, kde-format
+msgctxt "@action:inmenu Action to unmount a disk image"
+msgid "Unmount"
+msgstr "Malmunti"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-plugins-23.04.3/po/nb/mountisoaction.po 
new/dolphin-plugins-23.08.0/po/nb/mountisoaction.po
--- old/dolphin-plugins-23.04.3/po/nb/mountisoaction.po 1970-01-01 
01:00:00.000000000 +0100
+++ new/dolphin-plugins-23.08.0/po/nb/mountisoaction.po 2023-08-16 
23:13:18.000000000 +0200
@@ -0,0 +1,32 @@
+# Translation of mountisoaction to Norwegian Bokmål
+#
+# John Ivar Eriksen <[email protected]>, 2023.
+msgid ""
+msgstr ""
+"Project-Id-Version: dolphin-plugins\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2022-10-07 00:49+0000\n"
+"PO-Revision-Date: 2023-07-17 11:21+0200\n"
+"Last-Translator: John Ivar Eriksen <[email protected]>\n"
+"Language-Team: Norwegian BokmÃ¥l <[email protected]>\n"
+"Language: nb\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 22.12.3\n"
+"X-Environment: kde\n"
+"X-Accelerator-Marker: &\n"
+"X-Text-Markup: kde4\n"
+
+#: mountisoaction.cpp:219
+#, kde-format
+msgctxt "@action:inmenu Action to mount a disk image"
+msgid "Mount"
+msgstr "Monter"
+
+#: mountisoaction.cpp:228
+#, kde-format
+msgctxt "@action:inmenu Action to unmount a disk image"
+msgid "Unmount"
+msgstr "Avmonter"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-plugins-23.04.3/po/sv/fileviewhgplugin.po 
new/dolphin-plugins-23.08.0/po/sv/fileviewhgplugin.po
--- old/dolphin-plugins-23.04.3/po/sv/fileviewhgplugin.po       2023-07-04 
07:31:17.000000000 +0200
+++ new/dolphin-plugins-23.08.0/po/sv/fileviewhgplugin.po       2023-08-16 
23:13:18.000000000 +0200
@@ -1,20 +1,20 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Stefan Asserhall <[email protected]>, 2011, 2012, 2015, 2017, 
2020.
+# Stefan Asserhall <[email protected]>, 2011, 2012, 2015, 2017, 
2020, 2023.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-10-17 00:49+0000\n"
-"PO-Revision-Date: 2020-12-07 11:24+0100\n"
+"PO-Revision-Date: 2023-07-24 11:16+0200\n"
 "Last-Translator: Stefan Asserhäll <[email protected]>\n"
 "Language-Team: Swedish <[email protected]>\n"
 "Language: sv\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 19.04.3\n"
+"X-Generator: Lokalize 20.08.1\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
 #: backoutdialog.cpp:31
@@ -603,11 +603,9 @@
 msgstr "Vill du ta bort markerade filer från arkivet?"
 
 #: fileviewhgplugin.cpp:512
-#, fuzzy, kde-format
-#| msgctxt "@label:button"
-#| msgid "Remove Patches"
+#, kde-format
 msgid "Remove Files"
-msgstr "Ta bort programfixar"
+msgstr "Ta bort filer"
 
 #: fileviewhgplugin.cpp:522
 #, kde-kuit-format
@@ -742,7 +740,7 @@
 #: fileviewhgplugin.cpp:706 fileviewhgplugin.cpp:735
 #, kde-format
 msgid "Revert"
-msgstr ""
+msgstr "Återställ"
 
 #: fileviewhgplugin.cpp:716 fileviewhgplugin.cpp:745
 #, kde-kuit-format
@@ -777,7 +775,7 @@
 #: fileviewhgplugin.cpp:735
 #, kde-format
 msgid "Revert All"
-msgstr ""
+msgstr "Återställ alla"
 
 #: fileviewhgplugin.cpp:758
 #, kde-kuit-format
@@ -818,7 +816,7 @@
 #: fileviewhgplugin.cpp:822
 #, kde-format
 msgid "Rollback"
-msgstr ""
+msgstr "Återgå"
 
 #: fileviewhgplugin.cpp:832
 #, kde-kuit-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dolphin-plugins-23.04.3/po/zh_CN/fileviewbazaarplugin.po 
new/dolphin-plugins-23.08.0/po/zh_CN/fileviewbazaarplugin.po
--- old/dolphin-plugins-23.04.3/po/zh_CN/fileviewbazaarplugin.po        
2023-07-04 07:31:17.000000000 +0200
+++ new/dolphin-plugins-23.08.0/po/zh_CN/fileviewbazaarplugin.po        
2023-08-16 23:13:18.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-12 00:49+0000\n"
-"PO-Revision-Date: 2023-07-03 11:40\n"
+"PO-Revision-Date: 2023-08-02 12:43\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dolphin-plugins-23.04.3/po/zh_CN/fileviewgitplugin.po 
new/dolphin-plugins-23.08.0/po/zh_CN/fileviewgitplugin.po
--- old/dolphin-plugins-23.04.3/po/zh_CN/fileviewgitplugin.po   2023-07-04 
07:31:17.000000000 +0200
+++ new/dolphin-plugins-23.08.0/po/zh_CN/fileviewgitplugin.po   2023-08-16 
23:13:18.000000000 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-08-05 00:47+0000\n"
-"PO-Revision-Date: 2023-07-03 11:40\n"
+"PO-Revision-Date: 2023-08-02 12:43\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-plugins-23.04.3/po/zh_CN/fileviewhgplugin.po 
new/dolphin-plugins-23.08.0/po/zh_CN/fileviewhgplugin.po
--- old/dolphin-plugins-23.04.3/po/zh_CN/fileviewhgplugin.po    2023-07-04 
07:31:17.000000000 +0200
+++ new/dolphin-plugins-23.08.0/po/zh_CN/fileviewhgplugin.po    2023-08-16 
23:13:18.000000000 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-10-17 00:49+0000\n"
-"PO-Revision-Date: 2023-07-03 11:40\n"
+"PO-Revision-Date: 2023-08-02 12:43\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dolphin-plugins-23.04.3/po/zh_CN/fileviewsvnplugin.po 
new/dolphin-plugins-23.08.0/po/zh_CN/fileviewsvnplugin.po
--- old/dolphin-plugins-23.04.3/po/zh_CN/fileviewsvnplugin.po   2023-07-04 
07:31:17.000000000 +0200
+++ new/dolphin-plugins-23.08.0/po/zh_CN/fileviewsvnplugin.po   2023-08-16 
23:13:18.000000000 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-03-12 00:46+0000\n"
-"PO-Revision-Date: 2023-07-03 11:40\n"
+"PO-Revision-Date: 2023-08-02 12:43\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-plugins-23.04.3/po/zh_CN/mountisoaction.po 
new/dolphin-plugins-23.08.0/po/zh_CN/mountisoaction.po
--- old/dolphin-plugins-23.04.3/po/zh_CN/mountisoaction.po      2023-07-04 
07:31:17.000000000 +0200
+++ new/dolphin-plugins-23.08.0/po/zh_CN/mountisoaction.po      2023-08-16 
23:13:18.000000000 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-10-07 00:49+0000\n"
-"PO-Revision-Date: 2023-07-03 11:40\n"
+"PO-Revision-Date: 2023-08-02 12:43\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-plugins-23.04.3/svn/CMakeLists.txt 
new/dolphin-plugins-23.08.0/svn/CMakeLists.txt
--- old/dolphin-plugins-23.04.3/svn/CMakeLists.txt      2023-07-04 
07:31:17.000000000 +0200
+++ new/dolphin-plugins-23.08.0/svn/CMakeLists.txt      2023-08-16 
23:13:18.000000000 +0200
@@ -34,10 +34,10 @@
 target_link_libraries(fileviewsvnplugin
     Qt::Core
     Qt::Widgets
-    KF5::I18n
-    KF5::XmlGui
-    KF5::KIOCore
-    KF5::KIOWidgets
+    KF${QT_MAJOR_VERSION}::I18n
+    KF${QT_MAJOR_VERSION}::XmlGui
+    KF${QT_MAJOR_VERSION}::KIOCore
+    KF${QT_MAJOR_VERSION}::KIOWidgets
     DolphinVcs
 )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-plugins-23.04.3/svn/fileviewsvnplugin.cpp 
new/dolphin-plugins-23.08.0/svn/fileviewsvnplugin.cpp
--- old/dolphin-plugins-23.04.3/svn/fileviewsvnplugin.cpp       2023-07-04 
07:31:17.000000000 +0200
+++ new/dolphin-plugins-23.08.0/svn/fileviewsvnplugin.cpp       2023-08-16 
23:13:18.000000000 +0200
@@ -544,7 +544,7 @@
     }
 
     for (const auto &i : qAsConst(filesPath)) {
-        m_contextItems.append( QUrl::fromLocalFile(i) );
+        m_contextItems.append(KFileItem(QUrl::fromLocalFile(i)));
     }
     m_contextDir.clear();
 
@@ -622,7 +622,7 @@
 void FileViewSvnPlugin::addFiles(const QStringList& filesPath)
 {
     for (const auto &i : qAsConst(filesPath)) {
-        m_contextItems.append( QUrl::fromLocalFile(i) );
+        m_contextItems.append(KFileItem(QUrl::fromLocalFile(i)));
     }
     m_contextDir.clear();
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-plugins-23.04.3/svn/fileviewsvnplugin.json 
new/dolphin-plugins-23.08.0/svn/fileviewsvnplugin.json
--- old/dolphin-plugins-23.04.3/svn/fileviewsvnplugin.json      2023-07-04 
07:31:17.000000000 +0200
+++ new/dolphin-plugins-23.08.0/svn/fileviewsvnplugin.json      2023-08-16 
23:13:18.000000000 +0200
@@ -11,6 +11,7 @@
         "Name[cs]": "Subversion",
         "Name[de]": "Subversion",
         "Name[en_GB]": "Subversion",
+        "Name[eo]": "Subversion",
         "Name[es]": "Subversion",
         "Name[eu]": "Subversion",
         "Name[fi]": "Subversion",

Reply via email to