NEWS 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. * Added --bt-tracker-interval option to specify the interval between
  18. tracker requests. If non-zero value is specified, aria2 uses it and
  19. ignores the interval value in the response of tracker. If zero is
  20. specified, aria2 determines the inteval value based on the tarcker
  21. response and download progress.
  22. * Reduced CPU usage in RarestPieceSelector.
  23. * Reduced CPU usage when hitting download limit/upload limit.
  24. * Changed the default value of --uri-selector option from 'inorder' to
  25. 'feedback'
  26. * Included current URI in exception message.
  27. * Fixed the bug that AdaptiveURISelector doesn't select any URI when
  28. all URIs are tested and their timeout is not reached.
  29. * Reuse URIs when all unused URIs run out.
  30. * Removed --direct-file-mapping option and CopyDiskAdaptor.
  31. * Added --dry-run option. In this mode, aria2 just checks whether
  32. the remote file is available and doesn't download data. This
  33. option has effect on HTTP/FTP downloads and BitTorrent downloads
  34. are canceled in this mode.
  35. * Parse options in -i list using OptionParser.
  36. * Don't reset URI in retry to avoid additional round trips because
  37. of redirects.
  38. * Added --index-out option to specify each file path for torrent.
  39. Here index shown in --show-files option is used to specify which
  40. file path should be altered. For example, to change the file path
  41. with index=2, use --index-out=2=aria2.tar.bz2. You can use this
  42. option multiple times: --index-out=1=aria2.tar.bz2
  43. --index-out=2=aria2-opt.tar.bz2. The short hand form -O is also
  44. available. This option can be specified in -i list.
  45. * Added --max-overall-download-limit option. Now --max-upload-limit
  46. option is not ignored when --max-overall-upload-limit option has
  47. non-zero value. aria2 checks download(upload) speed in the order:
  48. first checks overall speed limit and if it is not exceeded, then
  49. checks speed limit per download. Thus you can specify both
  50. value. For example, set --max-overall-download-limit=1M and
  51. --max-download-limit=500K to prevent from one download from eating
  52. all overall speed limit.
  53. * Now select-file can be specified in the uri list(-i list).
  54. * Made the upper value of --max-concurrent-downloads options unlimited.
  55. * Fixed the bug that disk writer is not created even if it shares same
  56. piece with the preceding file if the length of previous file is 0.
  57. * In BitTorrent, Open files in read-only mode for hash check. After
  58. that, re-open file in read/write mode only when the download is
  59. not finished.
  60. * Added --http-auth-challenge option. If it is set to true, aria2
  61. sends HTTP authorization header only when it is requested by the
  62. server. If false is set, then authorization header is always sent to
  63. the server. This is useful for servers that don't respond 401 code
  64. when authentication is required. There is an exception: if username
  65. and password are embedded in URI, authorization header is always
  66. sent to the server regardless of this option. The default value of
  67. this option is false.