NEWS 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. - 1/14/2019: version 1.0.2
  2. This is a binary compatible release.
  3. * (Windows) unicode file support in the tools (linux and mac already had
  4. support, issue #398)
  5. * lossless encoder speedups
  6. * lossy encoder speedup on ARM
  7. * lossless multi-threaded security fix (chromium:917029)
  8. - 11/2/2018: version 1.0.1
  9. This is a binary compatible release.
  10. * lossless encoder speedups
  11. * big-endian fix for alpha decoding (issue #393)
  12. * gif2webp fix for loop count=65535 transcode (issue #382)
  13. * further security related hardening in libwebp & libwebpmux
  14. (issues #383, #385, #386, #387, #388, #391)
  15. (oss-fuzz #9099, #9100, #9105, #9106, #9111, #9112, #9119, #9123, #9170,
  16. #9178, #9179, #9183, #9186, #9191, #9364, #9417, #9496, #10349,
  17. #10423, #10634, #10700, #10838, #10922, #11021, #11088, #11152)
  18. * miscellaneous bug & build fixes (issues #381, #394, #396, #397, #400)
  19. - 4/2/2018: version 1.0.0
  20. This is a binary compatible release.
  21. * lossy encoder improvements to avoid chroma shifts in various circumstances
  22. (issues #308, #340)
  23. * big-endian fixes for decode, RGBA import and WebPPictureDistortion
  24. Tool updates:
  25. gifwebp, anim_diff - default duration behavior (<= 10ms) changed to match
  26. web browsers, transcoding tools (issue #379)
  27. img2webp, webpmux - allow options to be passed in via a file (issue #355)
  28. - 11/24/2017: version 0.6.1
  29. This is a binary compatible release.
  30. * lossless performance and compression improvements + a new 'cruncher' mode
  31. (-m 6 -q 100)
  32. * ARM performance improvements with clang (15-20% w/ndk r15c, issue #339)
  33. * webp-js: emscripten/webassembly based javascript decoder
  34. * miscellaneous bug & build fixes (issue #329, #332, #343, #353, #360, #361,
  35. #363)
  36. Tool updates / additions:
  37. added webpinfo - prints file format information (issue #330)
  38. gif2webp - loop behavior modified to match Chrome M63+ (crbug.com/649264);
  39. '-loop_compatibility' can be used for the old behavior
  40. - 1/26/2017: version 0.6.0
  41. * lossless performance and compression improvements
  42. * miscellaneous performance improvements (SSE2, NEON, MSA)
  43. * webpmux gained a -duration option allowing for frame timing modification
  44. * new img2webp utility allowing a sequence of images to be converted to
  45. animated webp
  46. * API changes:
  47. - libwebp:
  48. WebPPictureSharpARGBToYUVA
  49. WebPPlaneDistortion
  50. - libwebpmux / gif2webp:
  51. WebPAnimEncoderOptions: kmax <= 0 now disables keyframes, kmax == 1
  52. forces all keyframes. See mux.h and the gif2webp
  53. manpage for details.
  54. - 12/13/2016: version 0.5.2
  55. This is a binary compatible release.
  56. This release covers CVE-2016-8888 and CVE-2016-9085.
  57. * further security related hardening in the tools; fixes to
  58. gif2webp/AnimEncoder (issues #310, #314, #316, #322), cwebp/libwebp (issue
  59. #312)
  60. * full libwebp (encoder & decoder) iOS framework; libwebpdecoder
  61. WebP.framework renamed to WebPDecoder.framework (issue #307)
  62. * CMake support for Android Studio (2.2)
  63. * miscellaneous build related fixes (issue #306, #313)
  64. * miscellaneous documentation improvements (issue #225)
  65. * minor lossy encoder fixes and improvements
  66. - 6/14/2016: version 0.5.1
  67. This is a binary compatible release.
  68. * miscellaneous bug fixes (issues #280, #289)
  69. * reverted alpha plane encoding with color cache for compatibility with
  70. libwebp 0.4.0->0.4.3 (issues #291, #298)
  71. * lossless encoding performance improvements
  72. * memory reduction in both lossless encoding and decoding
  73. * force mux output to be in the extended format (VP8X) when undefined chunks
  74. are present (issue #294)
  75. * gradle, cmake build support
  76. * workaround for compiler bug causing 64-bit decode failures on android
  77. devices using clang-3.8 in the r11c NDK
  78. * various WebPAnimEncoder improvements
  79. - 12/17/2015: version 0.5.0
  80. * miscellaneous bug & build fixes (issues #234, #258, #274, #275, #278)
  81. * encoder & decoder speed-ups on x86/ARM/MIPS for lossy & lossless
  82. - note! YUV->RGB conversion was sped-up, but the results will be slightly
  83. different from previous releases
  84. * various lossless encoder improvements
  85. * gif2webp improvements, -min_size option added
  86. * tools fully support input from stdin and output to stdout (issue #168)
  87. * New WebPAnimEncoder API for creating animations
  88. * New WebPAnimDecoder API for decoding animations
  89. * other API changes:
  90. - libwebp:
  91. WebPPictureSmartARGBToYUVA() (-pre 4 in cwebp)
  92. WebPConfig::exact (-exact in cwebp; -alpha_cleanup is now the default)
  93. WebPConfig::near_lossless (-near_lossless in cwebp)
  94. WebPFree() (free'ing webp allocated memory in other languages)
  95. WebPConfigLosslessPreset()
  96. WebPMemoryWriterClear()
  97. - libwebpdemux: removed experimental fragment related fields and functions
  98. - libwebpmux: WebPMuxSetCanvasSize()
  99. * new libwebpextras library with some uncommon import functions:
  100. WebPImportGray/WebPImportRGB565/WebPImportRGB4444
  101. - 10/15/15: version 0.4.4
  102. This is a binary compatible release.
  103. * rescaling out-of-bounds read fix (issue #254)
  104. * various build fixes and improvements (issues #253, #259, #262, #267, #268)
  105. * container documentation update
  106. * gif2webp transparency fix (issue #245)
  107. - 3/3/15: version 0.4.3
  108. This is a binary compatible release.
  109. * Android / gcc / iOS / MSVS build fixes and improvements
  110. * lossless decode fix (issue #239 -- since 0.4.0)
  111. * documentation / vwebp updates for animation
  112. * multi-threading fix (issue #234)
  113. - 10/13/14: version 0.4.2
  114. This is a binary compatible release.
  115. * Android / gcc build fixes
  116. * (Windows) fix reading from stdin and writing to stdout
  117. * gif2webp: miscellaneous fixes
  118. * fix 'alpha-leak' with lossy compression (issue #220)
  119. * the lossless bitstream spec has been amended to reflect the current code
  120. - 7/24/14: version 0.4.1
  121. This is a binary compatible release.
  122. * AArch64 (arm64) & MIPS support/optimizations
  123. * NEON assembly additions:
  124. - ~25% faster lossy decode / encode (-m 4)
  125. - ~10% faster lossless decode
  126. - ~5-10% faster lossless encode (-m 3/4)
  127. * dwebp/vwebp can read from stdin
  128. * cwebp/gif2webp can write to stdout
  129. * cwebp can read webp files; useful if storing sources as webp lossless
  130. - 12/19/13: version 0.4.0
  131. * improved gif2webp tool
  132. * numerous fixes, compression improvement and speed-up
  133. * dither option added to decoder (dwebp -dither 50 ...)
  134. * improved multi-threaded modes (-mt option)
  135. * improved filtering strength determination
  136. * New function: WebPMuxGetCanvasSize
  137. * BMP and TIFF format output added to 'dwebp'
  138. * Significant memory reduction for decoding lossy images with alpha.
  139. * Intertwined decoding of RGB and alpha for a shorter
  140. time-to-first-decoded-pixel.
  141. * WebPIterator has a new member 'has_alpha' denoting whether the frame
  142. contains transparency.
  143. * Container spec amended with new 'blending method' for animation.
  144. - 6/13/13: version 0.3.1
  145. This is a binary compatible release.
  146. * Add incremental decoding support for images containing ALPH and ICCP chunks.
  147. * Python bindings via swig for the simple encode/decode interfaces similar to
  148. Java.
  149. - 3/20/13: version 0.3.0
  150. This is a binary compatible release.
  151. * WebPINewRGB/WebPINewYUVA accept being passed a NULL output buffer
  152. and will perform auto-allocation.
  153. * default filter option is now '-strong -f 60'
  154. * encoding speed-up for lossy methods 3 to 6
  155. * alpha encoding can be done in parallel to lossy using 'cwebp -mt ...'
  156. * color profile, metadata (XMP/EXIF) and animation support finalized in the
  157. container.
  158. * various NEON assembly additions
  159. Tool updates / additions:
  160. * gif2webp added
  161. * vwebp given color profile & animation support
  162. * cwebp can preserve color profile / metadata with '-metadata'
  163. - 10/30/12: version 0.2.1
  164. * Various security related fixes
  165. * cwebp.exe: fix import errors on Windows XP
  166. * enable DLL builds for mingw targets
  167. - 8/3/12: version 0.2.0
  168. * Add support for ARGB -> YUVA conversion for lossless decoder
  169. New functions: WebPINewYUVA, WebPIDecGetYUVA
  170. * Add stats for lossless and alpha encoding
  171. * Security related hardening: allocation and size checks
  172. * Add PAM output support to dwebp
  173. - 7/19/12: version 0.1.99
  174. * This is a pre-release of 0.2.0, not an rc to allow for further
  175. incompatible changes based on user feedback.
  176. * Alpha channel encode/decode support.
  177. * Lossless encoder/decoder.
  178. * Add TIFF input support to cwebp.
  179. Incompatible changes:
  180. * The encode ABI has been modified to support alpha encoding.
  181. * Deprecated function WebPINew() has been removed.
  182. * Decode function signatures have changed to consistently use size_t over
  183. int/uint32_t.
  184. * decode_vp8.h is no longer installed system-wide.
  185. * cwebp will encode the alpha channel if present.
  186. - 9/19/11: version 0.1.3
  187. * Advanced decoding APIs.
  188. * On-the-fly cropping and rescaling of images.
  189. * SSE2 instructions for decoding performance optimizations on x86 based
  190. platforms.
  191. * Support Multi-threaded decoding.
  192. * 40% improvement in Decoding performance.
  193. * Add support for RGB565, RGBA4444 & ARGB image colorspace.
  194. * Better handling of large picture encoding.
  195. - 3/25/11: version 0.1.2
  196. * Incremental decoding: picture can be decoded byte-by-byte if needs be.
  197. * lot of bug-fixes, consolidation and stabilization
  198. - 2/23/11: initial release of version 0.1, with the new encoder
  199. - 9/30/10: initial release version with only the lightweight decoder