NEWS 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. aria2 1.15.0
  2. ============
  3. Release Note
  4. ------------
  5. This release adds JSON-RPC over WebSocket. It uses the same
  6. request/response JSON objects with existing JSON-RPC over HTTP and
  7. adds event notifications from server to client. See manpage for
  8. details. TLS hostname check is rewritten based on RFC 6125 and it is
  9. used for both GNUTLS and OpenSSL builds. The
  10. --bt-remove-unselected-file option was added. This option removes the
  11. unselected files when BitTorrent download is completed.
  12. Changes
  13. -------
  14. * Use CreateProcessW instead of CreateProcessA in MinGW build. This
  15. means filename is now passed as wchar string, not UTF-8 encoded char
  16. string.
  17. * Check with pkg-config only: c-ares, openssl, sqlite3 and zlib.
  18. Removed --with-*-prefix configure option for c-ares, openssl,
  19. sqlite3, zlib and expat. Use CPPFLAGS and/or PKG_CONFIG_PATH
  20. instead.
  21. * Fixed compile error with i686-w64-mingw32 and x86_64-w64-mingw32
  22. cross compilers.
  23. * Get the home directory of the effective user ID using getpwuid() if
  24. $HOME is not defined.
  25. * Don't use locale dependent toupper and tolower.
  26. * Rewritten TLS hostname check based on RFC 6125 for both GNUTLS and
  27. OpenSSL builds.
  28. * Added --bt-remove-unselected-file option. Removes the unselected
  29. files when download is completed in BitTorrent. To select files, use
  30. --select-file option. If it is not used, all files are assumed to be
  31. selected. Please use this option with care because it will actually
  32. remove files from your disk. This option is default to false.
  33. * Fixed compile error on Open Solaris. Fixes bug#3497518
  34. * Added JSON-RPC over WebSocket.
  35. * Fixed assertion failure if Chunked encoding along with
  36. Content-Length is used.
  37. * Fixed clang and gcc-4.7 warning and errors.
  38. * Fixed the bug that aria2 cannot read line longer than 4096 bytes
  39. from the file specified by --input-file option. Fixes bug#3495336