NEWS 5.0 KB

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