Tatsuhiro Tsujikawa
5eb1f2c574
Merge pull request #906 from aria2/fix-compile-error
...
Fix compile error with toolchain which lacks IPV6_TCLASS
2017-05-08 23:58:38 +09:00
Tatsuhiro Tsujikawa
9ac47a62b4
Clarify --max-concurrent-downloads option
2017-05-08 22:59:29 +09:00
Tatsuhiro Tsujikawa
fe2226b988
Fix compile error with toolchain which lacks IPV6_TCLASS
2017-05-08 22:45:12 +09:00
Tatsuhiro Tsujikawa
63ad6e0072
Merge branch 'tsekityam-master'
2017-05-08 22:37:48 +09:00
Tse Kit Yam
e07356a502
Fix typo
...
Although I haven’t checked the code, I believe `unpauseAll` only works
on paused downloads.
2017-05-08 22:37:03 +09:00
Tatsuhiro Tsujikawa
3cbc83dc07
Update doc
2017-04-29 22:20:48 +09:00
Tatsuhiro Tsujikawa
a28396065e
Fix broken text formatting
2017-04-16 16:50:20 +09:00
Tatsuhiro Tsujikawa
79a20e046f
Fix typo
2017-04-15 22:19:04 +09:00
Tatsuhiro Tsujikawa
e441cf0575
Merge pull request #885 from aria2/notice-log-level-redirection-uri
...
Log directed URI in notice log level
2017-04-13 22:24:45 +09:00
Tatsuhiro Tsujikawa
c7a13f934c
Log directed URI in notice log level
2017-04-09 19:37:39 +09:00
Tatsuhiro Tsujikawa
1d77985abd
Merge pull request #879 from tsekityam/patch-1
...
Fix typo
2017-04-02 19:05:55 +09:00
Tse Kit Yam
1e8cf5151e
Fix typo
2017-04-01 23:19:57 +08:00
Tatsuhiro Tsujikawa
b51e5814f1
Merge pull request #870 from ka7/feature/spelling
...
Feature/spelling
2017-03-21 22:42:30 +09:00
klemens
aa5567d774
spelling fixes
2017-03-20 22:46:38 +01:00
klemens
ec2ce4ffe5
spelling fixes
2017-03-20 22:44:41 +01:00
Tatsuhiro Tsujikawa
f0adbde2e6
Merge pull request #868 from fornwall/android-cleanup
...
Remove unused Android parts
2017-03-19 18:02:35 +09:00
Fredrik Fornwall
68edbb358c
Remove unused Android parts
...
These parts where unused after merging https://github.com/aria2/aria2/pull/736
2017-03-18 01:01:18 +01:00
Tatsuhiro Tsujikawa
7db393ec3d
Merge branch 'save-control-file-early'
2017-03-05 19:58:02 +09:00
Tatsuhiro Tsujikawa
bfc54d0b9a
Save control file early
2017-03-02 22:54:11 +09:00
Tatsuhiro Tsujikawa
9eff8100ef
Refactor
2017-03-02 22:48:40 +09:00
Tatsuhiro Tsujikawa
924e115e3e
Merge pull request #860 from mlesniew/update_raspberry_pi_dockerfile
...
Update links in Dockerfile.raspberrypi
2017-03-02 22:31:22 +09:00
Tatsuhiro Tsujikawa
6289aafaf8
Increase backlog to 1024
2017-03-02 22:23:29 +09:00
Michał Leśniewski
0cee6f5a34
Update links in Dockerfile.raspberrypi
...
Some links used in Dockerfile.raspberrypi are not accessible anymore,
because they were pointing to old versions of some source packages and
new versions were released. This commit fixes this by changing the
links to point to the newest versions.
2017-03-02 13:29:52 +01:00
Tatsuhiro Tsujikawa
147c68f4bc
Merge pull request #857 from aria2/fix-disk-full-error
...
Propagate disk full error on pre-allocation to last error code
2017-02-26 21:31:01 +09:00
Tatsuhiro Tsujikawa
8fc0c85125
Propagate disk full error on pre-allocation to last error code
2017-02-23 21:34:58 +09:00
Tatsuhiro Tsujikawa
857d6a2a8e
Fix compiler warning with Android NDK clang
2017-01-23 00:58:44 +09:00
Tatsuhiro Tsujikawa
13b2c4a0f9
Compile using Android NDK clang
2017-01-23 00:58:16 +09:00
Tatsuhiro Tsujikawa
36902526b6
Update NEWS
2017-01-16 22:34:28 +09:00
Tatsuhiro Tsujikawa
dc84ca14e5
Update doc
2017-01-16 22:19:52 +09:00
Tatsuhiro Tsujikawa
b3ece25fde
Bump up version number to 1.31.0
2017-01-16 22:12:14 +09:00
Tatsuhiro Tsujikawa
f55fced91f
Update bash_completion
2017-01-16 22:11:12 +09:00
Tatsuhiro Tsujikawa
eecb5e055e
clang-format
2017-01-16 21:33:04 +09:00
Tatsuhiro Tsujikawa
c7551a173f
Update AUTHORS
2017-01-16 21:31:49 +09:00
Tatsuhiro Tsujikawa
7cd9285085
Update binary build dependencies
2017-01-16 21:30:20 +09:00
Tatsuhiro Tsujikawa
6625f8cadb
Merge pull request #836 from aria2/better-file-status-error-msg
...
Better error message when local file status cannot be retrieved
2017-01-16 21:07:17 +09:00
Tatsuhiro Tsujikawa
744a5a550d
Better error message when local file status cannot be retrieved
2017-01-15 16:33:58 +09:00
Tatsuhiro Tsujikawa
c1a0b33515
Add constexpr if possible
2017-01-09 17:37:40 +09:00
Tatsuhiro Tsujikawa
6abf2388cc
Merge pull request #823 from aria2/fix-getrandom-assertion-failure
...
Fix assertion failure in SimpleRandomizer::getRandomBytes
2017-01-07 16:35:46 +09:00
Tatsuhiro Tsujikawa
e2dc0902bb
Fix assertion failure in SimpleRandomizer::getRandomBytes
...
errno might not be initialized to 0, and we may get both rv == -1 and
errno != ENOSYS. This leads to assertion failure. Since
getrandom_linux always returns -1 on failure, checking errno is
useless in this function.
2017-01-06 22:22:14 +09:00
Tatsuhiro Tsujikawa
5d2742da15
Merge pull request #821 from ITriskTI/patch-1
...
Update aria2c.rst
2017-01-01 10:04:05 +09:00
ITriskTI
12798e778e
Update aria2c.rst
2016-12-31 18:50:16 +03:00
Tatsuhiro Tsujikawa
b5d64230ba
Cast to unsigned char before passing it as uint32_t
2016-12-31 14:28:11 +09:00
Tatsuhiro Tsujikawa
b9e51e9b15
Merge branch 'Jimmy-Z-master'
2016-12-31 14:17:37 +09:00
Tatsuhiro Tsujikawa
2efc5a9288
Document --content-disposition-default-utf8 opiton
2016-12-31 14:11:12 +09:00
JimmyZ
da730478af
new option content-disposition-default-utf8
2016-12-31 14:11:12 +09:00
Tatsuhiro Tsujikawa
f542f84b83
Update NEWS
2016-12-15 22:59:19 +09:00
Tatsuhiro Tsujikawa
8d41656662
Bump up version number to 1.30.0
2016-12-15 22:40:34 +09:00
Tatsuhiro Tsujikawa
f42a4362f5
Update AUTHORS
2016-12-15 22:38:31 +09:00
Tatsuhiro Tsujikawa
388ae843ca
make clang-format
2016-12-15 22:37:19 +09:00
Tatsuhiro Tsujikawa
18a51ce314
We are not bothered by NDK zlib anymore
2016-12-15 22:34:49 +09:00