Mailinglist Archive: opensuse-commit (1318 mails)
| < Previous | Next > |
commit amarok
- From: root@xxxxxxx (h_root)
- Date: Sun, 13 Aug 2006 16:45:16 +0200 (CEST)
- Message-id: <20060813144516.5A5BE95116@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package amarok
checked in at Sun Aug 13 16:45:16 CEST 2006.
--------
--- KDE/amarok/amarok.changes 2006-07-24 00:07:24.000000000 +0200
+++ amarok/amarok.changes 2006-08-13 14:46:50.000000000 +0200
@@ -1,0 +2,5 @@
+Sun Aug 13 14:45:53 CEST 2006 - schwab@xxxxxxx
+
+- Don't ignore album names that start with dots.
+
+-------------------------------------------------------------------
New:
----
amarok-collectionscanner.diff
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ amarok.spec ++++++
--- /var/tmp/diff_new_pack.Z1JxoJ/_old 2006-08-13 16:45:05.000000000 +0200
+++ /var/tmp/diff_new_pack.Z1JxoJ/_new 2006-08-13 16:45:05.000000000 +0200
@@ -27,7 +27,7 @@
Group: Productivity/Multimedia/Sound/Players
Summary: Media Player for KDE
Version: 1.4.1
-Release: 3
+Release: 4
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%define mversion 0.5
Source0: %name-%version.tar.bz2
@@ -37,6 +37,7 @@
Patch3: amarok-no-realaudio.diff
Patch4: threading-issues.diff
Patch6: amarok.diff
+Patch7: amarok-collectionscanner.diff
Patch10: default-engine.diff
%description
@@ -130,6 +131,7 @@
%patch3
%patch4
%patch6
+%patch7
%patch10
cp %{S:10} amarok/src/engine/helix/
. /etc/opt/kde3/common_options
@@ -234,6 +236,8 @@
%endif
%changelog -n amarok
+* Sun Aug 13 2006 - schwab@xxxxxxx
+- Don't ignore album names that start with dots.
* Sun Jul 23 2006 - schwab@xxxxxxx
- Remove mutex patch.
- Require ruby for default script.
++++++ amarok-collectionscanner.diff ++++++
--- amarok/src/collectionscanner/collectionscanner.cpp
+++ amarok/src/collectionscanner/collectionscanner.cpp
@@ -202,7 +202,7 @@
if ( ! ( S_ISDIR( statBuf.st_mode ) || S_ISREG( statBuf.st_mode ) ) )
continue;
- if ( S_ISDIR( statBuf.st_mode ) && m_recursively && entry.length() && entryname[0] != '.' )
+ if ( S_ISDIR( statBuf.st_mode ) && m_recursively && entry.length() && (entryname[0] != '.' || entryname[1] == '.') )
{
const QString file = QFile::decodeName( entry );
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
| < Previous | Next > |