NEWS 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. aria2 1.26.0
  2. ============
  3. Release Note
  4. ------------
  5. This release fixes linking bug with libaria2 enabled. It also changes
  6. how aria2 renames the download file name when the same name already
  7. exists in file system. In summary, we use numbers before extension
  8. (e.g., foo.1.txt), rather than after extension (e.g., foo.txt.1). Now
  9. --seed-time option can take floating point number to specify
  10. fractional minutes.
  11. Changes
  12. -------
  13. * aria2mon: Replace client.call with local method
  14. Patch from Florian Gamböck
  15. * Reorder a note section in aria2c.rst
  16. Patch from Artur Petrov
  17. Closes GH-722
  18. * bash_completion: Add missing options which takes one of pre-defined
  19. values
  20. * Replace "/" with "-" in magnet dn name when used as in-memory
  21. download name
  22. * Fix Dockerfile.raspberrypi to correctly decompress expat archive
  23. Patch from Char
  24. * Enable ccache in travis-ci
  25. Speeds up the build most of the time.
  26. Closes GH-710
  27. * Enable OSX/macOS build for travis
  28. Closes GH-711
  29. Closes GH-666
  30. * Better auto-renaming
  31. Up until now aria2 file auto renaming worked by just appending a new
  32. unique number to the file path, behind the file name extension, if
  33. any, changing what most other programs consider the file extension
  34. in the process. Now, aria2 will attempt to insert the number before
  35. the file extension, leaving the extension intact, so that e.g. a
  36. ".jpg" still is a ".jpg" file and opens in your configured image
  37. viewer when clicking it. If a file has no extension (incl. so
  38. called "dot files"), the number will be appended to the file name as
  39. usual.
  40. Note: This is a potentially breaking change that might break third
  41. party scripts that rely on aria2 auto file renaming producing a
  42. certain format for renamed files. Please fix your scripts
  43. accordingly.
  44. Closes GH-709
  45. * Log number of items loaded from input file
  46. * Link external libraries to libaria2 with --enable-libaria2
  47. Fixes GH-707
  48. * Allow seconds for seed-time (fractional minutes)
  49. Patch from Sébastien Cabaniols
  50. Closes GH-704