NEWS 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. aria2 1.4.0
  2. ===========
  3. Release Note
  4. ------------
  5. This release adds XML-RPC interface and the ability to run command
  6. when download started/stopped and the ability to save cookies. The
  7. current XML-RPC API allows users to add http(s)/ftp/torrent/Metalink
  8. download and change options dynamically. The APIs such as reporting
  9. download progress, file paths, URIs and peer information are also
  10. available. For complete API specification, see XML-RPC INTERFACE
  11. section in man page and
  12. http://apps.sourceforge.net/trac/aria2/wiki/XmlrpcInterface. The
  13. console readout was slightly updated and now includes the number of
  14. seeders the client has connected to. Slovak translation was
  15. added. Ukrainian and Brazilian Portuguese translation were updated.
  16. Changes
  17. -------
  18. * Added Slovak translation. Updated Ukrainian and Brazilian Portuguese
  19. translation. Thanks to all translators.
  20. * Use name.utf-8 and path.utf-8 key in higher priority than name and
  21. path key respectively when persing .torrent file.
  22. * Added --xml-rpc-max-request-size option to limit the size of XML-RPC
  23. request.
  24. * Since upcoming libgnutls 2.8 doesn't have libgnutls-config, Check
  25. presence of libgnutls using pkg-config first. If it fails, fall back
  26. to old macro libgnutls.m4.
  27. * Added --save-cookies option.
  28. * Added the ability to execute command when download starts and
  29. stops. You can also specify command for particular cases such as
  30. complete/error download. Added --on-download-start,
  31. --on-download-stop, --on-download-complete and --on-download-error
  32. option.
  33. * Abbreviated KiB/s to KiBs and its precision decreased to 1 to save
  34. space in console readout. Also they are now shown in MiB/s if speed
  35. > 1024KiB/s.
  36. * Added SEED to console output, which represents the number of seeders
  37. currently the client is connecting to.
  38. * Added source filename(__FILE__) and line number(__LINE__) to
  39. exception message.
  40. * Fixed the bug that POU peers are never choked in seeding.
  41. * DownloadResult now has the list of FileEntry. The download summary
  42. displays the path of first selected file and the number of remaining
  43. files for multi-file torrent.
  44. * Added BASIC authentication for XML-RPC. Added --xml-rpc-user and
  45. --xml-rpc-passwd option.
  46. * Added XML-RPC interface. See complete API specification at
  47. http://apps.sourceforge.net/trac/aria2/wiki/XmlrpcInterface
  48. * Removed --enable-http-server and --http-server-listen-port options.
  49. Added --enable-xml-rpc and --xml-rpc-listen-port instead. The
  50. original feature for --enable-http-server that reports download
  51. progress in HTML was officially removed. Persist XML-RPC connection
  52. if client supports keep-alive.
  53. * Added more options that can be specified in -i list and xml-rpc
  54. add* command. See Input File in aria2c man page.