Mailinglist Archive: opensuse-commit (2092 mails)
| < Previous | Next > |
commit amarok
- From: root@xxxxxxxxxxxxxxx (h_root)
- Date: Tue, 14 Aug 2007 03:00:48 +0200
- Message-id: <20070814010048.8F1AA67832C@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package amarok
checked in at Tue Aug 14 03:00:48 CEST 2007.
--------
--- KDE/amarok/amarok.changes 2007-08-07 07:56:27.000000000 +0200
+++ /mounts/work_src_done/STABLE/amarok/amarok.changes 2007-08-13 14:51:10.000000000 +0200
@@ -1,0 +2,8 @@
+Mon Aug 13 14:49:50 CEST 2007 - dmueller@xxxxxxx
+
+- update to 1.4.7:
+ * bugfixes
+- recommend libvisual-plugins
+- fix collectionscanner crashes
+
+-------------------------------------------------------------------
Old:
----
amarok-1.4.6.tar.bz2
New:
----
amarok-1.4.7.tar.bz2
amarok-threadmanager.diff
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ amarok.spec ++++++
--- /var/tmp/diff_new_pack.f12598/_old 2007-08-14 03:00:34.000000000 +0200
+++ /var/tmp/diff_new_pack.f12598/_new 2007-08-14 03:00:34.000000000 +0200
@@ -1,5 +1,5 @@
#
-# spec file for package amarok (Version 1.4.6)
+# spec file for package amarok (Version 1.4.7)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -35,10 +35,11 @@
Requires: ruby
Group: Productivity/Multimedia/Sound/Players
Summary: Media Player for KDE
-Version: 1.4.6
-Release: 16
+Version: 1.4.7
+Release: 1
%if %suse_version > 1020
Requires: amarok-lang = %{version}
+Recommends: libvisual-plugins
%endif
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%define mversion 0.5
@@ -48,6 +49,7 @@
Patch3: amarok-no-realaudio.diff
Patch7: amarok-collectionscanner.diff
Patch10: default-engine.diff
+Patch11: amarok-threadmanager.diff
%description
Amarok is a media player for all kinds of media. This includes MP3, Ogg
@@ -144,6 +146,7 @@
%patch3
%patch7
%patch10
+%patch11
. /etc/opt/kde3/common_options
update_admin --no-unsermake
@@ -267,6 +270,11 @@
%endif
%changelog
+* Mon Aug 13 2007 - dmueller@xxxxxxx
+- update to 1.4.7:
+ * bugfixes
+- recommend libvisual-plugins
+- fix collectionscanner crashes
* Tue Aug 07 2007 - coolo@xxxxxxx
- fix building (crossing fingers it also runs)
* Fri Jul 20 2007 - dmueller@xxxxxxx
++++++ amarok-1.4.6.tar.bz2 -> amarok-1.4.7.tar.bz2 ++++++
KDE/amarok/amarok-1.4.6.tar.bz2 /mounts/work_src_done/STABLE/amarok/amarok-1.4.7.tar.bz2 differ: byte 11, line 1
++++++ amarok-threadmanager.diff ++++++
Index: amarok/src/threadmanager.cpp
===================================================================
--- amarok/src/threadmanager.cpp (revision 699104)
+++ amarok/src/threadmanager.cpp (working copy)
@@ -206,13 +206,15 @@ ThreadManager::event( QEvent *e )
case OverrideCursorEvent:
// we have to do this for the PlaylistLoader case, as Qt uses the same
// function for drag and drop operations.
- QApplication::setOverrideCursor( KCursor::workingCursor() );
+ if (qApp->type() != QApplication::Tty)
+ QApplication::setOverrideCursor( KCursor::workingCursor() );
break;
case RestoreOverrideCursorEvent:
// we have to do this for the PlaylistLoader case, as Qt uses the same
// function for drag and drop operations.
- QApplication::restoreOverrideCursor();
+ if (qApp->type() != QApplication::Tty)
+ QApplication::restoreOverrideCursor();
break;
default:
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |