NEWS 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. aria2 1.14.0
  2. ============
  3. Release Note
  4. ------------
  5. This release adds many available options to aria2.changeOption and
  6. aria2.changeGlobalOption RPC methods. IPv6 literal address is now
  7. supported in the proxy options. --metalink-server option is now
  8. deprecated and --split option should be used instead. In this release,
  9. --metalink-server is the alias of --split option. The format ETA in
  10. console readout is changed slightly. New option --stop-with-process is
  11. added.
  12. Changes
  13. -------
  14. * Updated Russian man page. Thanks to ITriskTI.
  15. * Ignore peer which possibly sent bad data in next few minuts. In
  16. aria2, one piece is downloaded from several peers, so when hash
  17. check failed for that piece, it cannot determine which peer(s) sent
  18. bad data. So, we ignore peer who sent last block of data in random
  19. minutes. We use randomized timeout because all peers get waken up
  20. at the almost same time.
  21. * Added suggestion for unknown/ambiguous options. The help messages
  22. shown when argument error were redesigned and less verbose now.
  23. When unknown or ambiguous option is given, show suggestions like
  24. "Did you mean...". Some constant values related to levenstein
  25. distance are borrowed from git help.c.
  26. * Added --stop-with-process=PID option. This feature stops
  27. application when process PID is not running. This is useful if
  28. aria2 process is forked from a parent process. The parent process
  29. can fork aria2 with its own pid and when parent process exits for
  30. some reason, aria2 can detect it and shutdown itself. The code
  31. which detects whether or not given process PID is running is
  32. contributed by Emmanuel Engelhart.
  33. * Support IPv6 address for FTP via HTTP tunneling.
  34. * The previous implementation could not handle the situation when
  35. user, password and proxy URI is given various order. Now we just
  36. set rules: username set in --*-proxy-user overrides username in
  37. --*-proxy option, no matter in any order username, password and
  38. proxy URI are parsed. Likewise, password set in --*--proxy-passwd
  39. overrides password in --*-proxy option.
  40. * Changed format of ETA. Now no leading 0 is used. If hour part
  41. and/or min part is non-zero, and sec part is 0, sec part is
  42. omitted, like this "1h3m".
  43. * Rewritten Metalink XML parser. Now we don't strip white spaces
  44. while parsing Metalink V3 document.
  45. * Now xml attribute and characters in RPC request is not stripped at
  46. all.
  47. * Fixed bug that some information such as port number is lost if
  48. redirect URI contains only path component.
  49. * Apply PREF_MAX_CONNECTION_PER_SERVER to BitTorrent WEB Seeding
  50. hosts.
  51. * Reuse in-flight and pooled URIs when a download is paused.
  52. * Deprecated --metalink-server option. Use --split option instead.
  53. * Made max value of --select-file to 65535
  54. * Use same domain-match algorithm for no-proxy and netrc. Now
  55. "example.org" does not domain-match ".example.org" in both
  56. functions.
  57. * For waiting or paused downloads, the options listed in Input File
  58. subsection in man page are available in aria2.changeOption RPC
  59. method, except for following options: dry-run, metalink-base-uri,
  60. parameterized-uri, pause and piece_length.
  61. * Made --download-result, --save-session, --server-stat-of and
  62. --save-cookies option available in aria2.changeGlobalOption. In
  63. addition to them, the options listed in Input File subsection in
  64. man page are also available, except for following options:
  65. checksum, index-out, out, pause and select-file.
  66. * Made --uri-selector option available in -i list.
  67. * Support IPv6 literal address in proxy option.
  68. * Support IPv6 CIDR block in --http-no-proxy option.
  69. * HttpProxyOptionHandler: Enclose hostname with square brackets if
  70. hostname is IPv6 numeric address.