NEWS 8.6 KB

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