NEWS 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. aria2 1.6.1
  2. ===========
  3. Release Note
  4. ------------
  5. This release fixes memory leak in HTTP/FTP download. It also fixes the
  6. bug that the option values changed by XML-RPC changeOption and
  7. changeGlobalOption methods are cleared. Now User-agent and Peer ID
  8. include version number. Updated Simplified Chinese translations.
  9. Changes
  10. -------
  11. * Don't save control file when aria2 exits while checking piece
  12. hash(behavior of -V option). If control file doesn't exist when
  13. aria2 launches, the completed length in saved control file will be
  14. 0 byte and this confuses user.
  15. * Included version number in Peer ID and client version. Peer ID now
  16. starts with "aria2/VERSION-", where VERSION is
  17. MAJOR.MINOR.MICRO. Client version is aria2/VERSION.
  18. * Included version number in user-agent string.
  19. * Fixed memory leak in HTTP/FTP download.
  20. * Fixed the bug that the option values changed by XML-RPC
  21. methods(changeOption and changeGlobalOption) are overwritten to the
  22. previous value by the next these requests which doesn't contain
  23. that option value.
  24. * Added missing help message for remove command to aria2rpc.
  25. aria2 1.6.0
  26. ===========
  27. Release Note
  28. ------------
  29. This release changes the default behavior of XML-RPC server. Now it
  30. listens only on local loopback interface by default for security
  31. reasons. If you want to connect to aria2c from remote hosts, use
  32. --xml-rpc-listen-all option. The XML-RPC client sample script written
  33. in Ruby are now included in the archive under doc/xmlrpc directory.
  34. These scripts are licensed under MIT License. The help category tags
  35. are now start "#" to distinguish them from keyword search. Several
  36. help category tags were added: #xml-rpc, #cookie, #hook and #file.
  37. --retry-wait option was removed because it doesn't work properly under
  38. the architecture. Updated Bulgarian, Russian, Slovak and Japanese
  39. translations.
  40. Changes
  41. -------
  42. * Added XML-RPC in -v Configuration output.
  43. * Updated Bulgarian, Russian, Slovak and Japanese
  44. translations. Thanks to all translators.
  45. * Removed --retry-wait option since the current architecture doesn't
  46. allow sleep for particular URI.
  47. * Removed Retry-After header support since the current architecture
  48. doesn't allow sleep for particular URI.
  49. * Added our own daemon() function for systems which desn't have
  50. daemon(3).
  51. * Added help category tag #file. Added #file tag to the options
  52. related to downloaded file.
  53. * Added help category tags: #cookie and #hook. Added #https tag to
  54. --https-proxy and --https-proxy, --all-proxy and --no-proxy.
  55. * A help category tag now starts with "#" to distinguish a category
  56. from keyword search. For example, "http" tag is now "#http". You
  57. can type "--help=#http" to get explanation of options related to
  58. http. If '#' is omitted, then the argument is treated as a keyword
  59. and aria2 searches options whose name includes the keyword and
  60. print matched ones. For example, "--help=http" will show options
  61. whose name includes "http".
  62. * Added xml-rpc help tag. Tagged xml-rpc related options with
  63. xml-rpc tag.
  64. * Fixed the bug that server performence profile is not updated when
  65. aria2c was terminated by emergency shutdown.
  66. * Added XML-RPC client scripts written in ruby.
  67. * Added support for IPv6 literal address in URI. Now aria2 can
  68. handle URI such as http://[::1]/
  69. * Fixed the bug that HTTP request header for XML-RPC request is not
  70. parsed properly.
  71. * Added --xml-rpc-listen-all option. If true is given to this option,
  72. aria2 listens incoming XML-RPC requests on all network
  73. interfaces. If false is given, listens only on local loopback
  74. interface. The default value is false.