diff --git a/ChangeLog b/ChangeLog index 8c0cc09d3..a8bc32cb0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,10 @@ -Deluge 0.5.8.5 (xx March 2008) +Deluge 0.5.8.6 (11 March 2008) + * Fix fast-resume deletion on shutdown + * Tweak saving of uploaded memory (more effective ratio) + * Add torrents with .fastresume files before torrents that don't + * Fix a UI hang (bug #72) + +Deluge 0.5.8.5 (28 February 2008) * Fix force recheck * Auto scraping of tracker if it doesn't report number of peers on reply * Fix web seed proxy preference diff --git a/libtorrent/src/policy.cpp b/libtorrent/src/policy.cpp index 40898c44e..c577371d8 100755 --- a/libtorrent/src/policy.cpp +++ b/libtorrent/src/policy.cpp @@ -31,7 +31,7 @@ POSSIBILITY OF SUCH DAMAGE. */ #include "libtorrent/pch.hpp" -//test comment + #include #ifdef _MSC_VER diff --git a/libtorrent/src/storage.cpp b/libtorrent/src/storage.cpp index 347f01c80..fc4b59656 100755 --- a/libtorrent/src/storage.cpp +++ b/libtorrent/src/storage.cpp @@ -583,7 +583,6 @@ namespace libtorrent for (torrent_info::file_iterator i = m_info->begin_files(true) , end(m_info->end_files(true)); i != end; ++i, ++fs) { - std::cerr << "filesize: " << i->size << std::endl; if (i->size != fs->first) { error = "file size for '" + i->path.native_file_string()