NEWS 9.1 KB

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