aria2/NEWS

68 lines
1.8 KiB
Plaintext
Raw Normal View History

2016-06-14 13:40:46 +00:00
aria2 1.24.0
2015-12-05 13:24:49 +00:00
============
Release Note
------------
2016-06-14 13:40:46 +00:00
This release fixes several bugs. The new functionality is that when
options which is only applicable in waiting state are submitted to an
active download via RPC, the download is now automatically restarted
to reflect the changes. Previously, those options were just ignored.
2015-12-05 13:24:49 +00:00
Changes
-------
2016-06-14 13:40:46 +00:00
* BitTorrent: Allow 32KiB request
2015-12-05 13:24:49 +00:00
2016-06-14 13:40:46 +00:00
It looks like the 32KiB is the default request size of python
bittorrent client. Previously, aria2 only allowed maximum 16KiB
request.
2015-12-05 13:24:49 +00:00
2016-06-14 13:40:46 +00:00
* Don't unchoke peer which is not interested in us
2015-12-05 13:24:49 +00:00
2016-06-14 13:40:46 +00:00
* Fix bug that evaluation of Peer::amChoking is negated
2015-12-05 13:24:49 +00:00
2016-06-14 13:40:46 +00:00
* Faster seed/download on fast connection
2015-12-05 13:24:49 +00:00
2016-06-14 13:40:46 +00:00
* Increase DHT task concurrency to 15
2015-12-05 13:24:49 +00:00
2016-06-14 13:40:46 +00:00
Fix GH-653
2015-12-05 13:24:49 +00:00
2016-06-14 13:40:46 +00:00
* Fixed mmap failure check with MAP_FAILED flag
2016-05-15 10:26:44 +00:00
2016-06-14 13:40:46 +00:00
Fix GH-662
2016-05-15 10:26:44 +00:00
2016-06-14 13:40:46 +00:00
Patch from suzker
2016-05-15 10:26:44 +00:00
2016-06-14 13:40:46 +00:00
* Added file size overflow check for mmap on 32bit os
2016-05-15 10:26:44 +00:00
2016-06-14 13:40:46 +00:00
Fix GH-662
2016-05-15 10:26:44 +00:00
2016-06-14 13:40:46 +00:00
Patch from suzker
2016-05-15 10:26:44 +00:00
2016-06-14 13:40:46 +00:00
* Use standard percent-encode for tracker request query
2016-05-15 10:26:44 +00:00
2016-06-14 13:40:46 +00:00
Fix GH-659
2016-05-15 10:26:44 +00:00
2016-06-14 13:40:46 +00:00
* mingw32: Gain privilege before opening files
2016-05-15 10:26:44 +00:00
2016-06-14 13:40:46 +00:00
Fix GH-657
2016-05-15 10:26:44 +00:00
2016-06-14 13:40:46 +00:00
* Restart active download to apply previously not applicable options
2016-05-15 10:26:44 +00:00
2016-06-14 13:40:46 +00:00
Previously, we categorized options that can be used in
aria2.changeOption RPC method into 2 categories. The options in one
category can be applied on the fly, meaning that download continues
to be active while applying options. Another category includes
options which are only applicable when downloads are waiting or
paused.
2016-05-15 10:26:44 +00:00
2016-06-14 13:40:46 +00:00
In this change, when active download is ordered to change options
which only applicable in waiting or paused state, it is now paused,
and then automatically restarted. Although we have limited number
of download concurrency, the pause and restart is done atomically,
and the download is inserted at the front of the queue, it is picked
up immediately if the concurrency regulation allows.
2016-05-15 10:26:44 +00:00
2016-06-14 13:40:46 +00:00
Fix GH-640 and GH-644