NEWS 3.4 KB

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