fix piece_picker piece-shuffle bug
[libtorrent.git] / ChangeLog
blob8e2610a5a2e47b0068ea0f1cb33484a9e77c92eb
2         * Fix bug where FAST pieces were cancelled on choke
3         * Fixed problems with restoring piece states when hash failed.
4         * Minimum peer reconnect time fix. Peers with no failures would
5           reconnect immediately.
6         * Improved web seed error handling
7         * DHT announce fixes and off-by-one loop fix
8         * UPnP fixes
9         * Fixed bug in torrent writer where the private flag was added
10           outside of the info dictionary
11         * Made the torrent file parser less strict of what goes in the
12           announce-list entry
13         * Fixed type overflow bug where some statistics was incorrectly
14           reported for file larger than 2 GB
15         * boost-1.35 support
16         * Fixed bug in statistics from web server peers where it sometimes
17           could report too many bytes downloaded.
18         * Fixed bug where statistics from the last second was lost when
19           disconnecting a peer.
20         * receive buffer optimizations (memcpy savings and memory savings)
21         * Support for specifying the TOS byte for peer traffic.
22         * Basic support for queueing of torrents.
23         * Better bias to give connections to downloading torrents
24           with fewer peers.
25         * Optimized resource usage (removed the checking thread)
26         * Support to bind outgoing connections to specific ports
27         * Disk cache support.
28         * New, more memory efficient, piece picker with sequential download
29           support (instead of the more complicated sequential download threshold).
30         * Auto Upload slots. Automtically opens up more slots if
31           upload limit is not met.
32         * Improved NAT-PMP support by querying the default gateway (no
33           linux support yet)
34         * Improved UPnP support by ignoring routers not on the clients subnet.
36 release 0.13
37         
38         * Added scrape support
39         * Added add_extension() to torrent_handle. Can instantiate
40           extensions for torrents while downloading
41         * Added support for remove_torrent to delete the files as well
42         * Fixed issue with failing async_accept on windows
43         * DHT improvements, proper error messages are now returned when
44           nodes sends bad packets
45         * Optimized the country table used to resolve country of peers
46         * Copying optimization for sending data. Data is no longer copied from
47           the disk I/O buffer to the send buffer.
48         * Buffer optimization to use a raw buffer instead of std::vector<char>
49         * Improved file storage to use sparse files
50         * Updated python bindings
51         * Added more clients to the identifiable clients list.
52         * Torrents can now be started in paused state (to better support queuing)
53         * Improved IPv6 support (support for IPv6 extension to trackers and
54           listens on both IPv6 and IPv4 interfaces).
55         * Improved asserts used. Generates a stacktrace on linux
56         * Piece picker optimizations and improvements
57         * Improved unchoker, connection limit and rate limiter
58         * Support for FAST extension
59         * Fixed invalid calculation in DHT node distance
60         * Fixed bug in URL parser that failed to parse IPv6 addresses
61         * added peer download rate approximation
62         * added port filter for outgoing connection (to prevent
63           triggering firewalls)
64         * made most parameters configurable via session_settings
65         * added encryption support
66         * added parole mode for peers whose data fails the hash check.
67         * optimized heap usage in piece-picker and web seed downloader.
68         * fixed bug in DHT where older write tokens weren't accepted.
69         * added support for sparse files.
70         * introduced speed categories for peers and pieces, to separate
71           slow and fast peers.
72         * added a half-open tcp connection limit that takes all connections
73           in to account, not just peer connections.
74         * added alerts for filtered IPs.
75         * added support for SOCKS4 and 5 proxies and HTTP CONNECT proxies.
76         * fixed proper distributed copies calculation.
77         * added option to use openssl for sha-1 calculations.
78         * optimized the piece picker in the case where a peer is a seed.
79         * added support for local peer discovery
80         * removed the dependency on the compiled boost.date_time library
81         * deprecated torrent_info::print()
82         * added UPnP support
83         * fixed problem where peer interested flags were not updated correctly
84           when pieces were filtered
85         * improvements to ut_pex messages, including support for seed flag
86         * prioritizes upload bandwidth to peers that might send back data
87         * the following functions have been deprecated:
88                 void torrent_handle::filter_piece(int index, bool filter) const;
89                 void torrent_handle::filter_pieces(std::vector<bool> const& pieces) const;
90                 bool torrent_handle::is_piece_filtered(int index) const;
91                 std::vector<bool> torrent_handle::filtered_pieces() const;
92                 void torrent_handle::filter_files(std::vector<bool> const& files) const;
93           
94           instead, use the piece_priority functions.
95           
96         * added support for NAT-PMP
97         * added support for piece priorities. Piece filtering is now set as
98           a priority
99         * Fixed crash when last piece was smaller than one block and reading
100           fastresume data for that piece
101         * Makefiles should do a better job detecting boost
102         * Fixed crash when all tracker urls are removed
103         * Log files can now be created at user supplied path
104         * Log files failing to create is no longer fatal
105         * Fixed dead-lock in torrent_handle
106         * Made it build with boost 1.34 on windows
107         * Fixed bug in URL parser that failed to parse IPv6 addresses
108         * Fixed bug in DHT, related to IPv6 nodes
109         * DHT accepts transaction IDs that have garbage appended to them
110         * DHT logs messages that it fails to decode
112 release 0.12
114         * fixes to make the DHT more compatible
115         * http seed improvements including error reporting and url encoding issues.
116         * fixed bug where directories would be left behind when moving storage
117           in some cases.
118         * fixed crashing bug when restarting or stopping the DHT.
119         * added python binding, using boost.python
120         * improved character conversion on windows when strings are not utf-8.
121         * metadata extension now respects the private flag in the torrent.
122         * made the DHT to only be used as a fallback to trackers by default.
123         * added support for HTTP redirection support for web seeds.
124         * fixed race condition when accessing a torrent that was checking its
125           fast resume data.
126         * fixed a bug in the DHT which could be triggered if the network was
127           dropped or extremely rare cases.
128         * if the download rate is limited, web seeds will now only use left-over
129           bandwidth after all bt peers have used up as much bandwidth as they can.
130         * added the possibility to have libtorrent resolve the countries of
131           the peers in torrents.
132         * improved the bandwidth limiter (it now implements a leaky bucket/node bucket).
133         * improved the HTTP seed downloader to report accurate progress.
134         * added more client peer-id signatures to be recognized.
135         * added support for HTTP servers that skip the CR before the NL at line breaks.
136         * fixed bug in the HTTP code that only accepted headers case sensitive.
137         * fixed bug where one of the session constructors didn't initialize boost.filesystem. 
138         * fixed bug when the initial checking of a torrent fails with an exception.
139         * fixed bug in DHT code which would send incorrect announce messages.
140         * fixed bug where the http header parser was case sensitive to the header
141           names.
142         * Implemented an optmization which frees the piece_picker once a torrent
143           turns into a seed.
144         * Added support for uT peer exchange extension, implemented by Massaroddel.
145         * Modified the quota management to offer better bandwidth balancing
146           between peers.
147         * logging now supports multiple sessions (different sessions now log
148           to different directories).
149         * fixed random number generator seed problem, generating the same
150           peer-id for sessions constructed the same second.
151         * added an option to accept multiple connections from the same IP.
152         * improved tracker logging.
153         * moved the file_pool into session. The number of open files is now
154           limited per session.
155         * fixed uninitialized private flag in torrent_info
156         * fixed long standing issue with file.cpp on windows. Replaced the low level
157           io functions used on windows.
158         * made it possible to associate a name with torrents without metadata.
159         * improved http-downloading performance by requesting entire pieces via
160           http.
161         * added plugin interface for extensions. And changed the interface for
162           enabling extensions.
164 release 0.11
166         * added support for incorrectly encoded paths in torrent files
167           (assumes Latin-1 encoding and converts to UTF-8).
168         * added support for destructing session objects asynchronously.
169         * fixed bug with file_progress() with files = 0 bytes
170         * fixed a race condition bug in udp_tracker_connection that could
171           cause a crash.
172         * fixed bug occuring when increasing the sequenced download threshold
173           with max availability lower than previous threshold.
174         * fixed an integer overflow bug occuring when built with gcc 4.1.x
175         * fixed crasing bug when closing while checking a torrent
176         * fixed bug causing a crash with a torrent with piece length 0
177         * added an extension to the DHT network protocol to support the
178           exchange of nodes with IPv6 addresses.
179         * modified the ip_filter api slightly to support IPv6
180         * modified the api slightly to make sequenced download threshold
181           a per torrent-setting.
182         * changed the address type to support IPv6
183         * fixed bug in piece picker which would not behave as
184           expected with regard to sequenced download threshold.
185         * fixed bug with file_progress() with files > 2 GB.
186         * added --enable-examples option to configure script.
187         * fixed problem with the resource distribution algorithm
188           (controlling e.g upload/download rates).
189         * fixed incorrect asserts in storage related to torrents with
190           zero-sized files.
191         * added support for trackerless torrents (with kademlia DHT).
192         * support for torrents with the private flag set.
193         * support for torrents containing bootstrap nodes for the
194           DHT network.
195         * fixed problem with the configure script on FreeBSD.
196         * limits the pipelining used on url-seeds.
197         * fixed problem where the shutdown always would delay for
198           session_settings::stop_tracker_timeout seconds.
199         * session::listen_on() won't reopen the socket in case the port and
200           interface is the same as the one currently in use.
201         * added http proxy support for web seeds.
202         * fixed problem where upload and download stats could become incorrect
203           in case of high cpu load.
204         * added more clients to the identifiable list.
205         * fixed fingerprint parser to cope with latest Mainline versions.
207 release 0.10
209         * fixed a bug where the requested number of peers in a tracker request could
210           be too big.
211         * fixed a bug where empty files were not created in full allocation mode.
212         * fixed a bug in storage that would, in rare cases, fail to do a
213           complete check.
214         * exposed more settings for tweaking parameters in the piece-picker,
215           downloader and uploader (http_settings replaced by session_settings).
216         * tweaked default settings to improve high bandwidth transfers.
217         * improved the piece picker performance and made it possible to download
218           popular pieces in sequence to improve disk performance.
219         * added the possibility to control upload and download limits per peer.
220         * fixed problem with re-requesting skipped pieces when peer was sending pieces
221           out of fifo-order.
222         * added support for http seeding (the GetRight protocol)
223         * renamed identifiers called 'id' in the public interface to support linking
224           with Objective.C++
225         * changed the extensions protocol to use the new one, which is also
226           implemented by uTorrent.
227         * factorized the peer_connection and added web_peer_connection which is
228           able to download from http-sources.
229         * converted the network code to use asio (resulted in slight api changes
230           dealing with network addresses).
231         * made libtorrent build in vc7 (patches from Allen Zhao)
232         * fixed bug caused when binding outgoing connections to a non-local interface.
233         * add_torrent() will now throw if called while the session object is
234           being closed.
235         * added the ability to limit the number of simultaneous half-open
236           TCP connections. Flags in peer_info has been added.
238 release 0.9.1
240         * made the session disable file name checks within the boost.filsystem library
241         * fixed race condition in the sockets
242         * strings that are invalid utf-8 strings are now decoded with the
243           local codepage on windows
244         * added the ability to build libtorrent both as a shared library
245         * client_test can now monitor a directory for torrent files and automatically
246           start and stop downloads while running
247         * fixed problem with file_size() when building on windows with unicode support
248         * added a new torrent state, allocating
249         * added a new alert, metadata_failed_alert
250         * changed the interface to session::add_torrent for some speed optimizations.
251         * greatly improved the command line control of the example client_test.
252         * fixed bug where upload rate limit was not being applied.
253         * files that are being checked will no longer stall files that don't need
254           checking.
255         * changed the way libtorrent identifies support for its excentions
256           to look for 'ext' at the end of the peer-id.
257         * improved performance by adding a circle buffer for the send buffer.
258         * fixed bugs in the http tracker connection when using an http proxy.
259         * fixed problem with storage's file pool when creating torrents and then
260           starting to seed them.
261         * hard limit on remote request queue and timeout on requests (a timeout
262           triggers rerequests). This makes libtorrent work much better with
263           "broken" clients like BitComet which may ignore requests.
265 Initial release 0.9
267         * multitracker support
268         * serves multiple torrents on a single port and a single thread
269         * supports http proxies and proxy authentication
270         * gzipped tracker-responses
271         * block level piece picker
272         * queues torrents for file check, instead of checking all of them in parallel
273         * uses separate threads for checking files and for main downloader
274         * upload and download rate limits
275         * piece-wise, unordered, incremental file allocation
276         * fast resume support
277         * supports files > 2 gigabytes
278         * supports the no_peer_id=1 extension
279         * support for udp-tracker protocol
280         * number of connections limit
281         * delays sending have messages
282         * can resume pieces downloaded in any order
283         * adjusts the length of the request queue depending on download rate
284         * supports compact=1
285         * selective downloading
286         * ip filter