NEWS 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. aria2 1.7.0
  2. ===========
  3. Release Note
  4. ------------
  5. This release adds BitTorrent Magnet URI support. 3 options were
  6. added: the ability to bind to particular interface, disabling IPv6 and
  7. prioritizing piece in BitTorrent downloads. In configure script, if
  8. --with-PACKAGE and --enable-FEATURE are given but PACKAGE is missing
  9. in the system or FEATURE cannot be enabled in the current
  10. configuration, the script now prints error message and exits.
  11. --http-auth-scheme option was removed since it is useless. Updated
  12. Russian, Ukrainian, German and French translations.
  13. Changes
  14. -------
  15. * Updated Russian, Ukrainian, German and French translations. Thanks
  16. to all translators involved.
  17. * Use last 8 bytes of peer ID as 'key' parameter for tracker request.
  18. * Added --disable-ipv6 option to disable IPv6.
  19. * In configure script, if --with-PACKAGE and --enable-FEATURE are
  20. given and PACKAGE is missing in the system or FEATURE cannot be
  21. enabled, print error message and stop the script.
  22. * Added --interface option. This feature binds sockets to given
  23. interface. You can specify interface name, IP address and hostname.
  24. * Removed --http-auth-scheme option since it is useless.
  25. * Added --bt-request-peer-speed-limit, --bt-max-peers and
  26. --bt-prioritize-piece option to changeOption XML-RPC method.
  27. * Added option --bt-prioritize-piece. This option instruct aria2 to
  28. try to download first and last pieces of each file first. This
  29. option is useful for previewing files. The argument can contain 2
  30. keywords:head and tail. To include both keywords, they must be
  31. separated by comma. These keywords can take one parameter,
  32. SIZE. For example , if head=SIZE is specified, pieces in the range
  33. of first SIZE bytes of each file get higher priority. tail=SIZE
  34. means the range of last SIZE bytes of each file. SIZE can include K
  35. or M(1K = 1024, 1M = 1024K).
  36. * Use host and protocol in original URI to record server's speed,
  37. because URI selector selects URI based on original URI, not
  38. redirected one.
  39. * Fixed the bug which causes segmentation fault with tellWaiting
  40. XML-RPC method when BitTorrent download is waiting.
  41. * Added support of Extension for Peers to Send Metadata Files(BEP9)
  42. and BitTorrent Magnet URI. Now addUri XML-RPC method accepts
  43. BitTorrent Magnet URI. Metalink resource type 'bittorrent' also
  44. accepts BitTorrent Magnet URI.
  45. * Fixed the bug that slow server is not knocked down in favor of
  46. faster one.
  47. * Applied a patch from tizianomueller to fix sigbus errors on Linux
  48. sparc. I modified the patch to eliminate a cast to uint32_t* and
  49. include file ordering.