Hello community, here is the log from the commit of package krusader checked in at Mon Jul 23 02:17:09 CEST 2007. -------- --- KDE/krusader/krusader.changes 2007-06-01 08:21:37.000000000 +0200 +++ /mounts/work_src_done/STABLE/krusader/krusader.changes 2007-07-22 12:16:14.000000000 +0200 @@ -1,0 +2,17 @@ +Sun Jul 22 12:12:47 CEST 2007 - stbinner@suse.de + +- update to version 1.80.0: + * Full support for ACL permissions like properties, preserve + attributes, synchronizer and other + * Many terminal emulator enhancements bringing new functions, + new usages and new look + * Many improvements of the UserAction system + * Countless usability enhancements, especially in Konfigurator + and the heavily reordered menubar + * Comparing in the synchronizer interface and parallel threading + over slower servers + * Atomic extensions and ability to rename filename, w/o extension + * Many archive enhancements like handling packing in background, + encryption support, multiple volume archives, compress level + +------------------------------------------------------------------- Old: ---- fix-duplicate-parameter.diff fix-preview-crash.diff krusader-1.70.0_compilerwarnings.patch krusader-1.70.1.tar.gz New: ---- krusader-1.80.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ krusader.spec ++++++ --- /var/tmp/diff_new_pack.d16038/_old 2007-07-23 02:13:58.000000000 +0200 +++ /var/tmp/diff_new_pack.d16038/_new 2007-07-23 02:13:58.000000000 +0200 @@ -1,5 +1,5 @@ # -# spec file for package krusader (Version 1.70.1) +# spec file for package krusader (Version 1.80.0) # # Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -17,17 +17,14 @@ %endif Requires: kio_iso URL: http://krusader.sourceforge.net/ -License: GNU General Public License (GPL) +License: GPL v2 or later Group: Productivity/File utilities Summary: A File Manager -Version: 1.70.1 -Release: 81 +Version: 1.80.0 +Release: 1 BuildRoot: %{_tmppath}/%{name}-%{version}-build Source0: krusader-%{version}.tar.gz -Patch0: krusader-1.70.0_compilerwarnings.patch -Patch1: fix-duplicate-parameter.diff Patch2: fix-isoservice-desktop.diff -Patch3: fix-preview-crash.diff Patch4: fix-string-comparison.diff %description @@ -55,10 +52,7 @@ %prep %setup -%patch -%patch1 %patch2 -%patch3 %patch4 . /etc/opt/kde3/common_options update_admin @@ -85,6 +79,8 @@ /opt/kde3/share/icons/??color/??x?? /opt/kde3/%_lib/kde3/kio_krarc.* /opt/kde3/share/services/krarc.protocol +/opt/kde3/%_lib/kde3/kio_virt.* +/opt/kde3/share/services/virt.protocol %_mandir/man1/* %files -n kio_iso @@ -95,6 +91,20 @@ /opt/kde3/share/apps/konqueror %changelog +* Sun Jul 22 2007 - stbinner@suse.de +- update to version 1.80.0: + * Full support for ACL permissions like properties, preserve + attributes, synchronizer and other + * Many terminal emulator enhancements bringing new functions, + new usages and new look + * Many improvements of the UserAction system + * Countless usability enhancements, especially in Konfigurator + and the heavily reordered menubar + * Comparing in the synchronizer interface and parallel threading + over slower servers + * Atomic extensions and ability to rename filename, w/o extension + * Many archive enhancements like handling packing in background, + encryption support, multiple volume archives, compress level * Fri Jun 01 2007 - coolo@suse.de - move kde_post_install * Fri Mar 09 2007 - stbinner@suse.de ++++++ fix-string-comparison.diff ++++++ --- /var/tmp/diff_new_pack.d16038/_old 2007-07-23 02:13:59.000000000 +0200 +++ /var/tmp/diff_new_pack.d16038/_new 2007-07-23 02:13:59.000000000 +0200 @@ -1,24 +1,26 @@ ---- krusader/DiskUsage/radialMap/map.cpp -+++ krusader/DiskUsage/radialMap/map.cpp -@@ -172,7 +172,7 @@ - { - case 2000: //HACK for summary view - -- if( (*it)->file()->name() == "Used" ) { -+ if( !strcmp((*it)->file()->name(), "Used") ) { - cb = QApplication::palette().active().color( QColorGroup::Highlight ); - cb.hsv( &h, &s1, &v1 ); - ---- krusader/Konfigurator/kgcolors.cpp 2007/01/09 09:54:28 1.1 -+++ krusader/Konfigurator/kgcolors.cpp 2007/01/09 09:56:34 -@@ -586,7 +586,9 @@ +--- krusader/Konfigurator/kgcolors.cpp 2007/07/22 10:36:24 1.1 ++++ krusader/Konfigurator/kgcolors.cpp 2007/07/22 10:38:04 +@@ -613,8 +613,10 @@ void KgColors::serializeItem(class QDataStream & stream, const char * name) { stream << QString(name); -- if( name == "KDE Default" || name == "Enable Alternate Background" || name == "Show Current Item Always" ) +- if( name == "KDE Default" || name == "Enable Alternate Background" || +- name == "Show Current Item Always" || name == "Dim Inactive Colors" ) + if( (strcmp( name, "KDE Default") == 0) + || (strcmp( name, "Enable Alternate Background") == 0) -+ || (strcmp( name, "Show Current Item Always") == 0) ) ++ || (strcmp( name, "Show Current Item Always") == 0) ++ || (strcmp( name, "Dim Inactive Colors") == 0) ) { bool bValue = generals->find( name )->isChecked(); stream << QString( bValue ? "true" : "false" ); +--- krusader/Konfigurator/kgcolors.cpp 2007/07/22 10:47:35 1.5 ++++ krusader/Konfigurator/kgcolors.cpp 2007/07/22 10:48:45 +@@ -621,7 +621,7 @@ + bool bValue = generals->find( name )->isChecked(); + stream << QString( bValue ? "true" : "false" ); + } +- else if( name == "Dim Factor" ) ++ else if( strcmp( name, "Dim Factor") == 0 ) + stream << QString::number(dimFactor->value()); + else + { ++++++ krusader-1.70.1.tar.gz -> krusader-1.80.0.tar.gz ++++++ ++++ 401812 lines of diff (skipped) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org