NEWS 3.8 KB

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