NEWS 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. aria2 1.12.0
  2. ============
  3. Release Note
  4. ------------
  5. This release adds --pause option which makes download paused state
  6. immediately when added. If --save-session is used, aria2 will save
  7. paused download with --pause option. aria2.getGlobalStat RPC method
  8. was added. It returns global statistics such as overall download
  9. speed. This release also fixes the bug that RPC request fails if it
  10. is compressed. aria2 now won't save removed download in --save-session
  11. text file. --file-allocation=falloc now works in MinGW32 build. This
  12. only works with NTFS. Russian translation of man page and HTML manual
  13. was added. We added more command line options in this release. See
  14. Changes for details.
  15. Changes
  16. -------
  17. * Use ServerStat to find faster server.
  18. * Added Russian translation of man page and HTML manual contributed
  19. by ITriskTI.
  20. * Added aria2.getGlobalStat RPC method. It returns overall
  21. download/upload speed and the number of active/stopped/waiting
  22. downloads.
  23. * Added --pause option. This option pauses download after
  24. added. This option is effective only when --enable-rpc=true is
  25. given. When --save-session option is used and there are paused
  26. downloads, they are saved with --pause=true so that it will become
  27. paused state when the session is recovered.
  28. * Abort aria2 if it could not setup any RPC server.
  29. * Added --truncate-console-readout option. This option truncates
  30. console readout to fit in a single line. This is default. Give
  31. false value to this option to tell aria2 not to truncate console
  32. readout.
  33. * Cache and reuse RpcMethod objects.
  34. * Allowed missing params in system.multicall RPC method.
  35. * Added --stream-piece-selector option. This option specifies piece
  36. selection algorithm used in HTTP/FTP download. Piece means fixed
  37. length segment which is downloaded in parallel in segmented
  38. download. If 'default' is given, aria2 selects piece so that it
  39. reduces the number of establishing connection. This is reasonable
  40. default behaviour because establishing connection is an expensive
  41. operation. If 'inorder' is given, aria2 selects piece which has
  42. minimum index. Index=0 means first of the file. This will be useful
  43. to view movie while downloading it. --enable-http-pipelining option
  44. may be useful to reduce reconnection overhead. Please note that
  45. aria2 honors --min-split-size option, so it will be necessary to
  46. specify a reasonable value to --min-split-size option.
  47. * Removed unnecessary template parameter from std::make_pair call.
  48. The patch was contributed from Dan Fandrich.
  49. * Implemented fast file allocation in MinGW32 build. We use
  50. SetFilePointerEx and SetEndOfFile to allocate extents. This only
  51. works with NTFS. To enable this feature, --file-allocation=falloc
  52. must be given.
  53. * Only percent-encode non-printable ASCII chars(0x00-0x1f), non-ASCII
  54. chars(>0x7f), ' ', '"', '<' and '>' for URIs supplied by user and
  55. remote server(usually Location header field).
  56. * Don't throw exception if Z_BUF_ERROR is encountered in GZipEncoder.
  57. This fixed the bug that compressed RPC request failed.
  58. * Don't save removed download in --save-session text file. Now stat
  59. column of removed downloads in Download Results is 'RM' instead of
  60. INPR.