Skip to content

Releases: facebook/fresco

Version 0.10.0

25 Apr 14:49
Compare
Choose a tag to compare
  • decreased library size by making animated GIF and animated WebP modules optional
  • decreased library size by optimizing native code
  • custom scale type support for Drawee
  • improved and simplified zoomable functionality: added support for tap listeners and inflation from XML
  • OkHttp 3 support
  • added ability to disable disk cache for certain requests (for security purposes)
  • several bug fixes

Breaking change!

If you are using animated images (animated GIFs or animated WebPs) you need to add the following dependencies to your Gradle file:

animated GIF support:
compile 'com.facebook.fresco:animated-gif:0.10.0'

animated WebP support:
compile 'com.facebook.fresco:animated-webp:0.10.0'

if you’re using Gingerbread you also need to add:
compile 'com.facebook.fresco:animated-base-support:0.10.0'

Drawee changes

If you've been using R.styleable.GenericDraweeView, you now have to use R.styleable.GenericDraweeHierarchy instead.

Version 0.9.0

15 Jan 13:40
Compare
Choose a tag to compare
  • reduced library size (made webp support for Jelly Bean and below optional)
  • added Stetho plugin
  • upgrade to OkHttp 2.6
  • rounding is applied to all branches of DraweeHierarchy
  • several bug fixes

Breaking change! If you're using webp images below Jelly Bean read this migration guide

Version 0.8.1

01 Nov 22:01
Compare
Choose a tag to compare
  • Quick re-release to sort out problems that occurred in v0.8.0 upload
  • A few bug fixes

Version 0.8.0

19 Oct 23:45
Compare
Choose a tag to compare
  • Allow Bitmap.Config to be set by caller
  • New BaseBooleanSubscriber class
  • New experimental code to put encoded images in ashmem (JellyBean and below)
  • New experimental code to decode WebP directly on older platforms instead of transcoding
  • New sample apps to demonstrate shared transitions and write-you-own uri
  • Added AQuery to comparison app
  • Lotsa bug fixes

Version 0.7.0

27 Aug 13:31
Compare
Choose a tag to compare
  • New simpler API to determine if an image is in cache
  • Improvements to the comparison app
  • Upgrade some deps
  • Some bug fixes

Version 0.6.1

10 Aug 14:28
Compare
Choose a tag to compare
  • Fixed file-descriptors issue
  • Fixed closing-streams issue
  • Fixed some issues with rounding
  • Other small fixes

Version 0.6.0

20 Jul 20:42
Compare
Choose a tag to compare
  • Significant performance improvements, especially for local camera images
  • Ability to cache postprocessed images
  • Map of ImageFormats to standard file extensions
  • Simpler API for clearing cache, and invalidating individual entries
  • Remove some no-longer-used classes

Version 0.5.3

28 Jun 23:32
Compare
Choose a tag to compare
  • Remove some time utils from fbcore
  • Slight speedup in local images
  • Fix some bugs

Version 0.5.2

15 Jun 18:12
Compare
Choose a tag to compare
  • Assorted bug fixes

Version 0.5.1

04 Jun 10:04
Compare
Choose a tag to compare
  • Allow RoundingParams type to change dynamically
  • Fixed BMP decoding
  • Fixed decoding of non-animated GIFs
  • Added support for 64-bit ABIs
  • Adapted resizing policy
  • Assorted other bug fixes