NEWS 3.1 KB

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