NEWS 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. aria2 1.8.3
  2. ===========
  3. Release Note
  4. ------------
  5. This release fixes the bug that --file-allocation=falloc doesn't work
  6. with single file download. It also fixes the bug that the return value
  7. of aria2 is unreliable if error occurs before download begins. When
  8. custom request headers specified by --header option now override
  9. built-in headers if they have same name.
  10. Changes
  11. -------
  12. * User-defined custom request headers specified by --header option
  13. now override builtin headers if they have same name.
  14. * Support RFC2231 "Parameter Value Character Set and Language
  15. Information" in Content-Disposition header.
  16. * Fixed the bug that aria2 doesn't handle return value if error
  17. occurred before download begins.
  18. * Fixed the bug that --file-allocation=falloc doesn't work with
  19. single file download.
  20. aria2 1.8.2
  21. ===========
  22. Release Note
  23. ------------
  24. This release fixes the bug that causes segmentation fault with
  25. --max-file-not-found option involved. Now aria2 can handle redirected
  26. URI which is not properly percent encoded. In MinGW32 build, console
  27. readout is now always cut by 80 characters. 'bittorrent' key is added
  28. to the response of tellStatus XML-RPC method. The associated value of
  29. the key is a struct and contains data retrieved from .torrent file,
  30. such as name, announce-list, comment, etc.
  31. Changes
  32. -------
  33. * Added Portuguese translation. Updated Ukrainian and Spanish
  34. translation. Thanks to all translators.
  35. * Call ares_library_init and ares_library_cleanup if they are
  36. available. Some code cleanups.
  37. * Call ares_process_fd() each time after epoll to handle timeout.
  38. * Added bittorrent key to the response of tellStatus XML-RPC method.
  39. The associated value of the key is a struct and contains data
  40. retrieved from .torrent file, such as name, announce-list, comment,
  41. etc.
  42. * Rewritten Cookie storage.
  43. * Handle redirected URI which is not properly percent encoded.
  44. * Fixed the bug that causes segmentaiton fault when aria2 sees '404
  45. not found' in the N times(N is where --max-file-not-found=N, N>0)
  46. in a row without single '200 OK' response.
  47. * Fixed compile error with i586-mingw32msvc-g++. Always Cut console
  48. readout by 80 characters in mingw32 build.
  49. * Fixed compile error with intel compiler
  50. aria2 1.8.1
  51. ===========
  52. Release Note
  53. ------------
  54. This release fixes the bug that causes segmentation fault if unknown
  55. options exist in aria2.conf file and user cannot include empty line in
  56. aria2.conf.
  57. Following new command line options are added: --http-no-cache,
  58. --bt-metadata-only and --human-readable option. --dir option now
  59. treats "" as ".". --all-proxy, --http-proxy, --https-proxy and
  60. --ftp-proxy option accept empty string "". When "" is given, it
  61. erases previously defined proxy.
  62. aria2.getSessionInfo XML-RPC method was added. aria2.tellWaiting and
  63. aria2.tellStopped XML-RPC method accept a negative integer as
  64. offset. For example, in aria2.tellWaiting, 'offset' == -1 points last
  65. download in the waiting queue and 'offset' == -2 points the download
  66. before the last download, and so on. 'dir' and 'files' key were added
  67. to the response struct of aria2.tellStatus XML-RPC method. The value
  68. associated with 'files' key is the list of files. Its element is the
  69. same struct used in aria2.getFiles XML-RPC method. 'uris' key was
  70. added to the response struct of aria2.getFiles XML-RPC method. The
  71. value associated with 'uris' key is the list of URIs. Its element is
  72. the same struct used in aria2.getUris XML-RPC method. aria2 now
  73. returns gzip compressed XML-RPC response if XML-RPC client accepts
  74. gzip content encoding.
  75. Changes
  76. -------
  77. * aria2 now returns gzip compressed XML-RPC response if XML-RPC
  78. client accepts gzip content encoding.
  79. * Added dir and files key to the response struct of aria2.tellStatus
  80. XML-RPC method. The value associated with files key is the list of
  81. files. Its element is the same struct used in aria2.getFiles
  82. XML-RPC method. Added uris key to the response struct of
  83. aria2.getFiles XML-RPC method. The value associated with uris key
  84. is the list of URIs. Its element is the same struct used in
  85. aria2.getUris XML-RPC method.
  86. * Added aria2.getSessionInfo XML-RPC method. This method returns a
  87. struct containing Session ID, which is generated each time when
  88. aria2 is invoked.
  89. * Now offset argument in aria2.tellWaiting and aria2.tellStopped
  90. accept a negative integer. 'offset' == -1 points last download in
  91. the waiting queue and 'offset' == -2 points the download before the
  92. last download, and so on. The downloads in the response are in
  93. reversed order.
  94. * Added --human-readable option. This option, when true is given,
  95. prints sizes and speed in human readable format(e.g., 1.2Ki, 3.4Mi)
  96. in the console readout. The default value is true and it looks
  97. exactly the same as aria2-1.8.0. So the 'new feature' appears when
  98. false is given. In this case, sizes and speed are printed in
  99. bytes. No Ki, Mi units conversion is used. This may be useful for
  100. a program to parse the output of aria2.
  101. * Now --all-proxy, --http-proxy, --https-proxy and --ftp-proxy option
  102. accept empty string "". When "" is given, it erases previously
  103. defined proxy.
  104. * Added --bt-metadata-only option. If true is given to this option,
  105. aria2 downloads metadata only. The file(s) described in metadata
  106. will not be downloaded. This option has effect only when BitTorrent
  107. Magnet URI is used. See also --bt-save-metadata option.
  108. * Fixed memory leak. Commands stored in std::deque<Command*> are not
  109. deleted when exception is thrown.
  110. * Replaced '/' and '\' with '_' in HTTP/FTP filename.
  111. * Treat --dir="" as --dir="."
  112. * Added --http-no-cache option. When true is given, aria2 sends
  113. Cache-Control: no-cache and Pragma: no-cache header to avoid cached
  114. content. If false is given , these headers are not sent and you
  115. can add Cache-Control header with a directive you like using
  116. --header option.
  117. * Added following sentence to the help message of --out option:
  118. --out option is ignored when -Z is used.
  119. * Added --bt-save-metadata option to -i list options.
  120. * Fixed compile error with i586-mingw32msvc-gcc 4.4.2, which is
  121. debian's corss compiler, without any additional libraries.
  122. * Fixed the bug that causes segmentation fault if unknown option is
  123. put in aria2.conf file. BUG#2928303
  124. * Ignore port message with port=0.
  125. * Updated autoconf/automake auxiliary files.
  126. aria2 1.8.0
  127. ===========
  128. Release Note
  129. ------------
  130. This release fixes the bug that configure script fails to detect
  131. GnuTLS library if --without-sqlite3 is given. The new XML-RPC methods
  132. are added: aria2.getOption, aria2.getGetGlobalOption,
  133. aria2.changePosition, aria2.tellStopped and system.multicall.
  134. --bt-save-metadata option is added. This option saves metadata as
  135. .torrent file. This option has effect only when BitTorrent Magnet URI
  136. is used.
  137. Changes
  138. -------
  139. * Added signal handler for SIGHUP to save .aria2 file when terminal
  140. is closed. The handler is the same one for SIGINT and SIGTERM.
  141. * Added system.multicall XML-RPC method.
  142. * Added tellStopped XML-RPC method. This method returns stopped
  143. download in the specified range. It takes same parameters with
  144. tellWaiting XML-RPC method. offset = 0 means the oldest download.
  145. * Use AI_ADDRCONFIG flag if it is available. Refactored so that
  146. getaddrinfo calls are not scattered around. Unset AI_ADDRCONFIG
  147. when conducting unit tests because they fail if networking
  148. interface is not configured with IPv4 address.
  149. * Added --bt-save-metadata option. When true is given, it saves
  150. metadata as .torrent file. This option has effect only when
  151. BitTorrent Magnet URI is used. The filename is hex encoded info
  152. hash with suffix .torrent. The directory to be saved is the same
  153. directory where download file is saved. If the same file already
  154. exists, metdata is not saved.
  155. * Added changePosition XML-RPC method. It takes 3 parameters: gid,
  156. pos and how. This method changes the position of download denoted
  157. by gid. If how is POS_SET, it moves the download to a position
  158. relative to the beginning of the queue. If how is POS_CUR, it
  159. moves the download to a position relative to the current
  160. position. If how is POS_END, it moves the download to a position
  161. relative to the end of the queue. If the destination position is
  162. less than 0 or beyond the end of the queue, it moves the download
  163. to the beginning or the end of the queue respectively. Returns the
  164. destination position.
  165. * Added getOption and getGlobalOption XML-RPC method. getOption
  166. takes GID as a parameter and returns its options as struct.
  167. getGlobalOption takes no parameter and returns global
  168. options. Because global option is used as a template for the option
  169. of newly added downloads, it includes options returned by
  170. getOption.
  171. * Added following 2 keys, followedBy and belongsTo, to the response
  172. of tellStatus.
  173. followedBy: List of GIDs which are generated by the
  174. consequence of this download. For example, when aria2 downloaded
  175. Metalink file, it generates downloads described in it(see
  176. --follow-metalink option). This value is useful to track these
  177. auto generated downloads. If there is no such downloads, this key
  178. will not be included in the response.
  179. belongsTo: GID of a parent download. Some downloads are a part of
  180. another download. For example, if a file in Metalink has
  181. BitTorrent resource, the download of .torrent is a part of that
  182. file. If this download has no parent, this key will not be
  183. included in the response.
  184. * Show info hash in Magnet URI in upper case letters in -S output.
  185. * Fixed the bug that if --without-sqlite3 is given, pkg-config is not
  186. properly used in configure script and failed to detect gnutls.
  187. This is because explicit call of PKG_PROG_PKG_CONFIG is missing and
  188. the initialization of pkg-config is done in first occurrence of
  189. PKG_CHECK_MODULES which is not executed because it is inside of
  190. sqlite3.m4. Added explicit PKG_PROG_PKG_CONFIG call.