2010-07-19 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>

Reverted default value of -j from 2 to 5.
	* doc/aria2c.1.txt
	* src/OptionHandlerFactory.cc
pull/1/head
Tatsuhiro Tsujikawa 2010-07-18 15:16:31 +00:00
parent 21887ddb7c
commit 5e532638c7
5 changed files with 13 additions and 7 deletions

View File

@ -1,3 +1,9 @@
2010-07-19 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Reverted default value of -j from 2 to 5.
* doc/aria2c.1.txt
* src/OptionHandlerFactory.cc
2010-07-19 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Metadata download may take very long time. If URIs are

View File

@ -2,12 +2,12 @@
.\" Title: aria2c
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
.\" 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]

View File

@ -636,7 +636,7 @@ downloading a file like BitTorrent.</p></div>
<p>
Set maximum number of parallel downloads for every static (HTTP/FTP) URI,
torrent and metalink. See also <strong>-s</strong> and <strong>-C</strong> option.
Default: <em>2</em>
Default: <em>5</em>
</p>
</dd>
<dt class="hdlist1">
@ -4242,7 +4242,7 @@ files in the program, then also delete it here.</p></div>
<div id="footnotes"><hr /></div>
<div id="footer">
<div id="footer-text">
Last updated 2010-07-17 12:31:21 JST
Last updated 2010-07-19 00:15:05 JST
</div>
</div>
</body>

View File

@ -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.

View File

@ -328,7 +328,7 @@ OptionHandlers OptionHandlerFactory::createOptionHandlers()
SharedHandle<OptionHandler> op(new NumberOptionHandler
(PREF_MAX_CONCURRENT_DOWNLOADS,
TEXT_MAX_CONCURRENT_DOWNLOADS,
"2",
"5",
1, -1,
'j'));
op->addTag(TAG_BASIC);