NEWS 9.5 KB

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