NEWS 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. aria2 1.9.0
  2. ===========
  3. Release Note
  4. ------------
  5. This release adds Metalink4 support and BitTorrent Local Peer
  6. Discovery. aria2.changeUri XML-RPC method was added. It enables you
  7. to add/remove URIs to existing downloads dynamically. We refactored
  8. the code based on profiler results, so aria2 now runs more efficiently
  9. than ever. Russian and Simplified Chinese translation were updated.
  10. Changes
  11. -------
  12. * Updated Russian and Simplified Chinese translation.
  13. * Added --reuse-uri option. This option has existed quite long, but
  14. been hidden.
  15. * Fixed the bug that filename is percent encoded where it must be
  16. percent decoded in sendMdtm().
  17. * Added getServers XML-RPC method.
  18. * Added 'status' key to the response of getUri XML-RPC method.
  19. * Added changeUri XML-RPC method. This method removes/adds URIs
  20. dynamically.
  21. * Replaced null or control characters in file path with '_'. For
  22. MinGW32 build, additional characters which is not allowed in
  23. Windows kernel are also replaced. util::detectDirTraversal() now
  24. returns true if given string contains null or control characters.
  25. * Discard torrent file if path data in it contains directory
  26. traversal directives. Discard metalink:file element in Metalink3
  27. format if its name attribute contains directory traversal
  28. directives. Ignore name attribute of metalink:signature element in
  29. Metalink3 format if it contains directory traversal directives.
  30. * Added Metalink4 support. Files with same metaurl are
  31. grouped and downloaded in one RequestGroup.
  32. * Added --bt-lpd-interface option to specify the interface to use for
  33. Local Peer Discovery. LpdMessageDispatcher object now has its own
  34. socket. LpdMessageReceiver's socket is binded to multicast address
  35. to only receive multicast packets.
  36. * Added Local Peer Discovery. It is disabled by default. Use
  37. --bt-enable-lpd to enable the function.