updated changelog and added 0.11 release point

This commit is contained in:
Arvid Norberg 2006-10-14 08:15:57 +00:00
parent ec53633975
commit 892268aef4
4 changed files with 6 additions and 3 deletions

View File

@ -1,5 +1,8 @@
release 0.11
* added support for incorrectly encoded paths in torrent files
(assumes Latin-1 encoding and converts to UTF-8).
* added support for destructing session objects asynchronously.
* fixed bug with file_progress() with files = 0 bytes
* fixed a race condition bug in udp_tracker_connection that could
cause a crash.

View File

@ -957,7 +957,7 @@ struct file_entry
boost::filesystem::path path;
size_type offset;
size_type size;
boost::scoped_ptr<boost::filesystem::path> orig_path;
boost::shared_ptr<const boost::filesystem::path> orig_path;
};
</pre>
</div>

View File

@ -870,7 +870,7 @@ info-hash.
boost::filesystem::path path;
size_type offset;
size_type size;
boost::shared_ptr<boost::filesystem::path> orig_path;
boost::shared_ptr<const boost::filesystem::path> orig_path;
};

View File

@ -70,7 +70,7 @@ namespace libtorrent
// the origianal corrupt encoded string. It is
// preserved in order to be able to reproduce
// the correct info-hash
boost::shared_ptr<boost::filesystem::path> orig_path;
boost::shared_ptr<const boost::filesystem::path> orig_path;
};
struct TORRENT_EXPORT file_slice