aria2/NEWS

44 lines
1.2 KiB
Plaintext
Raw Normal View History

2016-10-16 08:27:36 +00:00
aria2 1.28.0
2016-09-17 00:09:13 +00:00
============
Release Note
------------
2016-10-16 08:27:36 +00:00
This release fixes the bug that file name is not logged with
--conditional-get option is used. The new option
--keep-unfinished-download-result was added to keep incomplete
downloads in memory regardless of --max-download-result so that we can
save those downloads with --save-session option. This option is
enabled by default.
2016-09-17 00:09:13 +00:00
2016-10-16 08:27:36 +00:00
This release
2015-12-05 13:24:49 +00:00
Changes
-------
2016-10-16 08:27:36 +00:00
* Restore LTLIBINTL in src/Makefile.am
2015-12-05 13:24:49 +00:00
2016-10-16 08:27:36 +00:00
Patch from Juan Francisco Cantero Hurtado
2015-12-05 13:24:49 +00:00
2016-10-16 08:27:36 +00:00
* Add --keep-unfinished-download-result option
2015-12-05 13:24:49 +00:00
2016-10-16 08:27:36 +00:00
This option keeps unfinished download results even if doing so
exceeds --max-download-result. This is useful if all unfinished
downloads must be saved in session file (see --save-session option).
Please keep in mind that there is no upper bound to the number of
unfinished download result to keep. This option is enabled by
default.
2015-12-05 13:24:49 +00:00
2016-10-16 08:27:36 +00:00
* Fix -Wexpansion-to-defined warning with clang-3.9
2016-05-15 10:26:44 +00:00
2016-10-16 08:27:36 +00:00
The error message was:
2016-05-15 10:26:44 +00:00
2016-10-16 08:27:36 +00:00
warning: macro expansion producing 'defined' has undefined behavior
[-Wexpansion-to-defined]
2016-05-15 10:26:44 +00:00
2016-10-16 08:27:36 +00:00
http://lists.llvm.org/pipermail/cfe-commits/Week-of-Mon-20160118/147239.html
2016-05-15 10:26:44 +00:00
2016-10-16 08:27:36 +00:00
* Fix bug that file name is not logged with --conditional-get
2016-05-15 10:26:44 +00:00
2016-10-16 08:27:36 +00:00
GH-742