aria2/NEWS

68 lines
2.5 KiB
Plaintext
Raw Normal View History

2009-09-20 09:33:07 +00:00
aria2 1.6.0
2009-08-21 05:04:54 +00:00
===========
Release Note
------------
2009-09-20 09:33:07 +00:00
This release changes the default behavior of XML-RPC server. Now it
listens only on local loopback interface by default for security
reasons. If you want to connect to aria2c from remote hosts, use
--xml-rpc-listen-all option. The XML-RPC client sample script written
in Ruby are now included in the archive under doc/xmlrpc directory.
These scripts are licensed under MIT License. The help category tags
are now start "#" to distinguish them from keyword search. Several
help category tags were added: #xml-rpc, #cookie, #hook and #file.
--retry-wait option was removed because it doesn't work properly under
the architecture. Updated Bulgarian, Russian, Slovak and Japanese
2009-07-18 09:38:42 +00:00
translations.
2009-06-07 08:24:05 +00:00
Changes
-------
2009-09-20 09:33:07 +00:00
* Added XML-RPC in -v Configuration output.
2009-07-18 09:38:42 +00:00
2009-09-20 09:33:07 +00:00
* Updated Bulgarian, Russian, Slovak and Japanese
translations. Thanks to all translators.
2009-07-16 13:09:11 +00:00
2009-09-20 09:33:07 +00:00
* Removed --retry-wait option since the current architecture doesn't
allow sleep for particular URI.
2009-07-16 13:09:11 +00:00
2009-09-20 09:33:07 +00:00
* Removed Retry-After header support since the current architecture
doesn't allow sleep for particular URI.
2009-07-16 13:09:11 +00:00
2009-09-20 09:33:07 +00:00
* Added our own daemon() function for systems which desn't have
daemon(3).
2009-06-07 08:24:05 +00:00
2009-09-20 09:33:07 +00:00
* Added help category tag #file. Added #file tag to the options
related to downloaded file.
2009-06-07 08:24:05 +00:00
2009-09-20 09:33:07 +00:00
* Added help category tags: #cookie and #hook. Added #https tag to
--https-proxy and --https-proxy, --all-proxy and --no-proxy.
2009-06-07 08:24:05 +00:00
2009-09-20 09:33:07 +00:00
* A help category tag now starts with "#" to distinguish a category
from keyword search. For example, "http" tag is now "#http". You
can type "--help=#http" to get explanation of options related to
http. If '#' is omitted, then the argument is treated as a keyword
and aria2 searches options whose name includes the keyword and
print matched ones. For example, "--help=http" will show options
whose name includes "http".
2009-06-07 08:24:05 +00:00
2009-09-20 09:33:07 +00:00
* Added xml-rpc help tag. Tagged xml-rpc related options with
xml-rpc tag.
2009-06-07 08:24:05 +00:00
2009-09-20 09:33:07 +00:00
* Fixed the bug that server performence profile is not updated when
aria2c was terminated by emergency shutdown.
2009-05-16 15:00:26 +00:00
2009-09-20 09:33:07 +00:00
* Added XML-RPC client scripts written in ruby.
2009-05-16 15:00:26 +00:00
2009-09-20 09:33:07 +00:00
* Added support for IPv6 literal address in URI. Now aria2 can
handle URI such as http://[::1]/
2009-05-16 15:00:26 +00:00
2009-09-20 09:33:07 +00:00
* Fixed the bug that HTTP request header for XML-RPC request is not
parsed properly.
2009-05-16 15:00:26 +00:00
2009-09-20 09:33:07 +00:00
* Added --xml-rpc-listen-all option. If true is given to this option,
aria2 listens incoming XML-RPC requests on all network
interfaces. If false is given, listens only on local loopback
interface. The default value is false.