| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| aria2-1.19.0-osx-darwin.dmg | 2015-06-05 | 1.7 MB | |
| aria2-1.19.0-osx-darwin.tar.bz2 | 2015-06-05 | 1.5 MB | |
| aria2-1.19.0-android-build1.zip | 2015-05-24 | 1.8 MB | |
| aria2-1.19.0-win-32bit-build1.zip | 2015-05-24 | 1.9 MB | |
| aria2-1.19.0-win-64bit-build1.zip | 2015-05-24 | 2.0 MB | |
| aria2-1.19.0.tar.bz2 | 2015-05-24 | 2.2 MB | |
| aria2-1.19.0.tar.gz | 2015-05-24 | 3.5 MB | |
| aria2-1.19.0.tar.xz | 2015-05-24 | 1.4 MB | |
| README.rst | 2015-05-24 | 2.3 kB |
|
| Totals: 9 Items | 15.9 MB | 131 | |
aria2 1.19.0
Release Note
This releases adds SFTP support, and fixes several bugs. SFTP support has been implemented using libssh2. We added several new options. --multiple-interface option is like --interface option, but can take several interfaces. They are used in round-robin manner, and it works like link aggregation. Previously, .netrc search path is fixed under $HOME directory, and cannot be changed. In this release, --netrc-path option has been added to override the search path. The runtime bug concerning getrandom has been fixed in this release. Previously if download failed because checksum error, aria2 exited with error code 1 (unknown error). Now it exits with dedicated error code 32. We fixed long outstanding bug that aria2 crashes when downloading multi-file torrent.
Changes
android: Build and link with zlib
Previously, we linked with zlib shipped with NDK, but it seems this is not part of NDK API, and thus could break our app.
Allow netrc-path to be specified in the config file
Adds --netrc-path to override default .netrc search path. Patch from Ryan Steinmetz
Exit with 32 status code if checksum verification failed
Add SFTP support using libssh2
aria2 can now download files via sftp protocol: aria2c sftp://.... --ssh-host-key-md option is added to specify expected server's fingerprint.
Added Dockerfile to cross complile aria2 for RaspberryPI (armhf)
Patch from Igor Khomyakov
multiple interface support for link aggregation
Adds --multiple-interface option. Patch from Sarim Khan
Run on-bt-download-complete command when -V reports download finished
Fixes GH-355
Use dedicated DiskWriter in MultiDiskFileAllocationIterator
We have to use dedicated DiskWriter instead of (*entryItr_)->getDiskWriter(). This is because SingleFileAllocationIterator cannot reopen file if file is closed by OpenedFileCounter. Fixes GH-350
Fix getrandom for system with libc not including errno or systems
not supporting ENOSYS in the first place. Fixes GH-347
Don't send back rpc-secret option value in aria2.getGlobalOption RPC method
Make libuv default off
See GH-241 for discussion
Fixed slow RPC response
Fxies GH-345
Fix getrandom interface detection
Fixes GH-346