NEWS 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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 install directory
  14. of documents and translation files(*.mo). This change is done in order
  15. to fix the inconsistency of the package name and the install directory
  16. since in many distributions the binary package name is "aria2", but
  17. the old releases tried to install to "aria2c" directory such as
  18. "/usr/local/share/doc/aria2c".
  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.
  50. * Fixed typos in man page.
  51. * RFC3986 complied Percent-Encoding(urlencode). Use uppercase
  52. hexadecimal digits for encoded text instead of lowercase ones.
  53. * Fixed the bug that -pfalse and -ptrue are not recognized properly.
  54. * Fixed the bug that prevents aria2 from downloading 0-length files
  55. via HTTP/FTP.