NEWS 3.1 KB

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