NEWS 2.4 KB

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