NEWS 2.8 KB

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