Releases: onevcat/Kingfisher
Releases · onevcat/Kingfisher
1.6.0 - Transition
Add
- Add transition option. You can now use some view transition (like fade in) easier.
Fix
- Image data presenting when storing in disk.
1.5.0 - Swift 2.0
Add
- Support for Swift 2.0.
Fix
- Remove the disk retrieve task canceling temporarily since there is an issue in Xcode 7 beta.
- Remove support for watchOS since it now requires a separated framework. It will be added later as a standalone library instead a fat one.
1.4.5 - Key decoupling
Fix
- Added resource APIs so you can specify a cacheKey for an image. The default implementation will use the URL string as key.
1.4.4 - Bug fix release
Fix
- Explicitly type casting in ImageCache. #86
1.4.2 - Scaling
Add
- Support for store and decode with scale parameter.
Fix
- A retain cycle which prevents image retrieving task releasing.
1.4.0 - Hello, Apple Watch
Add
- Apple Watch support and category on
WKInterfaceImage
.
1.3.0 - 304? What is 304?
Add
- ImageDownloaderDelegate for getting information from response.
- A cacheType key in completion handler to let you know which does the image come from.
- A notification when disk images are cleaned due to image expired or size exceeded.
Fix
- Changed
ForceRefresh
behavior to respect server response when got a 304. - Documentation and test coverage.
1.2.0 - More, I need more!
Add
- Multiple cache/downloader system. You can know specify the cache/downloader you need to use for each image request. It will be useful if you need different cache or download policy for different images.
- Changed
Options
toOptionsInfo
for flexible options passing.
Fix
- An issue which preventing image downloading when modifying the url of request.
Deprecate
- All extension methods with
KingfisherOptions
are deprecated now. UseKingfisherOptionsInfo
instead.
1.1.3 - Internal is Important
Fix
- Update the naming convention used in internal queues, for easier debug purpose.
- Fix some tests.
1.1.2 - Who cares disk size
Add
- API for calculation total disk cache size.
- API for modifying request before sending it.
- Handle challenge when accessing a server trust site.
Fix
- Fix grammar in README.
- Fix demo project to make it simpler.