NEWS 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. aria2 1.1.0
  2. ===========
  3. Release Note
  4. ------------
  5. This release fixes the many bugs such as buggy HTTP pipelining
  6. implementation that leads to corrupted downloads, bad cookie handling
  7. and sending bad formed URI to the tracker. --max-overall-upload-limit
  8. option was added to controll overall(not per torrent) upload speed.
  9. From this release, aria2 validates the server certificate of HTTPS
  10. servers by default. --with-ca-bundle compile time option is added to
  11. specify the default path to the CA bundle.
  12. The most big changes in this release is that the package name is
  13. changed from "aria2c" to "aria2". This changes the installation
  14. directory of the documents and the translation files(*.mo). Now the
  15. documents are installed in $prefix/share/doc/aria2 and the each
  16. translation file is named as aria2.mo
  17. Changes
  18. -------
  19. * Print the contents of Torrent/Metalink files are printed without
  20. -T/-M options.
  21. * Updated French, Japanese, Russian and Ukrainian translations.
  22. Thanks to all translators.
  23. * Rename file by appending digits if a local file exists and its file
  24. size is larger than that of remote file with --continue option. The
  25. old implementation just throws exception in such case.
  26. * Fixed the bug that download progress summary is not printed in the
  27. interval specified by the option.
  28. * Fixed the cookie implementation based on RFC2965. Now if a value in
  29. domain field is not started with dot, then prepend dot. That means a
  30. cookie with domain=sf.net is sent to wiki.sf.net.
  31. * Fixed the bug that causes corrupted downloads if HTTP pipelining is
  32. enabled and the server doesn't support keep-alive.
  33. * Added --max-overall-upload-limit option. This option limits the
  34. overall upload speed. Stated in help message that the existing
  35. --max-upload-limit option limits the upload speed per each torrent.
  36. Man page is also updated.
  37. * Fixed the bug that bad URI is sent to the tracker when the announe
  38. URI in torrent file includes query.
  39. * Enabled --check-certificate by default. Added compile
  40. time(configure) option --with-ca-bundle to specify CA bundle. Warn
  41. if --check-certificate=true and --ca-certificate is not specified or
  42. loading CA certificate is failed.
  43. * Added "https" tag to help option category. Added https tag to
  44. --ca-certificate, --certificate, --check-certificate and --private-key
  45. option.
  46. * Changed the package name from "aria2c" to "aria2". The name of the
  47. executable is not changed. This change was done in order to fix the
  48. inconsistency of the package name and the install directory since in
  49. many distributions the binary package name is "aria2", but the old
  50. releases tried to install to "aria2c" directory such as
  51. "/usr/local/share/doc/aria2c".
  52. * Fixed typos in man page.
  53. * RFC3986 complied Percent-Encoding(urlencode). Use uppercase
  54. hexadecimal digits for encoded text instead of lowercase ones.
  55. * Fixed the bug that -pfalse and -ptrue are not recognized properly.
  56. * Fixed the bug that prevents aria2 from downloading 0-length files
  57. via HTTP/FTP.