NEWS 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. aria2 1.3.0
  2. ===========
  3. Release Note
  4. ------------
  5. This release adds the ability to specify the output filenames in
  6. BitTorrent downloads and the option to limit overall download speed
  7. and dry run mode which just checks the availability of the remove
  8. file. -i list option can now take more options: select-file and
  9. index-out. The default behavior of sending HTTP Authorization header
  10. is reverted back to version 1.1.2 style. The bug in
  11. AdaptiveURISelector was fixed. You can now seed read-only files in
  12. BitTorrent.
  13. Indonesian, Russian, Italian, Ukrainian and Simplified Chinese
  14. translations were updated.
  15. Changes
  16. -------
  17. * Changed the default value of --uri-selector option from 'inorder' to
  18. 'feedback'
  19. * Included current URI in exception message.
  20. * Fixed the bug that AdaptiveURISelector doesn't select any URI when
  21. all URIs are tested and their timeout is not reached.
  22. * Reuse URIs when all unused URIs run out.
  23. * Removed --direct-file-mapping option and CopyDiskAdaptor.
  24. * Added --dry-run option. In this mode, aria2 just checks whether
  25. the remote file is available and doesn't download data. This
  26. option has effect on HTTP/FTP downloads and BitTorrent downloads
  27. are canceled in this mode.
  28. * Parse options in -i list using OptionParser.
  29. * Don't reset URI in retry to avoid additional round trips because
  30. of redirects.
  31. * Added --index-out option to specify each file path for torrent.
  32. Here index shown in --show-files option is used to specify which
  33. file path should be altered. For example, to change the file path
  34. with index=2, use --index-out=2=aria2.tar.bz2. You can use this
  35. option multiple times: --index-out=1=aria2.tar.bz2
  36. --index-out=2=aria2-opt.tar.bz2. The short hand form -O is also
  37. available. This option can be specified in -i list.
  38. * Added --max-overall-download-limit option. Now --max-upload-limit
  39. option is not ignored when --max-overall-upload-limit option has
  40. non-zero value. aria2 checks download(upload) speed in the order:
  41. first checks overall speed limit and if it is not exceeded, then
  42. checks speed limit per download. Thus you can specify both
  43. value. For example, set --max-overall-download-limit=1M and
  44. --max-download-limit=500K to prevent from one download from eating
  45. all overall speed limit.
  46. * Now select-file can be specified in the uri list(-i list).
  47. * Made the upper value of --max-concurrent-downloads options unlimited.
  48. * Fixed the bug that disk writer is not created even if it shares same
  49. piece with the preceding file if the length of previous file is 0.
  50. * In BitTorrent, Open files in read-only mode for hash check. After
  51. that, re-open file in read/write mode only when the download is
  52. not finished.
  53. * Added --http-auth-challenge option. If it is set to true, aria2
  54. sends HTTP authorization header only when it is requested by the
  55. server. If false is set, then authorization header is always sent to
  56. the server. This is useful for servers that don't respond 401 code
  57. when authentication is required. There is an exception: if username
  58. and password are embedded in URI, authorization header is always
  59. sent to the server regardless of this option. The default value of
  60. this option is false.