diff --git a/ChangeLog b/ChangeLog index 4b6a3305..92cd1722 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2010-07-19 Tatsuhiro Tsujikawa + + Reverted default value of -j from 2 to 5. + * doc/aria2c.1.txt + * src/OptionHandlerFactory.cc + 2010-07-19 Tatsuhiro Tsujikawa Metadata download may take very long time. If URIs are diff --git a/doc/aria2c.1 b/doc/aria2c.1 index 0bb5a127..6dd12208 100644 --- a/doc/aria2c.1 +++ b/doc/aria2c.1 @@ -2,12 +2,12 @@ .\" Title: aria2c .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.75.2 -.\" Date: 07/17/2010 +.\" Date: 07/19/2010 .\" Manual: Aria2 Manual .\" Source: Aria2 1.10.0 .\" Language: English .\" -.TH "ARIA2C" "1" "07/17/2010" "Aria2 1\&.10\&.0" "Aria2 Manual" +.TH "ARIA2C" "1" "07/19/2010" "Aria2 1\&.10\&.0" "Aria2 Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -70,7 +70,7 @@ Set maximum number of parallel downloads for every static (HTTP/FTP) URI, torren and \fB\-C\fR option\&. Default: -\fI2\fR +\fI5\fR .RE .PP \fB\-V\fR, \fB\-\-check\-integrity\fR[=\fItrue\fR|\fIfalse\fR] diff --git a/doc/aria2c.1.html b/doc/aria2c.1.html index 079b718b..2069f0e3 100644 --- a/doc/aria2c.1.html +++ b/doc/aria2c.1.html @@ -636,7 +636,7 @@ downloading a file like BitTorrent.

Set maximum number of parallel downloads for every static (HTTP/FTP) URI, torrent and metalink. See also -s and -C option. - Default: 2 + Default: 5

@@ -4242,7 +4242,7 @@ files in the program, then also delete it here.


diff --git a/doc/aria2c.1.txt b/doc/aria2c.1.txt index 142523a8..ff2bb2d8 100644 --- a/doc/aria2c.1.txt +++ b/doc/aria2c.1.txt @@ -48,7 +48,7 @@ Basic Options *-j*, *--max-concurrent-downloads*=N:: Set maximum number of parallel downloads for every static (HTTP/FTP) URI, torrent and metalink. See also *-s* and *-C* option. - Default: '2' + Default: '5' *-V*, *--check-integrity*[='true'|'false']:: Check file integrity by validating piece hashes. diff --git a/src/OptionHandlerFactory.cc b/src/OptionHandlerFactory.cc index 22da4b6b..d7c228d6 100644 --- a/src/OptionHandlerFactory.cc +++ b/src/OptionHandlerFactory.cc @@ -328,7 +328,7 @@ OptionHandlers OptionHandlerFactory::createOptionHandlers() SharedHandle op(new NumberOptionHandler (PREF_MAX_CONCURRENT_DOWNLOADS, TEXT_MAX_CONCURRENT_DOWNLOADS, - "2", + "5", 1, -1, 'j')); op->addTag(TAG_BASIC);