Releases: facebook/fresco
Releases · facebook/fresco
Version 0.10.0
- 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
- 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
- Quick re-release to sort out problems that occurred in v0.8.0 upload
- A few bug fixes
Version 0.8.0
- 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
- 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
- Fixed file-descriptors issue
- Fixed closing-streams issue
- Fixed some issues with rounding
- Other small fixes
Version 0.6.0
- 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
- Remove some time utils from fbcore
- Slight speedup in local images
- Fix some bugs
Version 0.5.2
- Assorted bug fixes
Version 0.5.1
- 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