NEWS 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. aria2 1.13.0
  2. ============
  3. Release Note
  4. ------------
  5. This release fixed libgcrypt version check error. Several command line
  6. options were added. For details of each new option, read changes
  7. below. aria2 now returns error response if RPC request parameter has
  8. wrong type. For MinGW32 build, Unicode filenames support was added.
  9. From this release, aria2 uses libnettle and libgmp by default instead
  10. of libgcrypt. If you want to use libgcrypt, use configure options
  11. --without-libnettle --with-libgcrypt.
  12. Changes
  13. -------
  14. * Check libgcrypt version is greater or equal to required version.
  15. This will fixes Debian bug#642989.
  16. * Added --piece-length option. This option sets a piece length for
  17. HTTP/FTP downloads. This is the boundary when aria2 splits a
  18. file. All splits occur at multiple of this length. This option will
  19. be ignored in BitTorrent downloads. It will be also ignored if
  20. Metalink file contains piece hashes.
  21. * Throw exception if parameter has wrong type in RPC method.
  22. Formally, depending on the method implementation, this kind of
  23. error is just ignored and parameter is skipped. Now aria2 responds
  24. error for these cases. The required parameter checking is also
  25. reworked along with this change.
  26. * Cleanup log message for binding server socket.
  27. * Recognize tab as white space before option in -i list.
  28. * Added geom parameter to --stream-piece-selector option. If 'geom'
  29. is given, at the beginning aria2 selects piece which has minimum
  30. index like 'inorder', but it exponentially increasingly keeps space
  31. from previously selected piece. This will reduce the number of
  32. establishing connection and at the same time it will download the
  33. beginning part of the file first. This will be useful to view movie
  34. while downloading it.
  35. * Added completedLength response key in aria2.getFiles RPC method
  36. * Added #checksum help tag.
  37. * Added --checksum option. Added --checksum=TYPE=DIGEST option. This
  38. option sets checksum. TYPE is hash type. The supported hash type is
  39. listed in "Hash Algorithms" in "aria2c -v". DIGEST is hex digest.
  40. For example, setting sha-1 digest looks like this:
  41. sha-1=0192ba11326fe2298c8cb4de616f4d4140213838 This option applies
  42. only to HTTP(S)/FTP downloads.
  43. * Added --hash-check-only opiton. Added --hash-check-only opiton.
  44. If true is given, after hash check using --check-integrity option,
  45. abort download whether or not download is complete. The default
  46. value is false.
  47. * Added --download-result option. Added --download-result=OPT
  48. option. This option changes the way "Download Results" is
  49. formatted. If OPT is 'default', print GID, status, average download
  50. speed and path/URI. If multiple files are involved, path/URI of
  51. first requested file is printed and remaining ones are omitted. If
  52. OPT is 'full', print GID, status, average download speed,
  53. percentage of progress and path/URI. The percentage of progress and
  54. path/URI are printed for each requested file in each row.
  55. * Added --rpc-allow-origin-all option. This option adds
  56. Access-Control-Allow-Origin header field with value '*' to the RPC
  57. response.
  58. * Ignore --out option supplied in command-line if -i is used. You
  59. can still use out option in the text file specified in -i.
  60. * Disable SSLv2 by default and optimize memory usage.
  61. Patch from Cristian Rodríguez.
  62. * Added libnettle and libgmp support. libnettle and libgmp is used
  63. by default. Old implementation uses libgcrypt as default. If more
  64. and more Linux distributions offer libnettle linked GnuTLS, then
  65. this change decrease library dependency against libgcrypt and
  66. libgpg-error. The current library detection for libnettle and
  67. libgmp is very simple, just use AC_SEARCH_LIBS.
  68. util::generateRandomData() was written using SimpleRandomizer, thus
  69. no external library dependency from this function.
  70. * In MinGW32, open file with UNICODE filename and print them in ANSI.