Hello community, here is the log from the commit of package qbittorrent for openSUSE:Factory checked in at 2017-08-06 11:34:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/qbittorrent (Old) and /work/SRC/openSUSE:Factory/.qbittorrent.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qbittorrent" Sun Aug 6 11:34:15 2017 rev:57 rq:514521 version:3.3.15 Changes: -------- --- /work/SRC/openSUSE:Factory/qbittorrent/qbittorrent.changes 2017-07-23 12:16:06.993195221 +0200 +++ /work/SRC/openSUSE:Factory/.qbittorrent.new/qbittorrent.changes 2017-08-06 11:34:17.943653751 +0200 @@ -1,0 +2,6 @@ +Fri Aug 4 08:08:26 UTC 2017 - [email protected] + +- Update to version 3.3.15 + * BUGFIX: Temporary subfolder wasn't being deleted. (glassez) + +------------------------------------------------------------------- Old: ---- qbittorrent-3.3.14.tar.xz qbittorrent-3.3.14.tar.xz.asc New: ---- qbittorrent-3.3.15.tar.xz qbittorrent-3.3.15.tar.xz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ qbittorrent.spec ++++++ --- /var/tmp/diff_new_pack.cRtms3/_old 2017-08-06 11:34:19.523431181 +0200 +++ /var/tmp/diff_new_pack.cRtms3/_new 2017-08-06 11:34:19.539428927 +0200 @@ -18,7 +18,7 @@ Name: qbittorrent -Version: 3.3.14 +Version: 3.3.15 Release: 0 Summary: A BitTorrent client in Qt License: GPL-2.0+ ++++++ qbittorrent-3.3.14.tar.xz -> qbittorrent-3.3.15.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qbittorrent-3.3.14/Changelog new/qbittorrent-3.3.15/Changelog --- old/qbittorrent-3.3.14/Changelog 2017-07-18 21:57:44.000000000 +0200 +++ new/qbittorrent-3.3.15/Changelog 2017-08-03 22:30:10.000000000 +0200 @@ -1,3 +1,6 @@ +* Thu Aug 03 2017 - sledgehammer999 <[email protected]> - v3.3.15 + - BUGFIX: Temporary subfolder wasn't being deleted. (glassez) + * Tue Jul 18 2017 - sledgehammer999 <[email protected]> - v3.3.14 - BUGFIX: Set interface for outgoing traffic(libtorrent 1.1.x series). (evsh) - WEBUI: Fix KEEP_ALIVE_DURATION value (Chocobo1) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qbittorrent-3.3.14/dist/mac/Info.plist new/qbittorrent-3.3.15/dist/mac/Info.plist --- old/qbittorrent-3.3.14/dist/mac/Info.plist 2017-07-18 21:57:44.000000000 +0200 +++ new/qbittorrent-3.3.15/dist/mac/Info.plist 2017-08-03 22:30:10.000000000 +0200 @@ -45,7 +45,7 @@ <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleShortVersionString</key> - <string>3.3.14</string> + <string>3.3.15</string> <key>CFBundleSignature</key> <string>qBit</string> <key>CFBundleExecutable</key> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qbittorrent-3.3.14/dist/windows/options.nsi new/qbittorrent-3.3.15/dist/windows/options.nsi --- old/qbittorrent-3.3.14/dist/windows/options.nsi 2017-07-18 21:57:44.000000000 +0200 +++ new/qbittorrent-3.3.15/dist/windows/options.nsi 2017-08-03 22:30:10.000000000 +0200 @@ -27,7 +27,7 @@ !define CSIDL_LOCALAPPDATA '0x1C' ;Local Application Data path ; Program specific -!define PROG_VERSION "3.3.14" +!define PROG_VERSION "3.3.15" !define MUI_FINISHPAGE_RUN !define MUI_FINISHPAGE_RUN_FUNCTION PageFinishRun diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qbittorrent-3.3.14/src/base/bittorrent/torrenthandle.cpp new/qbittorrent-3.3.15/src/base/bittorrent/torrenthandle.cpp --- old/qbittorrent-3.3.14/src/base/bittorrent/torrenthandle.cpp 2017-07-18 21:57:44.000000000 +0200 +++ new/qbittorrent-3.3.15/src/base/bittorrent/torrenthandle.cpp 2017-08-03 22:30:10.000000000 +0200 @@ -1330,7 +1330,7 @@ } qDebug("Torrent is successfully moved from %s to %s", qPrintable(m_oldPath), qPrintable(m_newPath)); - if (m_oldPath == m_session->torrentTempPath(hash())) { + if (QDir(m_oldPath) == QDir(m_session->torrentTempPath(hash()))) { qDebug() << "Removing torrent temp folder:" << m_oldPath; Utils::Fs::smartRemoveEmptyFolderTree(m_oldPath); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qbittorrent-3.3.14/version.pri new/qbittorrent-3.3.15/version.pri --- old/qbittorrent-3.3.14/version.pri 2017-07-18 21:57:44.000000000 +0200 +++ new/qbittorrent-3.3.15/version.pri 2017-08-03 22:30:10.000000000 +0200 @@ -4,7 +4,7 @@ # Define version numbers here VER_MAJOR = 3 VER_MINOR = 3 -VER_BUGFIX = 14 +VER_BUGFIX = 15 VER_BUILD = 0 VER_STATUS = # Should be empty for stable releases!
