Hello community,

here is the log from the commit of package juk for openSUSE:Factory checked in 
at 2014-11-19 20:26:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/juk (Old)
 and      /work/SRC/openSUSE:Factory/.juk.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "juk"

Changes:
--------
--- /work/SRC/openSUSE:Factory/juk/juk.changes  2014-10-16 18:13:34.000000000 
+0200
+++ /work/SRC/openSUSE:Factory/.juk.new/juk.changes     2014-11-19 
20:29:47.000000000 +0100
@@ -1,0 +2,7 @@
+Sun Nov  9 20:39:46 UTC 2014 - [email protected]
+
+- Update to 4.14.3
+   * KDE 4.14.3 SC Bugfix Release
+   * See http://www.kde.org/announcements/announce-4.14.3.php
+
+-------------------------------------------------------------------

Old:
----
  juk-4.14.2.tar.xz

New:
----
  juk-4.14.3.tar.xz

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

Other differences:
------------------
++++++ juk.spec ++++++
--- /var/tmp/diff_new_pack.OpLUDK/_old  2014-11-19 20:29:49.000000000 +0100
+++ /var/tmp/diff_new_pack.OpLUDK/_new  2014-11-19 20:29:49.000000000 +0100
@@ -25,7 +25,7 @@
 License:        GPL-2.0+
 Group:          Productivity/Multimedia/Sound/Players
 Url:            http://www.kde.org
-Version:        4.14.2
+Version:        4.14.3
 Release:        0
 Source0:        %{name}-%{version}.tar.xz
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ juk-4.14.2.tar.xz -> juk-4.14.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/juk-4.14.2/ktrm.cpp new/juk-4.14.3/ktrm.cpp
--- old/juk-4.14.2/ktrm.cpp     2014-10-09 07:24:57.000000000 +0200
+++ new/juk-4.14.3/ktrm.cpp     2014-10-11 00:51:38.000000000 +0200
@@ -280,7 +280,7 @@
 
     virtual void customEvent(QEvent *event)
     {
-        if(!event->type() == KTRMEvent::id)
+        if(event->type() != KTRMEvent::id)
             return;
 
         KTRMEvent *e = static_cast<KTRMEvent *>(event);
@@ -634,7 +634,7 @@
 void KTRMLookup::lookupResult( KJob* job )
 {
 #if HAVE_TUNEPIMP >= 5
-    if ( !job->error() == 0 ) {
+    if ( job->error() != 0 ) {
         finished();
         return;
     }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/juk-4.14.2/main.cpp new/juk-4.14.3/main.cpp
--- old/juk-4.14.2/main.cpp     2014-10-09 07:24:57.000000000 +0200
+++ new/juk-4.14.3/main.cpp     2014-10-11 00:51:38.000000000 +0200
@@ -51,7 +51,7 @@
 int main(int argc, char *argv[])
 {
     KAboutData aboutData("juk", 0, ki18n("JuK"),
-                         "3.11", ki18n(description), KAboutData::License_GPL,
+                         "3.11.1", ki18n(description), KAboutData::License_GPL,
                          ki18n("© 2002–2013, Scott Wheeler, Michael Pyne, and 
others"),
                          KLocalizedString(),
                          "http://www.kde.org/applications/multimedia/juk/";);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/juk-4.14.2/playermanager.cpp 
new/juk-4.14.3/playermanager.cpp
--- old/juk-4.14.2/playermanager.cpp    2014-10-09 07:24:57.000000000 +0200
+++ new/juk-4.14.3/playermanager.cpp    2014-10-11 00:51:38.000000000 +0200
@@ -287,8 +287,6 @@
     action("pause")->setEnabled(false);
 
     m_media[m_curOutputPath]->pause();
-
-    emit signalPause();
 }
 
 void PlayerManager::stop()
@@ -532,7 +530,10 @@
 
         emit signalStop();
     }
-    else if(newstate == Phonon::PlayingState) {
+    else if(newstate == Phonon::PausedState) {
+        emit signalPause();
+    }
+    else { // PlayingState or BufferingState
         action("pause")->setEnabled(true);
         action("stop")->setEnabled(true);
         action("forward")->setEnabled(true);
@@ -540,13 +541,12 @@
             action("forwardAlbum")->setEnabled(true);
         action("back")->setEnabled(true);
 
-                
         JuK::JuKInstance()->setWindowTitle(i18nc(
             "%1 is the artist and %2 is the title of the currently playing 
track.", 
-            "%1 - %2 :: JuK", 
-            m_file.tag()->artist(), 
+            "%1 - %2 :: JuK",
+            m_file.tag()->artist(),
             m_file.tag()->title()));
-        
+
         emit signalPlay();
     }
 }

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to