NEWS 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. aria2 1.5.0
  2. ===========
  3. Release Note
  4. ------------
  5. This release adds WEB-Seeding support for multi-file torrent(in other
  6. words, integrating BitTorrent downloads with HTTP(S)/FTP). aria2 now
  7. tries all resolved addresses to connect to remote servers in
  8. HTTP(S)/FTP until it gets connected. 2 new XML-RPC methods were added:
  9. aria2.tellWaiting and aria2.getVersion. The behavior of -D option has
  10. been changed: If -D is specified, the current working directory is set
  11. to / and stdin, stdout and stderr are redirected to /dev/null.
  12. --use-head is now disabled by default since using HEAD request causes
  13. problems in some web sites. --bt-stop-timeout option was added. This
  14. function stops BitTorrent download if the download speed is 0 in
  15. consecutive given seconds.
  16. Changes
  17. -------
  18. * Fixed the bug that http-user, http-passwd, ftp-user and ftp-passwd
  19. are ignored when they are given via XML-RPC.
  20. * Added 'errorCode' to the reponse of tellStatus xml-rpc method.
  21. This key is only available for stopped/completed downloads and its
  22. value is the error code defined in EXIT STATUS in man page.
  23. * Implemented getVersion xml-rpc method. This method returns struct
  24. which has 2 key-value pairs: "version" key is associated to the
  25. version of aria2, such as "1.5.0". "enabledFeatures" key is
  26. associated to the list of enabled features, such as "Async DNS",
  27. "BitTorrent".
  28. * Removed TLS1.1 protocol support when aria2 is built with gnutls for
  29. compatibility issue.
  30. * Disabled --use-head option by default because --use-head=true
  31. causes problems on some web sites.
  32. * Print URL List in -S option for torrent.
  33. * Added --bt-stop-timeout=SEC option. This function stops BitTorrent
  34. download if the download speed is 0 in consecutive SEC seconds. By
  35. default, this function is disabled.
  36. * Throw exception if file path doesn't exist in FTP URL.
  37. * Try all available addresses returned by DNS until it gets connected
  38. in HTTP(S)/FTP download
  39. * Don't print "No files to download." message if -S is given.
  40. * Added support of WEB-Seeding for multi-file torrent.
  41. * Added tellWaiting XML-RPC method.
  42. * The default value of --dir option is the absolute path to the
  43. current directory. If getcwd() is failed, then it is ".", which is
  44. the same value with old implementation. This change is necessary
  45. because after daemon() call, the current working directory is
  46. changed to /.
  47. * Call daemon() with arguments(0,0), which means daemon() changes
  48. current working directory to / and redirects stdin, stdout and
  49. stderr to /dev/null.