aria2/NEWS

82 lines
2.7 KiB
Plaintext
Raw Normal View History

2013-04-20 10:03:59 +00:00
aria2 1.17.0
2013-03-24 08:36:58 +00:00
============
Release Note
------------
2013-04-20 10:03:59 +00:00
This release adds Mac OS X native SSL/TLS library support. The IPv6
asynchronous DNS is enabled by default and A/AAAA lookups are done in
parallel. The simple Happy Eyeballs algorithm was implemented to
mitigate long timeout when connecting to IPv6 host on dual-stack host.
--save-session option only saves the options specified by command-line
or RPC.
2013-03-24 08:36:58 +00:00
Changes
-------
2013-04-20 10:03:59 +00:00
* Updated Russian manual
2013-03-24 08:36:58 +00:00
2013-04-20 10:03:59 +00:00
Contributed by ITriskTI
2013-03-24 08:36:58 +00:00
2013-04-20 10:03:59 +00:00
* Updated Portuguese manual
2013-03-24 08:36:58 +00:00
2013-04-20 10:03:59 +00:00
Contributed by Gilberto dos Santos Alves
2013-03-17 07:08:08 +00:00
2013-04-20 10:03:59 +00:00
* Append --static to pkg-config arguments when ARIA2_STATIC=yes
2013-03-17 07:08:08 +00:00
2013-04-20 10:03:59 +00:00
* Save options directly specified for download in --save-session
2013-03-17 07:08:08 +00:00
2013-04-20 10:03:59 +00:00
This change makes --save-session save only options specified for
download, more specifically, options in command-line, -i file and
via RPC. The other options from conf file and default values are not
saved. This will drastically decrease the size of session file.
2013-03-17 07:08:08 +00:00
2013-04-20 10:03:59 +00:00
* Save URI returned only from FileEntry::getRemainingUris()
2013-03-17 07:08:08 +00:00
2013-04-20 10:03:59 +00:00
The currently used URIs are inserted back into remaining URI list in
FileEntry::putBackRequest(), which overlaps to some of the URIs in
spentUris_. If we save spent URIs, each time save is performed, the
number of URIs are increased due to this overlap. This change fixes
this bug.
2013-03-17 07:08:08 +00:00
2013-04-20 10:03:59 +00:00
* Print linked 3rd party libraries with version in `aria2c -v` output
2013-03-17 07:08:08 +00:00
2013-04-20 10:03:59 +00:00
* AppleTLS: Support credentials via KeyChain fingerprints
2013-03-17 07:08:08 +00:00
Contributed by Nils Maier
2013-04-20 10:03:59 +00:00
* AppleTLS: Implement AppleTLS and Apple Message Digest
2013-03-17 07:08:08 +00:00
Contributed by Nils Maier
2013-04-20 10:03:59 +00:00
* Use info level log for system trusted ca imports failure
2012-02-27 12:33:01 +00:00
2013-04-20 10:03:59 +00:00
This is because on some platforms (gnutls on cygwin for example),
library always fails for this function and getting ERROR every time
aria2c invoked is too hard.
2012-02-27 12:33:01 +00:00
2013-04-20 10:03:59 +00:00
* Don't add Windows native DLLs for Cygwin build
2012-02-27 12:33:01 +00:00
2013-04-20 10:03:59 +00:00
* Remove deprecated options: --enable-direct-io and --metalink-servers
2012-02-27 12:33:01 +00:00
2013-04-20 10:03:59 +00:00
* Deprecate --enable-async-dns6
2012-02-27 12:33:01 +00:00
2013-04-20 10:03:59 +00:00
The IPv6 asynchronous name resolver is enabled if the host has at
least one interface with IPv6 address configured (the loopback
address will not be counted), which is roughly the same behaviour of
the standard getaddrinfo(3). To disable IPv6 asynchronous name
resolver, use --disable-ipv6.
2012-02-27 12:33:01 +00:00
2013-04-20 10:03:59 +00:00
* Fix uninitialized UDPTrackerClient::numWatchers_
2012-02-27 12:33:01 +00:00
2013-04-20 10:03:59 +00:00
* Implement simple Happy Eyeballs for HTTP/FTP downloads
2011-12-25 15:59:24 +00:00
2013-04-20 10:03:59 +00:00
* Parallel A and AAAA record lookups with c-ares
2011-12-25 15:59:24 +00:00
2013-04-20 10:03:59 +00:00
But we don't wait for AAAA query response if A query response has
been received. If we got IPv4 lookup response, we don't wait for
IPv6 lookup response. This is because DNS server may drop AAAA query
and we have to wait for the long time before timeout. We don't do
the inverse, because, based on todays deployment of DNS server,
almost all of them can respond A query just fine.