NEWS 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. aria2 1.2.0
  2. ===========
  3. Release Note
  4. ------------
  5. This release adds the AdaptiveURISelector from Mandriva developers and
  6. changes the default value of --proxy-method option from 'tunnel' to
  7. 'get'. The several BitTorrent options were added: limiting the number
  8. of peers, choosing port randomly from specified range, a toggle to
  9. seed after successful hash check and specifying IP address to report
  10. to a tracker. Hash checking is now done sequentially rather than
  11. simultaneously. HTTP Authorization was also refined so that now
  12. authorization header is sent to the server only when it is
  13. requested(there are some exceptions, see Changes below). aria2 now
  14. returns exit code depending on the last error. All exit codes are
  15. documented in man page. This release also adds experimental built-in
  16. HTTP server which provides the current download progress in plain
  17. html.
  18. Changes
  19. -------
  20. * Changed the default value of --proxy-method option from 'tunnel' to
  21. 'get'. Use 'tunnel' for HTTPS regardless of --proxy-method option.
  22. * Added --bt-external-ip option. You can specify the external IP
  23. address to report to a BitTorrent tracker. Although this function is
  24. named 'external', it can accept any kind of IP addresses.
  25. * Applied AdaptiveURISelector-timeout patch from Pascal Rigaux at
  26. Mandriva. I modified the patch: make RequestGroup have the timeout
  27. value and AdaptiveURISelector directly modifies that value.
  28. * Use LongestSequencePieceSelector for HTTP/FTP/BitTorrent integrated
  29. downloads. This PieceSelector subclass finds the longest continuous
  30. sequence in the available missing pieces and selects the last index
  31. of such sequence. This makes HTTP/FTP connections less interrupted
  32. by the pieces obtained by BitTorrent peers.
  33. * Fixed the bug that the average speed is wrong in http/ftp/BitTorrent
  34. integrated download. Only the download bytes in BitTorrent were
  35. considered.
  36. * Choose port for BitTorrent/DHT randomly from the specified range.
  37. REQUEST#2543518
  38. * Send HTTP Authorization header only if it is requested by the
  39. server(response 401). There are some exceptions. The authorization
  40. header for proxy is always sent if it is available without request
  41. by the server. If username/password is specified in the URI, it is
  42. immediately sent to the server without request by the server.
  43. Implements REQUEST#2540844.
  44. * Remove leading "--" from help keyword and a substring after "=" from
  45. help keyword, so that one can query options by '-h--max-' or
  46. '-hmax-peers=10'.
  47. * Added experimental built-in HTTP server. Currently, when a client
  48. accesses to the server, it responds with the current download
  49. progress. By default, it is disabled. To enable the server, give
  50. --enable-http-server option. To change the default port number for
  51. the server to listen to, use --http-server-listen-port option. The
  52. response HTML is very simple and refreshes it self each 1 second.
  53. Because of this refresh, you see flicker in normal web browser such
  54. as Firefox. I recommend to use console-based browser such as
  55. elinks, w3m. To connect to the server, run 'elinks
  56. http://localhost:6800/' while running aria2. Please replace port
  57. number '6800'(which is default) with your preference.
  58. * Made (piece) hash check sequential for each RequestGroup because
  59. simultaneous hash check is slower than sequential execution.
  60. * Added --bt-max-peers option to specify the maximum number of peers
  61. per torrent. 0 means unlimited number of peers. REQUEST#2451382
  62. * Added --bt-hash-check-seed option. If true is given to this option,
  63. after hash check using --check-integrity option and file is
  64. complete, continue to seed file. If you want to check file and
  65. download it only when it is damaged or incomplete, set this option
  66. to false. This option has effect only on BitTorrent download. The
  67. default value is true(This is the same behavior with the previous
  68. release).
  69. * Made the max value of split option unlimited. REQUEST#2496748
  70. * Added --event-poll option to select the method for polling events.
  71. The available methods are "select" and "epoll". "epoll" is
  72. available on Linux only. The earlier release has the compile
  73. option to choose from these methods.
  74. * Included RecoverableException.h from main.cc. BUG#2498160
  75. * Applied exit-status patch from Pascal Rigaux at Mandriva. aria2 now
  76. returns last error encountered in the HTTP/FTP downloads as a exit
  77. status value. If all downloads finished successfully, aria2 returns
  78. 0. The error code is defined in src/DownloadResult.h. The error
  79. occurred in the download currently in progress is not reported as a
  80. last error. If no error has encountered but there are in progress
  81. or waiting downloads, aria2 returns 7.
  82. * Applied AdaptiveURISelector patch from Aurelien Lefebvre. This
  83. patch adds AdaptiveURISelector, which selects one of the bests
  84. mirrors for first and reserved connections. For supplementary
  85. ones, it returns mirrors which has not been tested yet, and if
  86. each of them already tested, returns mirrors which has to be
  87. tested again. Otherwise, it doesn't return anymore mirrors.
  88. * Fixed unit test error in HTTPResponseTest. PATCH#2485509