NEWS 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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.
  10. Changes
  11. -------
  12. * Added --reuse-uri option. This option has existed quite long, but
  13. been hidden.
  14. * Fixed the bug that filename is percent encoded where it must be
  15. percent decoded in sendMdtm().
  16. * Added getServers XML-RPC method.
  17. * Added 'status' key to the response of getUri XML-RPC method.
  18. * Added changeUri XML-RPC method. This method removes/adds URIs
  19. dynamically.
  20. * Replaced null or control characters in file path with '_'. For
  21. MinGW32 build, additional characters which is not allowed in
  22. Windows kernel are also replaced. util::detectDirTraversal() now
  23. returns true if given string contains null or control characters.
  24. * Discard torrent file if path data in it contains directory
  25. traversal directives. Discard metalink:file element in Metalink3
  26. format if its name attribute contains directory traversal
  27. directives. Ignore name attribute of metalink:signature element in
  28. Metalink3 format if it contains directory traversal directives.
  29. * Added Metalink4 support. Files with same metaurl are
  30. grouped and downloaded in one RequestGroup.
  31. * Added --bt-lpd-interface option to specify the interface to use for
  32. Local Peer Discovery. LpdMessageDispatcher object now has its own
  33. socket. LpdMessageReceiver's socket is binded to multicast address
  34. to only receive multicast packets.
  35. * Added Local Peer Discovery. It is disabled by default. Use
  36. --bt-enable-lpd to enable the function.