Hello community,

here is the log from the commit of package dolphin for openSUSE:Factory checked 
in at 2016-09-14 23:01:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/dolphin (Old)
 and      /work/SRC/openSUSE:Factory/.dolphin.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "dolphin"

Changes:
--------
--- /work/SRC/openSUSE:Factory/dolphin/dolphin.changes  2016-08-29 
14:32:34.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.dolphin.new/dolphin.changes     2016-09-14 
23:01:30.000000000 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:05:04 UTC 2016 - [email protected]
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+-------------------------------------------------------------------

Old:
----
  dolphin-16.08.0.tar.xz

New:
----
  dolphin-16.08.1.tar.xz

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

Other differences:
------------------
++++++ dolphin.spec ++++++
--- /var/tmp/diff_new_pack.ruunhc/_old  2016-09-14 23:01:31.000000000 +0200
+++ /var/tmp/diff_new_pack.ruunhc/_new  2016-09-14 23:01:31.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           dolphin
-Version:        16.08.0
+Version:        16.08.1
 Release:        0
 Summary:        KDE File Manager
 License:        GPL-2.0+

++++++ dolphin-16.08.0.tar.xz -> dolphin-16.08.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-16.08.0/CMakeLists.txt 
new/dolphin-16.08.1/CMakeLists.txt
--- old/dolphin-16.08.0/CMakeLists.txt  2016-08-10 01:01:57.000000000 +0200
+++ new/dolphin-16.08.1/CMakeLists.txt  2016-09-05 00:29:58.000000000 +0200
@@ -5,7 +5,7 @@
 # KDE Application Version, managed by release script
 set (KDE_APPLICATIONS_VERSION_MAJOR "16")
 set (KDE_APPLICATIONS_VERSION_MINOR "08")
-set (KDE_APPLICATIONS_VERSION_MICRO "0")
+set (KDE_APPLICATIONS_VERSION_MICRO "1")
 set (KDE_APPLICATIONS_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
 
 set(QT_MIN_VERSION "5.4.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-16.08.0/src/dolphincontextmenu.cpp 
new/dolphin-16.08.1/src/dolphincontextmenu.cpp
--- old/dolphin-16.08.0/src/dolphincontextmenu.cpp      2016-08-10 
01:01:57.000000000 +0200
+++ new/dolphin-16.08.1/src/dolphincontextmenu.cpp      2016-09-05 
00:29:58.000000000 +0200
@@ -48,6 +48,7 @@
 #include <QKeyEvent>
 #include <QMenuBar>
 #include <QMenu>
+#include <QMimeDatabase>
 
 #include <panels/places/placesitem.h>
 #include <panels/places/placesitemmodel.h>
@@ -519,8 +520,19 @@
         }
     }
 
-    const auto jsonPlugins = 
KPluginLoader::findPlugins(QStringLiteral("kf5/kfileitemaction"), [](const 
KPluginMetaData& metaData) {
-        return 
metaData.serviceTypes().contains(QStringLiteral("KFileItemAction/Plugin"));
+    const auto jsonPlugins = 
KPluginLoader::findPlugins(QStringLiteral("kf5/kfileitemaction"), [=](const 
KPluginMetaData& metaData) {
+        if 
(!metaData.serviceTypes().contains(QStringLiteral("KFileItemAction/Plugin"))) {
+            return false;
+        }
+
+        auto mimeType = QMimeDatabase().mimeTypeForName(commonMimeType);
+        foreach (const auto& supportedMimeType, metaData.mimeTypes()) {
+            if (mimeType.inherits(supportedMimeType)) {
+                return true;
+            }
+        }
+
+        return false;
     });
 
     foreach (const auto& jsonMetadata, jsonPlugins) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-16.08.0/src/dolphinpart.desktop 
new/dolphin-16.08.1/src/dolphinpart.desktop
--- old/dolphin-16.08.0/src/dolphinpart.desktop 2016-08-10 01:01:57.000000000 
+0200
+++ new/dolphin-16.08.1/src/dolphinpart.desktop 2016-09-05 00:29:58.000000000 
+0200
@@ -11,6 +11,7 @@
 Name[el]=Dolphin View
 Name[en_GB]=Dolphin View
 Name[es]=Vista de Dolphin
+Name[et]=Dolphini vaade
 Name[fi]=Dolphin-näkymä
 Name[fr]=Vue de Dolphin
 Name[gl]=Vista de Dolphin
@@ -67,6 +68,7 @@
 Name[el]=Εικονίδια
 Name[en_GB]=Icons
 Name[es]=Iconos
+Name[et]=Ikoonid
 Name[fi]=Kuvakkeet
 Name[fr]=Icônes
 Name[gl]=Iconas
@@ -114,6 +116,7 @@
 Name[el]=Σύμπτυξη
 Name[en_GB]=Compact
 Name[es]=Compacto
+Name[et]=Kompaktne
 Name[fi]=Tiivis
 Name[fr]=Concis
 Name[gl]=Compacta
@@ -159,6 +162,7 @@
 Name[el]=Λεπτομέρειες
 Name[en_GB]=Details
 Name[es]=Detalles
+Name[et]=Üksikasjad
 Name[fi]=Yksityiskohdat
 Name[fr]=Détails
 Name[gl]=Detalles
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-16.08.0/src/org.kde.dolphin.desktop 
new/dolphin-16.08.1/src/org.kde.dolphin.desktop
--- old/dolphin-16.08.0/src/org.kde.dolphin.desktop     2016-08-10 
01:01:57.000000000 +0200
+++ new/dolphin-16.08.1/src/org.kde.dolphin.desktop     2016-09-05 
00:29:58.000000000 +0200
@@ -10,6 +10,7 @@
 Name[el]=Dolphin
 Name[en_GB]=Dolphin
 Name[es]=Dolphin
+Name[et]=Dolphin
 Name[fi]=Dolphin
 Name[fr]=Dolphin
 Name[gl]=Dolphin
@@ -57,6 +58,7 @@
 GenericName[el]=Διαχειριστής αρχείων
 GenericName[en_GB]=File Manager
 GenericName[es]=Gestor de archivos
+GenericName[et]=Failihaldur
 GenericName[fi]=Tiedostonhallinta
 GenericName[fr]=Gestionnaire de fichiers
 GenericName[gl]=Xestor de ficheiros
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dolphin-16.08.0/src/settings/kcm/kcmdolphingeneral.desktop 
new/dolphin-16.08.1/src/settings/kcm/kcmdolphingeneral.desktop
--- old/dolphin-16.08.0/src/settings/kcm/kcmdolphingeneral.desktop      
2016-08-10 01:01:57.000000000 +0200
+++ new/dolphin-16.08.1/src/settings/kcm/kcmdolphingeneral.desktop      
2016-09-05 00:29:58.000000000 +0200
@@ -9,6 +9,7 @@
 Name[el]=Dolphin Γενικά
 Name[en_GB]=Dolphin General
 Name[es]=Preferencias generales de Dolphin
+Name[et]=Dolphin üldiselt
 Name[fi]=Dolphin – yleiset
 Name[fr]=Dolphin général
 Name[gl]=Xerais de Dolphin
@@ -51,6 +52,7 @@
 Comment[el]=Η υπηρεσία αυτή επιτρέπει τη διαμόρφωση των γενικών ρυθμίσεων του 
Dolphin
 Comment[en_GB]=This service allows configuration of general Dolphin settings.
 Comment[es]=Este servicio permite configurar las preferencias generales de 
Dolphin.
+Comment[et]=See teenus võimaldab seadistada Dolphini üldisi seadistusi.
 Comment[fi]=Tällä palvelulla voi muokata Dolphinin yleisasetuksia.
 Comment[fr]=Ce service permet de configurer les paramètres généraux de Dolphin.
 Comment[gl]=Este servizo permite configurar opcións xerais de Dolphin.
@@ -104,6 +106,7 @@
 Name[el]=Γενικά
 Name[en_GB]=General
 Name[es]=General
+Name[et]=Üldine
 Name[fi]=Yleiset
 Name[fr]=Général
 Name[gl]=Xerais
@@ -145,6 +148,7 @@
 Comment[el]=Διαμόρφωση γενικών ρυθμίσεων διαχείρισης αρχείων
 Comment[en_GB]=Configure general file manager settings
 Comment[es]=Configurar las preferencias generales del gestor de archivos
+Comment[et]=Failihalduri üldine seadistamine
 Comment[fi]=Tiedostonhallinnan yleisasetukset
 Comment[fr]=Configuration des paramètres généraux du gestionnaire de fichiers
 Comment[gl]=Configurar opcións xerais de xestores de ficheiros.
@@ -186,6 +190,7 @@
 X-KDE-Keywords[el]=διαχειριστής αρχείων
 X-KDE-Keywords[en_GB]=file manager
 X-KDE-Keywords[es]=gestor de archivos
+X-KDE-Keywords[et]=failihaldur
 X-KDE-Keywords[fi]=tiedostonhallinta
 X-KDE-Keywords[fr]=gestionnaire de fichiers
 X-KDE-Keywords[gl]=xestor de ficheiros
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dolphin-16.08.0/src/settings/kcm/kcmdolphinnavigation.desktop 
new/dolphin-16.08.1/src/settings/kcm/kcmdolphinnavigation.desktop
--- old/dolphin-16.08.0/src/settings/kcm/kcmdolphinnavigation.desktop   
2016-08-10 01:01:57.000000000 +0200
+++ new/dolphin-16.08.1/src/settings/kcm/kcmdolphinnavigation.desktop   
2016-09-05 00:29:58.000000000 +0200
@@ -9,6 +9,7 @@
 Name[el]=Dolphin Πλοήγηση
 Name[en_GB]=Dolphin Navigation
 Name[es]=Navegación de Dolphin
+Name[et]=Dolphini liikumine
 Name[fi]=Dolphin – selaus
 Name[fr]=Navigation avec Dolphin
 Name[gl]=Navegación de Dolphin
@@ -51,6 +52,7 @@
 Comment[el]=Η υπηρεσία αυτή επιτρέπει τη διαμόρφωση της πλοήγησης του Dolphin
 Comment[en_GB]=This service allows configuration of the Dolphin navigation.
 Comment[es]=Este servicio permite configurar la navegación de Dolphin.
+Comment[et]=See teenus võimaldab seadistada Dolphinis liikumist.
 Comment[fi]=Tällä palvelulla voi muokata Dolphinin selausasetuksia.
 Comment[fr]=Ce service permet de configurer la navigation avec Dolphin.
 Comment[gl]=Este servizo permite configurar a navegación de Dolphin.
@@ -103,6 +105,7 @@
 Name[el]=Πλοήγηση
 Name[en_GB]=Navigation
 Name[es]=Navegación
+Name[et]=Liikumine
 Name[fi]=Selaus
 Name[fr]=Navigation
 Name[gl]=Navegación
@@ -145,6 +148,7 @@
 Comment[el]=Διαμόρφωση πλοήγησης του διαχειριστή αρχείων
 Comment[en_GB]=Configure file manager navigation
 Comment[es]=Configurar la navegación del gestor de archivos
+Comment[et]=Failihalduris liikumise seadistamine
 Comment[fi]=Tiedostonhallinnan selausasetukset
 Comment[fr]=Configuration la navigation avec le gestionnaire de fichiers
 Comment[gl]=Configurar a navegación do xestor de ficheiros.
@@ -187,6 +191,7 @@
 X-KDE-Keywords[el]=διαχειριστής αρχείων
 X-KDE-Keywords[en_GB]=file manager
 X-KDE-Keywords[es]=gestor de archivos
+X-KDE-Keywords[et]=failihaldur
 X-KDE-Keywords[fi]=tiedostonhallinta
 X-KDE-Keywords[fr]=gestionnaire de fichiers
 X-KDE-Keywords[gl]=xestor de ficheiros
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dolphin-16.08.0/src/settings/kcm/kcmdolphinservices.desktop 
new/dolphin-16.08.1/src/settings/kcm/kcmdolphinservices.desktop
--- old/dolphin-16.08.0/src/settings/kcm/kcmdolphinservices.desktop     
2016-08-10 01:01:57.000000000 +0200
+++ new/dolphin-16.08.1/src/settings/kcm/kcmdolphinservices.desktop     
2016-09-05 00:29:58.000000000 +0200
@@ -9,6 +9,7 @@
 Name[el]=Dolphin Υπηρεσίες
 Name[en_GB]=Dolphin Services
 Name[es]=Servicios de Dolphin
+Name[et]=Dolphini teenused
 Name[fi]=Dolphin – palvelut
 Name[fr]=Services de Dolphin
 Name[gl]=Servizos de Dolphin
@@ -61,6 +62,7 @@
 Name[el]=Υπηρεσίες
 Name[en_GB]=Services
 Name[es]=Servicios
+Name[et]=Teenused
 Name[fi]=Palvelut
 Name[fr]=Services
 Name[gl]=Servizos
@@ -102,6 +104,7 @@
 Comment[el]=Διαμόρφωση υπηρεσιών του διαχειριστή αρχείων
 Comment[en_GB]=Configure file manager services
 Comment[es]=Configurar los servicios del gestor de archivos
+Comment[et]=Failihalduri teenuste seadistamine
 Comment[fi]=Tiedostonhallinnan palveluasetukset
 Comment[fr]=Configuration des services du gestionnaire de fichiers
 Comment[gl]=Configurar servizos de xestores de ficheiros.
@@ -143,6 +146,7 @@
 X-KDE-Keywords[el]=διαχειριστής αρχείων
 X-KDE-Keywords[en_GB]=file manager
 X-KDE-Keywords[es]=gestor de archivos
+X-KDE-Keywords[et]=failihaldur
 X-KDE-Keywords[fi]=tiedostonhallinta
 X-KDE-Keywords[fr]=gestionnaire de fichiers
 X-KDE-Keywords[gl]=xestor de ficheiros
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dolphin-16.08.0/src/settings/kcm/kcmdolphinviewmodes.desktop 
new/dolphin-16.08.1/src/settings/kcm/kcmdolphinviewmodes.desktop
--- old/dolphin-16.08.0/src/settings/kcm/kcmdolphinviewmodes.desktop    
2016-08-10 01:01:57.000000000 +0200
+++ new/dolphin-16.08.1/src/settings/kcm/kcmdolphinviewmodes.desktop    
2016-09-05 00:29:58.000000000 +0200
@@ -9,6 +9,7 @@
 Name[el]=Dolphin Λειτουργίες Προβολής
 Name[en_GB]=Dolphin View Modes
 Name[es]=Modos de vistas de Dolphin
+Name[et]=Dolphini vaaterežiimid
 Name[fi]=Dolphin – näkymät
 Name[fr]=Modes d'affichage de Dolphin
 Name[gl]=Modos de vista de Dolphin
@@ -51,6 +52,7 @@
 Comment[el]=Η υπηρεσία αυτή επιτρέπει τη διαμόρφωση των λειτουργιών προβολής 
του Dolphin
 Comment[en_GB]=This service allows configuration of the Dolphin view modes.
 Comment[es]=Este servicio permite configurar los modos de las vistas de 
Dolphin.
+Comment[et]=See teenus võimaldab seadistada Dolphini vaaterežiime.
 Comment[fi]=Tällä palvelulla voi muokata Dolphinin katselutilojen asetuksia.
 Comment[fr]=Ce service permet de configurer les modes d'affichage de Dolphin.
 Comment[gl]=Este servizo permite configurar os modos de vista de Dolphin.
@@ -103,6 +105,7 @@
 Name[el]=Λειτουργίες Προβολής
 Name[en_GB]=View Modes
 Name[es]=Modos de vistas
+Name[et]=Vaaterežiimid
 Name[fi]=Näkymät
 Name[fr]=Modes d'affichage
 Name[gl]=Modos de vista
@@ -145,6 +148,7 @@
 Comment[el]=Διαμόρφωση των λειτουργιών προβολής του διαχειριστή αρχείων
 Comment[en_GB]=Configure file manager view modes
 Comment[es]=Configura los modos de vistas del gestor de archivos
+Comment[et]=Failihalduri vaaterežiimide seadistamine
 Comment[fi]=Tiedostonhallinnan katselutilojen asetukset
 Comment[fr]=Configuration les modes d'affichage du gestionnaire de fichiers
 Comment[gl]=Configurar os modos de vista do xestor de ficheiros.
@@ -187,6 +191,7 @@
 X-KDE-Keywords[el]=διαχειριστής αρχείων
 X-KDE-Keywords[en_GB]=file manager
 X-KDE-Keywords[es]=gestor de archivos
+X-KDE-Keywords[et]=failihaldur
 X-KDE-Keywords[fi]=tiedostonhallinta
 X-KDE-Keywords[fr]=gestionnaire de fichiers
 X-KDE-Keywords[gl]=xestor de ficheiros
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dolphin-16.08.0/src/views/versioncontrol/fileviewversioncontrolplugin.desktop
 
new/dolphin-16.08.1/src/views/versioncontrol/fileviewversioncontrolplugin.desktop
--- 
old/dolphin-16.08.0/src/views/versioncontrol/fileviewversioncontrolplugin.desktop
   2016-08-10 01:01:57.000000000 +0200
+++ 
new/dolphin-16.08.1/src/views/versioncontrol/fileviewversioncontrolplugin.desktop
   2016-09-05 00:29:58.000000000 +0200
@@ -11,6 +11,7 @@
 Comment[el]=Πρόσθετο ελέγχου εκδόσεων για προβολές αρχείων
 Comment[en_GB]=Version Control Plugin for File Views
 Comment[es]=Complemento de control de versiones para las vistas de archivos
+Comment[et]=Failivaadete versioonihaldusplugin
 Comment[fi]=Versionhallintaliitännäinen tiedostonäkymille
 Comment[fr]=Module externe pour le contrôle de version applicable aux vues de 
fichiers
 Comment[gl]=Complemento de control de versión para vistas de ficheiros.


Reply via email to