aria2/NEWS

32 lines
650 B
Plaintext
Raw Normal View History

2017-01-16 13:34:28 +00:00
aria2 1.31.0
2016-09-17 00:09:13 +00:00
============
Release Note
------------
2017-01-16 13:34:28 +00:00
This release fixes assertion error in
SimpleRandomizer::getRandomBytes. It adds new option
content-disposition-default-utf8.
2015-12-05 13:24:49 +00:00
Changes
-------
2017-01-16 13:34:28 +00:00
* Better error message when local file status cannot be retrieved
2015-12-05 13:24:49 +00:00
2017-01-16 13:34:28 +00:00
GH-836
2015-12-05 13:24:49 +00:00
2017-01-16 13:34:28 +00:00
* Fix assertion failure in SimpleRandomizer::getRandomBytes
2015-12-05 13:24:49 +00:00
2017-01-16 13:34:28 +00:00
errno might not be initialized to 0, and we may get both rv == -1
and errno != ENOSYS. This leads to assertion failure. Since
getrandom_linux always returns -1 on failure, checking errno is
useless in this function.
2016-05-15 10:26:44 +00:00
2017-01-16 13:34:28 +00:00
GH-823
2016-05-15 10:26:44 +00:00
2017-01-16 13:34:28 +00:00
* Add option content-disposition-default-utf8
2016-05-15 10:26:44 +00:00
2017-01-16 13:34:28 +00:00
Patch from JimmyZ
2016-05-15 10:26:44 +00:00
2017-01-16 13:34:28 +00:00
GH-813