NEWS 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. aria2 1.9.1
  2. ===========
  3. Release Note
  4. ------------
  5. This release adds the ability to save unfinished downloads as text
  6. file. aria2 can read the file with -i option on restart. This
  7. release also adds the ability to download file from scratch when aria2
  8. sees resume is not supported by remote server. This feature is
  9. disabled by default. See --always-resume option for
  10. details. --no-proxy option accepts IPv4 network address with CIDR
  11. block. aria2 now doesn't send "Accept-Encoding: deflate, gzip" by
  12. default. --http-accept-gzip option was added to toggle this behavior.
  13. aria2 now treats lines starting "#" in -i list as comments. Several
  14. XML-RPC methods were added: aria2.pause, aria2.unpause,
  15. aria2.shutdown, and their families. The new exist status code '8' was
  16. added. The bug that makes aria2 hang when system time changes while
  17. aria2 is running was fixed on MinGW32, Mac OS X and the system which
  18. has clock_gettime(). Several other bugs also have been fixed.
  19. Changes
  20. -------
  21. * Updated Ukrainian, Russian, Simplified Chinese, German and Greek
  22. translation. Thanks to all translators.
  23. * Added warning for the system which lacks clock_gettime with
  24. CLOCK_MONOTONIC.
  25. * Fixed the bug that hash check hangs when aria2.pause is issued
  26. while aria2 is checking piece hashes. Fixed the bug that the
  27. download is paused after file allocation completion even if
  28. aria2.pause is issued during file allocation.
  29. * Fixed compile error on opensolaris
  30. * Added aria2.forcePause, aria2.pauseAll, aria2.forcePauseAll and
  31. aria2.unpauseAll XML-RPC method.
  32. * Use clock_gettime(CLOCK_MONOTONIC, ...) if it is available and
  33. usable to prevent from aria2 from being affected by system time
  34. change.
  35. * Added aria2.pause and aria2.unpause XML-RPC method. aria2.pause
  36. pauses the download denoted by gid. gid is of type string. The
  37. status of paused download becomes "paused" and the download is
  38. placed on the first position of waiting queue. As long as the
  39. status is "paused", the download is not started. To change status
  40. to "waiting", use aria2.unpause method. This method returns GID of
  41. paused download. aria2.unpause changes the status of the download
  42. denoted by gid from "paused" to "waiting". This makes the download
  43. eligible to restart. gid is of type string. This method returns GID
  44. of unpaused download.
  45. * Added --save-session=FILE option. This option saves
  46. error/unfinished downloads to FILE on exit. You can pass this
  47. output file to aria2c with -i option on restart. Please note that
  48. downloads added by aria2.addTorrent and aria2.addMetalink XML-RPC
  49. method are not saved.
  50. * Fixed the bug that FTP data connection is not established via proxy
  51. when --ftp-proxy is defined and --ftp-pasv=true and
  52. --proxy-method=tunnel.
  53. * Fixed the bug that web-seed URI is not percent-encoded.
  54. * Added aria2.shutdown and aria2.forceShutdown XML-RPC method. These
  55. methods, as their name imply, shutdown aria2. These methods are
  56. useful for Windows because it lacks signal mechanism.
  57. * Don't send "Accept-Encoding: default, gzip" by default. This is
  58. because some servers respond with "Content-Encoding: gzip" for a
  59. file which itself is gzipped file and aria2 inflates them. This is
  60. a problem if user doesn't want to inflate the file. Apparently this
  61. is server configuration error, but we cannot do anything about
  62. this. So we turned this off. Added --http-accept-gzip option. If
  63. true is given to this option, aria2 sends "Accept-Encoding:
  64. deflate, gzip" request header and inflates response if remote
  65. server responds with "Content-Encoding: gzip" or "Content-Encoding:
  66. deflate". We removed extension "tgz" hack in order not to inflate
  67. files with tgz extensions.
  68. * Made aria2 not send
  69. "application/metalink4+xml,application/metalink+xml" in Accept
  70. header for web-seeding URIs and tracker request.
  71. * Added --dht-message-timeout option.
  72. * Added --bt-tracker-connect-timeout and --bt-tracker-timeout
  73. option.
  74. * Documented that specifying --seed-time=0 disables seeding after
  75. download completed.
  76. * Drop connection if same Peer ID has been already seen.
  77. * Fixed the bug that waiting download unintentionally starts when
  78. URIs are added to it using aria2.changeUri XML-RPC method.
  79. * Fixed compile error with g++-4.4 on FreeBSD.
  80. * Fixed the bug that URIs added using aria2.changeUri XML-RPC method
  81. are not used immediately if there is no URI remaining before
  82. calling aria2.changeUri and the number of connection is less than
  83. the value in -s(or -C for Metalink downloads).
  84. * Added --always-resume and --max-resume-failure-tries option. If
  85. --always-resume=false is given, when all given URIs do not
  86. support resume or aria2 encounters N URIs which does not support
  87. resume (N is the value specified using --max-resume-failure-tries
  88. option), aria2 downloads file from scratch. The default behavior is
  89. --always-resume=true, which means if all URIs do not support
  90. resume, download fails. I think this is OK because user normally
  91. doesn't like to see that partially downloaded file is
  92. overwritten(this is particularly true if file size is big). This
  93. option is useful when aria2 is used as a download backend and
  94. graceful falling back to overwritten behavior is preferable. Added
  95. exit status value 8, which means download failed because server did
  96. not support resume.
  97. * Added --remove-control-file option. This option removes control
  98. file(*.aria2 file) before download. Using with
  99. --allow-overwrite=true, download always starts from scratch. This
  100. will be useful for users behind proxy server which disables
  101. resume. For such proxy user, -C1 is also recommended for Metalink
  102. downloads to avoid establishing unnecessary connections.
  103. * Added v key in DHT message. aria2's DHT version is independent of
  104. the package version and we defined it as 1 at the moment. It is
  105. defined as DHT_VERSION in src/DHTConstants.h. aria2's DHT version
  106. scheme is "A2"+2bytes DHT version number in network byte order.
  107. * Fixed the bug that value of numSeeders in aria2.tellStatus XML-RPC
  108. method response is integer, while it should be string. The man
  109. page says it is string. When peer's port is not listening port,
  110. set '0' to port in aria2.getPeers response.
  111. * Lines starting "#" in -i list are treated as comments.
  112. * Accept IPv4 network address with CIDR block in --no-proxy option
  113. and no_proxy environment variable. Current implementation does not
  114. resolve hostname in URI to compare network address. So it is only
  115. effecive if URI has numeric IP address.
  116. aria2 1.9.0
  117. ===========
  118. Release Note
  119. ------------
  120. This release adds Metalink4 support and BitTorrent Local Peer
  121. Discovery. aria2.changeUri XML-RPC method was added. It enables you
  122. to add/remove URIs to existing downloads dynamically. The user and
  123. password for proxy server now can be specified in command-line
  124. separately. We refactored the code based on profiler results, so
  125. aria2 now runs more efficiently than ever. Russian and Simplified
  126. Chinese translation were updated.
  127. Changes
  128. -------
  129. * Resurrected --http-proxy-user and --http-proxy-passwd option.
  130. Added --https-proxy-user, --https-proxy-passwd, --ftp-proxy-user,
  131. --ftp-proxy-passwd, --all-proxy-user, --all-proxy-passwd option.
  132. * Updated Russian and Simplified Chinese translation.
  133. * Added --reuse-uri option. This option has existed quite long, but
  134. been hidden.
  135. * Fixed the bug that filename is percent encoded where it must be
  136. percent decoded in sendMdtm().
  137. * Added getServers XML-RPC method. It returns currently connected
  138. HTTP(S)/FTP server and download speed, etc.
  139. * Added 'status' key to the response of getUri XML-RPC method.
  140. * Added changeUri XML-RPC method. This method removes/adds URIs
  141. dynamically.
  142. * Replaced null or control characters in file path with '_'. For
  143. MinGW32 build, additional characters which is not allowed in
  144. Windows kernel are also replaced. util::detectDirTraversal() now
  145. returns true if given string contains null or control characters.
  146. * Discard torrent file if path data in it contains directory
  147. traversal directives. Discard metalink:file element in Metalink3
  148. format if its name attribute contains directory traversal
  149. directives. Ignore name attribute of metalink:signature element in
  150. Metalink3 format if it contains directory traversal directives.
  151. * Added Metalink4 support. Files with same metaurl are
  152. grouped and downloaded in one RequestGroup.
  153. * Added --bt-lpd-interface option to specify the interface to use for
  154. Local Peer Discovery. LpdMessageDispatcher object now has its own
  155. socket. LpdMessageReceiver's socket is binded to multicast address
  156. to only receive multicast packets.
  157. * Added Local Peer Discovery. It is disabled by default. Use
  158. --bt-enable-lpd to enable the function.