NEWS 1.2 KB

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