updated changelog and added 0.11 release point
This commit is contained in:
parent
ec53633975
commit
892268aef4
|
@ -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.
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue