update changelog and ly sync 2055
This commit is contained in:
parent
7fbfbbc49c
commit
55aae06130
|
@ -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
|
* Fix force recheck
|
||||||
* Auto scraping of tracker if it doesn't report number of peers on reply
|
* Auto scraping of tracker if it doesn't report number of peers on reply
|
||||||
* Fix web seed proxy preference
|
* Fix web seed proxy preference
|
||||||
|
|
|
@ -31,7 +31,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "libtorrent/pch.hpp"
|
#include "libtorrent/pch.hpp"
|
||||||
//test comment
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
|
|
|
@ -583,7 +583,6 @@ namespace libtorrent
|
||||||
for (torrent_info::file_iterator i = m_info->begin_files(true)
|
for (torrent_info::file_iterator i = m_info->begin_files(true)
|
||||||
, end(m_info->end_files(true)); i != end; ++i, ++fs)
|
, end(m_info->end_files(true)); i != end; ++i, ++fs)
|
||||||
{
|
{
|
||||||
std::cerr << "filesize: " << i->size << std::endl;
|
|
||||||
if (i->size != fs->first)
|
if (i->size != fs->first)
|
||||||
{
|
{
|
||||||
error = "file size for '" + i->path.native_file_string()
|
error = "file size for '" + i->path.native_file_string()
|
||||||
|
|
Loading…
Reference in New Issue