NEWS 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. aria2 1.3.3
  2. ===========
  3. Release Note
  4. ------------
  5. This release fixes the bug that --check-integrity option doesn't work
  6. properly if a file including last piece is missing.
  7. Changes
  8. -------
  9. * Generated configure and Makefile.in using autoconf 2.63 and
  10. automake 1.10.2. Removed AC_GNU_SOURCE from configure.ac because
  11. it is subset of AC_USE_SYSTEM_EXTENSIONS and we use latter.
  12. * Supported segmented downloading with chunked transfer encoding and
  13. content-length.
  14. * Applied Pascal Bleser's patch: increases MAX_RECV_BUFFER for ftp
  15. from 4096 to 65536 (for insanely large ftp login banners)
  16. * Fixed the bug that read-only file with wrong file size will cause
  17. error because it cannot be truncated to the correct size. Now if
  18. file size is different than the expected one, re-open file in
  19. writable mode.
  20. * Fixed the bug that with --check-integrity option aria2 reports
  21. downloaded file size is 0 even if some parts of file is correctly
  22. downloaded. This bug is reproducible for the download that a file
  23. includes last piece is missing. This bug doesn't reveal for
  24. single-torrent with file allocation on.
  25. aria2 1.3.2
  26. ===========
  27. Release Note
  28. ------------
  29. This release fixes the bug that prevents certain BitTorrent downloads
  30. from finishing and possible segmentation fault when gzip decoding is
  31. involved and infinite loop bug if last "0" chunk-size marker is not
  32. received in chunked encoding transfer. aria2 now supports
  33. WEB-Seeding(HTTP-Seeding) for single file torrent. Ukrainian
  34. translation was updated.
  35. Changes
  36. -------
  37. * Updated Ukrainian translation.
  38. * Use url-list (web-seeding) only for single-file torrent. This is
  39. basically the same behavior with Metalink file with torrent and
  40. URIs.
  41. * Fixed the bug that prevents torrent download from finishing. The
  42. bug doesn't reveal for all torrents. The torrents affected this bug
  43. satisfies ((N+7)/8)%4 == 0 and N%32 != 0 where N is the number of
  44. pieces.
  45. * Fixed segmentation fault when GZipDecoder::decode() returns 0 byte.
  46. * Fixed the bug that causes infinite loop if broken web server
  47. returns chunked response without last "0" chunk-size marker and
  48. closes connection.
  49. * Instantiate properly configured HttpDownloadCommand for
  50. non-resumable downloads.
  51. * Rewritten bitfield operation functions for efficiently.
  52. * Set conditional HAVE_GETADDRINFO true for mingw32. It was
  53. accidentally set to false in r1162.
  54. * Increase prefixLength for the bucket which doesn't own local node
  55. ID when splitting bucket.
  56. aria2 1.3.1
  57. ===========
  58. Release Note
  59. ------------
  60. This release fixes the bug that aria2 wrongly determines that
  61. specified share ratio is reached because of miscalculation of upload
  62. bytes and the bug that upload limit exceeds the value specified in
  63. --seed-ratio option depending on the timing of the execution of
  64. SeedCheckCommand.
  65. Changes
  66. -------
  67. * Updated README
  68. * Fixed the bug that upload limit exceeds the value specified in
  69. --seed-ratio option depending on the timing of the execution of
  70. SeedCheckCommand.
  71. * Fixed the bug that removed peer's session upload/download length are
  72. counted twice in _cachedTransferStat before it is re-calculated.
  73. This affected the calculation of shara ratio, resulting aria2
  74. wrongly determines that specified share ratio is reached.
  75. aria2 1.3.0
  76. ===========
  77. Release Note
  78. ------------
  79. This release adds the ability to specify the output filenames in
  80. BitTorrent downloads and the option to limit overall download speed
  81. and dry run mode which just checks the availability of the remote
  82. file. -i list option can now take new options: select-file and
  83. index-out. The default behavior of sending HTTP Authorization header
  84. is reverted back to version 1.1.2 style. The bug in
  85. AdaptiveURISelector was fixed. You can now seed read-only files in
  86. BitTorrent. --file-allocation option can take new parameter
  87. 'falloc'. If it is given and you are using newer file systems such as
  88. ext4, btrfs or xfs, large(few GiB) files are allocated almost
  89. instantly. The performance optimization has been done and aria2 runs
  90. more efficiently.
  91. Indonesian, Russian, Italian, Ukrainian, Simplified Chinese, Japanese,
  92. Spanish and Norwegian Nynorsk translations were updated.
  93. Changes
  94. -------
  95. * Added 'falloc' parameter for --file-allocation option. 'falloc'
  96. allocation mode uses posix_fallocate() system call to allocate file
  97. on disk. If you are using newer file systems such as ext4 (with
  98. extents support), btrfs or xfs, 'falloc' is your best choice. It
  99. allocates large(few GiB) files almost instantly. Don't use 'falloc'
  100. with legacy file systems such as ext3 because it takes almost same
  101. time as 'prealloc' and it blocks aria2 entirely until allocation
  102. finishes. 'falloc' may not be available if your system doesn't have
  103. posix_fallocate() system call.
  104. * Added --bt-tracker-interval option to specify the interval between
  105. tracker requests. If non-zero value is specified, aria2 uses it and
  106. ignores the interval value in the response of tracker. If zero is
  107. specified, aria2 determines the inteval value based on the tarcker
  108. response and download progress.
  109. * Reduced CPU usage in RarestPieceSelector.
  110. * Reduced CPU usage when hitting download limit/upload limit.
  111. * Changed the default value of --uri-selector option from 'inorder' to
  112. 'feedback'
  113. * Included current URI in exception message.
  114. * Fixed the bug that AdaptiveURISelector doesn't select any URI when
  115. all URIs are tested and their timeout is not reached.
  116. * Reuse URIs when all unused URIs run out.
  117. * Removed --direct-file-mapping option and CopyDiskAdaptor.
  118. * Added --dry-run option. In this mode, aria2 just checks whether
  119. the remote file is available and doesn't download data. This
  120. option has effect on HTTP/FTP downloads and BitTorrent downloads
  121. are canceled in this mode.
  122. * Parse options in -i list using OptionParser.
  123. * Don't reset URI in retry to avoid additional round trips because
  124. of redirects.
  125. * Added --index-out option to specify each file path for torrent. The
  126. index shown in --show-files option is used to specify which file
  127. path should be altered. For example, to change the file path with
  128. index=2, use --index-out=2=aria2.tar.bz2. You can use this option
  129. multiple times: --index-out=1=aria2.tar.bz2
  130. --index-out=2=aria2-opt.tar.bz2. The short hand form -O is also
  131. available. This option can be specified in -i list.
  132. * Added --max-overall-download-limit option. Now --max-upload-limit
  133. option is not ignored when --max-overall-upload-limit option has
  134. non-zero value. aria2 checks download(upload) speed in the order:
  135. first checks overall speed limit and if it is not exceeded, then
  136. checks speed limit per download. Thus you can specify both
  137. value. For example, set --max-overall-download-limit=1M and
  138. --max-download-limit=500K to prevent from one download from eating
  139. all overall speed limit.
  140. * Now select-file can be specified in the uri list(-i list).
  141. * Made the upper value of --max-concurrent-downloads options unlimited.
  142. * Fixed the bug that disk writer is not created even if it shares same
  143. piece with the preceding file if the length of previous file is 0.
  144. * In BitTorrent, Open files in read-only mode for hash check. After
  145. that, re-open file in read/write mode only when the download is
  146. not finished.
  147. * Added --http-auth-challenge option. If it is set to true, aria2
  148. sends HTTP authorization header only when it is requested by the
  149. server. If false is set, then authorization header is always sent to
  150. the server. This is useful for servers that don't respond 401 code
  151. when authentication is required. There is an exception: if username
  152. and password are embedded in URI, authorization header is always
  153. sent to the server regardless of this option. The default value of
  154. this option is false.