Hello community,

here is the log from the commit of package dragonplayer for openSUSE:Factory 
checked in at 2017-07-25 11:26:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/dragonplayer (Old)
 and      /work/SRC/openSUSE:Factory/.dragonplayer.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "dragonplayer"

Tue Jul 25 11:26:25 2017 rev:65 rq:510645 version:17.04.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/dragonplayer/dragonplayer.changes        
2017-06-12 15:15:24.172515770 +0200
+++ /work/SRC/openSUSE:Factory/.dragonplayer.new/dragonplayer.changes   
2017-07-25 11:26:26.730549632 +0200
@@ -1,0 +2,10 @@
+Sat Jul 15 22:58:59 CEST 2017 - lbeltr...@kde.org
+
+- Update to 17.04.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.04.3.php
+- Changes since 17.04.2:
+  * do not attempt to add/remove nullptr widgets to/from the pagestack 
(kde#381282)
+
+-------------------------------------------------------------------

Old:
----
  dragon-17.04.2.tar.xz

New:
----
  dragon-17.04.3.tar.xz

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

Other differences:
------------------
++++++ dragonplayer.spec ++++++
--- /var/tmp/diff_new_pack.x3cBdU/_old  2017-07-25 11:26:27.270473382 +0200
+++ /var/tmp/diff_new_pack.x3cBdU/_new  2017-07-25 11:26:27.274472817 +0200
@@ -18,7 +18,7 @@
 %bcond_without lang
 
 Name:           dragonplayer
-Version:        17.04.2
+Version:        17.04.3
 Release:        0
 %define kf5_version 5.26.0
 # Latest stable Applications (e.g. 16.08 in KA, but 16.11.80 in KUA)

++++++ dragon-17.04.2.tar.xz -> dragon-17.04.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dragon-17.04.2/CMakeLists.txt 
new/dragon-17.04.3/CMakeLists.txt
--- old/dragon-17.04.2/CMakeLists.txt   2017-06-06 02:16:12.000000000 +0200
+++ new/dragon-17.04.3/CMakeLists.txt   2017-07-11 02:20:06.000000000 +0200
@@ -4,7 +4,7 @@
 # KDE Application Version, managed by release script
 set(KDE_APPLICATIONS_VERSION_MAJOR "17")
 set(KDE_APPLICATIONS_VERSION_MINOR "04")
-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}")
 
 set(PROJECT_VERSION ${KDE_APPLICATIONS_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dragon-17.04.2/misc/org.kde.dragonplayer.appdata.xml 
new/dragon-17.04.3/misc/org.kde.dragonplayer.appdata.xml
--- old/dragon-17.04.2/misc/org.kde.dragonplayer.appdata.xml    2017-06-05 
21:04:47.000000000 +0200
+++ new/dragon-17.04.3/misc/org.kde.dragonplayer.appdata.xml    2017-07-10 
00:48:47.000000000 +0200
@@ -15,6 +15,7 @@
   <name xml:lang="es">Dragon Player</name>
   <name xml:lang="et">Dragoni mängija</name>
   <name xml:lang="fi">Dragon Player</name>
+  <name xml:lang="fr">Dragon Player</name>
   <name xml:lang="gl">Dragon Player</name>
   <name xml:lang="ia">Dragon Player (Reproductor Dragon)</name>
   <name xml:lang="it">Dragon Player</name>
@@ -111,6 +112,7 @@
     <p xml:lang="es">Características:</p>
     <p xml:lang="et">Omadused:</p>
     <p xml:lang="fi">Ominaisuudet:</p>
+    <p xml:lang="fr">Fonctionnalités :</p>
     <p xml:lang="gl">Funcionalidades:</p>
     <p xml:lang="ia">Characteristicas:</p>
     <p xml:lang="it">Caratteristiche:</p>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dragon-17.04.2/src/app/mainWindow.cpp 
new/dragon-17.04.3/src/app/mainWindow.cpp
--- old/dragon-17.04.2/src/app/mainWindow.cpp   2017-06-05 21:04:47.000000000 
+0200
+++ new/dragon-17.04.3/src/app/mainWindow.cpp   2017-07-10 00:48:47.000000000 
+0200
@@ -434,7 +434,7 @@
 MainWindow::toggleLoadView()
 {
     if( m_mainView->currentWidget() == m_loadView ) {
-        if( engine()->state() != Phonon::StoppedState ) {
+        if (m_currentWidget && engine()->state() != Phonon::StoppedState) {
             if( m_mainView->indexOf(m_currentWidget) == -1 ) {
                 m_mainView->addWidget(m_currentWidget);
             }
@@ -443,7 +443,7 @@
         engine()->isPreview(false);
     } else if( m_currentWidget != m_audioView ) {
         m_mainView->setCurrentWidget( m_loadView );
-        if( engine()->state() != Phonon::StoppedState ) {
+        if (m_currentWidget && engine()->state() != Phonon::StoppedState) {
             m_mainView->removeWidget(m_currentWidget);
             engine()->isPreview(true);
             m_loadView->setThumbnail(m_currentWidget);


Reply via email to