From 747be459e91f2abe1fde41621cd87d1dfb6e2b96 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Tue, 19 Oct 2010 14:34:14 +0000 Subject: [PATCH] Updated for 1.10.5 release. --- NEWS | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/NEWS b/NEWS index 79234db7..d50f6b01 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,33 @@ +aria2 1.10.5 +============ + +Release Note +------------ + +This release fixes the bug that file allocation is enabled in HTTP +even if --file-allocation=none is specified. + +Please note that since 1.10.0 release, aria2 uses 1 connection per +host by default and has 20MiB segment size restriction. So whatever +value you specify using -s option, it uses 1 connection per host. To +make it behave like 1.9.x, use -x16 -k1M (see +--max-connection-per-server and --min-split-size option in man +page). If you specify multiple hosts, aria2 will use all of them and +open multiple connections. + +Changes +------- + + * Don't reuse socket which is readable because we assume that if + socket is readable it means peer shutdowns connection and the + socket will receive EOF. Added default timeout value to + DownloadEngine::poolSocket(). + + * Fixed the bug that file allocation is enabled in HTTP even if + --file-allocation=none is specified. + + + aria2 1.10.4 ============