NEWS 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. aria2 1.18.1
  2. ============
  3. Release Note
  4. ------------
  5. This release fixes the percent-encoding bug which affects file name
  6. encodings. It adds PKCS12 support in certificate import. It also adds
  7. experimental internal implementation of message digest functions, ARC4
  8. cipher and bignum. It means that no external libraries are required to
  9. build BitTorrent support, but this feature is still marked as
  10. experimental. This release also fixes the android build with NDK r9.
  11. Changes
  12. -------
  13. * LibsslTLSContext: Remove weak cipher suite
  14. * AppleTLS: Enable --certificate
  15. * util::percentEncodeMini: Fix regression bug removed unsignedness
  16. srange-based for around std::string is convenient but several
  17. functions depend unsigned char for correctness and readability.
  18. * Log exception; throw error if loading private key and/or certificate
  19. failed
  20. * Provide internal ARC4 implementation
  21. Now you can build bittorrent support without without external
  22. libraries, meaning you can skip libnettle, libgmp, libgcrypt, GnuTLS
  23. and OpenSSL on OSX (for now).
  24. * Internal implementation of DHKeyExchange
  25. Reusing a bignum (well, unsigned very-long) implementation I had
  26. lying around for years and just cleaned up a bit and brought to
  27. C++11 land.
  28. It might not be the most performant implementation, but it shoud be
  29. fast enough for our purposes and will go a long way of removing
  30. gcrypt, nettle, gmp, openssl dependencies when using AppleTLS and
  31. WinTLS (upcoming).
  32. * PKCS12 support in --certificate and --rpc-certificate options.
  33. * Add --disable-ssl configure option
  34. * Add internal md5 and sha1 message digests
  35. * Fix AppleMessageDigestImpl use with large data
  36. * Set old cookie's creation-time to new cookie on replacement
  37. As described in http://tools.ietf.org/html/rfc6265#section-5.3
  38. * Fix link error with Android NDK r9
  39. Since Android ndk r9, __set_errno is deprecated. It is now defined
  40. as inline function in errno.h. The syscall assembly calls
  41. __set_errno, but since libc.so does not export it, the link
  42. fails. To workaround this, replace all occurrences of __set_errno
  43. with a2_set_errno and define it as normal C function.
  44. aria2 1.18.0
  45. ============
  46. Release Note
  47. ------------
  48. This release changes the default disk cache size to 16 MiB. To change
  49. the default size, --with-disk-cache configure option was added. Now
  50. used URIs are also saved by --save-session option. The control file is
  51. now always saved if --force-save is given. The ctrl-c handling on
  52. Mingw build was improved. The internal intl library is no longer
  53. supplied. From this release, C++11 compiler is required to build aria2
  54. executable. For gcc, at least 4.6.3 is required.
  55. Changes
  56. -------
  57. * Use AM subdir-objects
  58. Doing so in AM_INIT_AUTOMAKE seems to be the most compatible way of
  59. doing so.
  60. Closes GH-120
  61. * AM_SILENT_RULES([yes]) with backwards-compatiblity
  62. Supported since automake-1.11. There is no point in having the very
  63. verbose compile stuff running about, which cannot even silenced
  64. properly with `make -s` by default. Otherwise, `make V=1` or
  65. `--disable-silent-rules` are your friends
  66. * Fix automake-1.14 am_aux_dir
  67. AC_USE_SYSTEM_EXTENSIONS will cause AC_PROG_CC, which is overridden
  68. by automake-1.14, which will then init (part) of automake, in
  69. particular am_aux_dir expansion, which in turn relies on ac_aux-dir,
  70. which is not initialized at this point, and thus: certain doom (or
  71. fun, depending on your POV and mood :p)
  72. Hence call AC_USE_SYSTEM_EXTENSIONS only after
  73. AM_INIT_AUTOMAKE. This, of course, caused a lot of related macro
  74. shuffling.
  75. Tested against automake-1.10 (OSX Lion/XCode version) and
  76. automake-1.14 (homebrew version)
  77. * Require external gettext for --enable-nls
  78. And stop using the internal flavor with ./intl
  79. * Make AX_CXX_COMPILE_STDCXX_11 test for -stdlib=libc++ via std::shared_ptr
  80. The clang shipped with OSX XCode and clangs not build enabling
  81. libcpp, will default to the libstdc++ headers and lib installed on
  82. the system. In the OSX case, that libstdc++ is the one bundles with
  83. gcc-4.2, which is far too old to provide all required C++11 types,
  84. such as std::shared_ptr. Hence, the C++11 check should try to
  85. compile a program with a C++11 type and try -stdlib=libc++ if the
  86. default lib fails to compile said program.
  87. * Make the configure check for C++11 compiler mandatory
  88. Remove stray "dnl", so that mandatory actually works with (my)
  89. autoreconf.
  90. * Always build doc/manual-src
  91. Should sphinx-build be not available AND the man file not be prsent,
  92. then just "touch" it into existence (and warn about that)
  93. * Win: Use SetConsoleCtrlHandler for SIGINT/SIGTERM
  94. * Implement a simple resource lock (threading)
  95. In this initial implementation Locks are no-ops on platforms other
  96. than Windows.
  97. * Check for sphinx-build during configure
  98. * Add --with-disk-cache configure option
  99. Enables packagers more fine grained control over the default value
  100. without having to mess with config files.
  101. See GH-115
  102. * Change defaults: Enable 16M disk cache by default.
  103. * Always save control file if --force-save is given
  104. * Set log level DEBUG for unittests
  105. * Check that C++ compiler supports override keyword
  106. If the compiler supports override, define CXX11_OVERRIDE as
  107. override, otherwise define it as empty. Use CXX11_OVERRIDE instead
  108. of override.
  109. * AppleTLS: Fix MessageDigestImpl
  110. * AppleTLS: Fix session CFRelease stuff
  111. * Use AX_CXX_COMPILE_STDCXX_11 macro to detect C++0x/C++11 support in
  112. compiler
  113. * Require -std=c++11 and use std::shared_ptr instead of SharedHandle
  114. * Join URI on redirect
  115. * Send HAVE message to the peer which the piece is downloaded from
  116. Historically, aria2 did not send HAVE message to the peer which the
  117. piece is coming from, thinking it is obvious that the peer knows we
  118. have the piece. But it is not obvious if one piece is download from
  119. more than 1 peers (e.g., end game mode). So it is better to send
  120. HAVE to all peers connected.
  121. * Improvements to --follow-torrent=false documentation.
  122. Patch from gt
  123. * SessionSerializer: Truly unique URIs
  124. Before, only spent uris where sanitized not to be contained within
  125. remaining uris. Change this so that each uri in the
  126. union(remaining,spent) get saved once at most. The order of the
  127. uris will won't be changed, with remaining uris going first followed
  128. by spent uris.
  129. Also avoid copying the uri std::strings around during dupe checking,
  130. usually resulting in better performance regarding CPU and space.
  131. * Make getOption RPC method return option for stopped downloads
  132. * SessionSerializer: Save spent URIs as well as remaining ones