NEWS 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. aria2 1.6.3
  2. ===========
  3. Release Note
  4. ------------
  5. This release fixes reported bugs and updates Polish, Catalan, French,
  6. Italian, Russian and Japanese translations.
  7. Changes
  8. -------
  9. * Updated Polish, Catalan, French, Italian, Russian and Japanese
  10. translations. Thanks to all translators.
  11. * Fixed the bug that DHTAbstractNodeLookupTask never finishes if
  12. error occurred in DHTMessageDispatcherImpl::sendMessage().
  13. * Fixed the bug that in Windows environment new blank line is
  14. inserted when console readout is updated.
  15. * Fixed the bug that when downloading more than one torrent with
  16. multiple ports in --listen-port, listening port is not reported
  17. properly to tracker for 2nd or later torrents.
  18. * Fixed typos in documentation.
  19. * Fixed the bug that Netrc::parse() cannot recognize comment line.
  20. * Fixed Metalink piping no longer works.
  21. * Fixed "--ftp-passwd" option ignored when user name embedded in URI.
  22. aria2 1.6.2
  23. ===========
  24. Release Note
  25. ------------
  26. This release fixes segmentation fault error if URI to download
  27. contains printf format string and logging is enabled. The build
  28. scripts are updated to automake 1.11 and autoconf 2.64. Updated
  29. Ukrainian translation.
  30. Changes
  31. -------
  32. * Replaced aria2 with aria2c in help message.
  33. * Don't set localedir manually. Leave it to autoconf.
  34. * Added --install to ACLOCAL_AMFLAGS. Removed m4 from SUBDIRS.
  35. Updated automake 1.11 and autoconf 2.64. Replaced some obsolute
  36. macros with new one.
  37. * Removed Makefile.am in m4 directory. Removed unused m4 macros.
  38. * Fixed the bug that causes segmentation fault if
  39. req->getCurrentUrl() contains printf format string such as %d. The
  40. statement that causes this bug is useless and removed.
  41. aria2 1.6.1
  42. ===========
  43. Release Note
  44. ------------
  45. This release fixes memory leak in HTTP/FTP download. It also fixes the
  46. bug that the option values changed by XML-RPC changeOption and
  47. changeGlobalOption methods are cleared. Now User-agent and Peer ID
  48. include version number. Updated Simplified Chinese translations.
  49. Changes
  50. -------
  51. * Don't save control file when aria2 exits while checking piece
  52. hash(behavior of -V option). If control file doesn't exist when
  53. aria2 launches, the completed length in saved control file will be
  54. 0 byte and this confuses user.
  55. * Included version number in Peer ID and client version. Peer ID now
  56. starts with "aria2/VERSION-", where VERSION is
  57. MAJOR.MINOR.MICRO. Client version is aria2/VERSION.
  58. * Included version number in user-agent string.
  59. * Fixed memory leak in HTTP/FTP download.
  60. * Fixed the bug that the option values changed by XML-RPC
  61. methods(changeOption and changeGlobalOption) are overwritten to the
  62. previous value by the next these requests which doesn't contain
  63. that option value.
  64. * Added missing help message for remove command to aria2rpc.
  65. aria2 1.6.0
  66. ===========
  67. Release Note
  68. ------------
  69. This release changes the default behavior of XML-RPC server. Now it
  70. listens only on local loopback interface by default for security
  71. reasons. If you want to connect to aria2c from remote hosts, use
  72. --xml-rpc-listen-all option. The XML-RPC client sample script written
  73. in Ruby are now included in the archive under doc/xmlrpc directory.
  74. These scripts are licensed under MIT License. The help category tags
  75. are now start "#" to distinguish them from keyword search. Several
  76. help category tags were added: #xml-rpc, #cookie, #hook and #file.
  77. --retry-wait option was removed because it doesn't work properly under
  78. the architecture. Updated Bulgarian, Russian, Slovak and Japanese
  79. translations.
  80. Changes
  81. -------
  82. * Added XML-RPC in -v Configuration output.
  83. * Updated Bulgarian, Russian, Slovak and Japanese
  84. translations. Thanks to all translators.
  85. * Removed --retry-wait option since the current architecture doesn't
  86. allow sleep for particular URI.
  87. * Removed Retry-After header support since the current architecture
  88. doesn't allow sleep for particular URI.
  89. * Added our own daemon() function for systems which desn't have
  90. daemon(3).
  91. * Added help category tag #file. Added #file tag to the options
  92. related to downloaded file.
  93. * Added help category tags: #cookie and #hook. Added #https tag to
  94. --https-proxy and --https-proxy, --all-proxy and --no-proxy.
  95. * A help category tag now starts with "#" to distinguish a category
  96. from keyword search. For example, "http" tag is now "#http". You
  97. can type "--help=#http" to get explanation of options related to
  98. http. If '#' is omitted, then the argument is treated as a keyword
  99. and aria2 searches options whose name includes the keyword and
  100. print matched ones. For example, "--help=http" will show options
  101. whose name includes "http".
  102. * Added xml-rpc help tag. Tagged xml-rpc related options with
  103. xml-rpc tag.
  104. * Fixed the bug that server performence profile is not updated when
  105. aria2c was terminated by emergency shutdown.
  106. * Added XML-RPC client scripts written in ruby.
  107. * Added support for IPv6 literal address in URI. Now aria2 can
  108. handle URI such as http://[::1]/
  109. * Fixed the bug that HTTP request header for XML-RPC request is not
  110. parsed properly.
  111. * Added --xml-rpc-listen-all option. If true is given to this option,
  112. aria2 listens incoming XML-RPC requests on all network
  113. interfaces. If false is given, listens only on local loopback
  114. interface. The default value is false.