NEWS 2.5 KB

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