NEWS 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. aria2.tellWaiting XML-RPC method
  9. was added to get the download entries in the waiting queue. The
  10. behavior of -D option has been changed: If -D is specified, the
  11. current working directory is set to / and stdin, stdout and stderr are
  12. redirected to /dev/null. --use-head is now disabled by default since
  13. using HEAD request causes problems in some web sites.
  14. --bt-stop-timeout option was added. This function stops BitTorrent
  15. download if the download speed is 0 and the number of seeder is 0 in
  16. consecutive given seconds.
  17. Changes
  18. -------
  19. * Disabled --use-head option by default because --use-head=true
  20. causes problems on some web sites.
  21. * Print URL List in -S option for torrent.
  22. * Added --bt-stop-timeout=SEC option. This function stops BitTorrent
  23. download if the download speed is 0 and the number of seeder is 0
  24. in consecutive SEC seconds. By default, this function is disabled.
  25. * Throw exception if file path doesn't exist in FTP URL.
  26. * Try all available addresses returned by DNS until it gets connected
  27. in HTTP(S)/FTP download
  28. * Don't print "No files to download." message if -S is given.
  29. * Added support of WEB-Seeding for multi-file torrent.
  30. * Added tellWaiting XML-RPC method.
  31. * The default value of --dir option is the absolute path to the
  32. current directory. If getcwd() is failed, then it is ".", which is
  33. the same value with old implementation. This change is necessary
  34. because after daemon() call, the current working directory is
  35. changed to /.
  36. * Call daemon() with arguments(0,0), which means daemon() changes
  37. current working directory to / and redirects stdin, stdout and
  38. stderr to /dev/null.