NEWS 7.6 KB

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