Hello community, here is the log from the commit of package smb4k for openSUSE:Factory checked in at 2012-12-31 14:26:40 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/smb4k (Old) and /work/SRC/openSUSE:Factory/.smb4k.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "smb4k", Maintainer is "kde-maintainers@suse.de" Changes: -------- --- /work/SRC/openSUSE:Factory/smb4k/smb4k.changes 2012-09-17 01:29:39.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.smb4k.new/smb4k.changes 2012-12-31 14:26:43.000000000 +0100 @@ -1,0 +2,7 @@ +Sat Dec 29 17:37:29 UTC 2012 - asterios.dramis@gmail.com + +- Update to version 1.0.5: + * Fixed hanging of Smb4K if a custom mount prefix without a trailing + slash was entered (closes SF ticket #28). + +------------------------------------------------------------------- Old: ---- smb4k-1.0.4.tar.bz2 New: ---- smb4k-1.0.5.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ smb4k.spec ++++++ --- /var/tmp/diff_new_pack.PqVMvT/_old 2012-12-31 14:26:44.000000000 +0100 +++ /var/tmp/diff_new_pack.PqVMvT/_new 2012-12-31 14:26:44.000000000 +0100 @@ -17,7 +17,7 @@ Name: smb4k -Version: 1.0.4 +Version: 1.0.5 Release: 0 Summary: Advanced Network Neighborhood Browser for KDE License: GPL-2.0+ @@ -65,9 +65,7 @@ %make_jobs %install -cd build -%kde4_makeinstall -cd .. +%kde4_makeinstall -C build %if 0%{?suse_version} < 1220 echo "setBadness('suse-dbus-unauthorized-service', 0)" > $RPM_SOURCE_DIR/%name-rpmlintrc ++++++ smb4k-1.0.4.tar.bz2 -> smb4k-1.0.5.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/smb4k-1.0.4/CMakeLists.txt new/smb4k-1.0.5/CMakeLists.txt --- old/smb4k-1.0.4/CMakeLists.txt 2012-08-19 11:00:02.000000000 +0200 +++ new/smb4k-1.0.5/CMakeLists.txt 2012-12-26 12:51:35.000000000 +0100 @@ -1,9 +1,9 @@ project( smb4k ) -set( VERSION 1.0.4 ) +set( VERSION 1.0.5 ) set( VERSION_MAJOR 1 ) set( VERSION_MINOR 0 ) -set( VERSION_PATCH 4 ) +set( VERSION_PATCH 5 ) cmake_minimum_required( VERSION 2.6 ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/smb4k-1.0.4/ChangeLog new/smb4k-1.0.5/ChangeLog --- old/smb4k-1.0.4/ChangeLog 2012-08-19 11:00:02.000000000 +0200 +++ new/smb4k-1.0.5/ChangeLog 2012-12-26 10:23:54.000000000 +0100 @@ -1,3 +1,8 @@ +Smb4K 1.0.5 (2012-12-26): +- Fixed hanging of Smb4K if a custom mount prefix without a trailing + slash was entered (closes SF ticket #28). Thanks go to Ettore Atalan + for reporting this issue and PhobosK for the patch. + Smb4K 1.0.4 (2012-08-19): - Fixed erroneously shown error notifications when searching. Thanks to Alexander Willand for reporting this issue. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/smb4k-1.0.4/core/smb4kmounter_p.cpp new/smb4k-1.0.5/core/smb4kmounter_p.cpp --- old/smb4k-1.0.4/core/smb4kmounter_p.cpp 2012-08-19 11:00:02.000000000 +0200 +++ new/smb4k-1.0.5/core/smb4kmounter_p.cpp 2012-12-25 21:47:21.000000000 +0100 @@ -186,7 +186,7 @@ { KUrl u( dir.path() ); - while ( u != parentDirectory ) + while ( !parentDirectory.equals( u, KUrl::CompareWithoutTrailingSlash ) ) { QFile( u.path() ).setPermissions( permissions ); u = u.upUrl(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/smb4k-1.0.4/svn-commit.tmp new/smb4k-1.0.5/svn-commit.tmp --- old/smb4k-1.0.4/svn-commit.tmp 1970-01-01 01:00:00.000000000 +0100 +++ new/smb4k-1.0.5/svn-commit.tmp 2012-07-28 17:43:06.000000000 +0200 @@ -0,0 +1,6 @@ +Wait until all shares have been unmounted on exit before closing down. +-- Diese und die folgenden Zeilen werden ignoriert -- + +M ChangeLog +M core/smb4kmounter.cpp +M core/CMakeLists.txt -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de