All Versions
169
Latest Version
Avg Release Cycle
29 days
Latest Release
145 days ago
Changelog History
Page 13
Changelog History
Page 13
-
v3.0.1 Changes
September 14, 2016โ Add
- ๐ Swift 3 compatibility. This version follows Swift 3 API design guideline as well as contains a lot of breaking changes from version 2.x. See Kingfisher 3.0 Migration Guide for more about how to migrate your project to 3.0. Kingfisher 2.6.x is still supporting both Swift 2.2 and 2.3.
- ๐ Image Processor. Now you can specify an image processor and it will be used to process images after downloaded. It is useful when you need to apply some transforming or filter to the image. You can also use the processor to support any other image format, like WebP. See Processor section in the wiki for more. The default processor should behave the same as before. #420
- Built-in processors from simple round corner and resizing to filters like tint and blur. Check Built-in processors of Kingfisher for more.
- Cache Serializer. CacheSerializer will be used to convert some data to an image object for retrieving from disk cache and vice versa for storing to disk cache.
- ๐ New indicator type. Now you should be able to use your own indicators. #430
- ImageDownloadRequestModifier. Use this protocol to modify requests being sent to your server.
๐ Fix
- Resource is now a protocol instead of a struct. Use
ImageResource
for your originalResource
type. And nowURL
conformsResource
so the APIs could be clearer. - 0๏ธโฃ Now Kingfisher cache will store re-encoded image data instead of the original data by default. This is needed due to we want to store the processed data from
ImageProcessor
. If this is not what you want, you should supply your customized instanse ofCacheSerializer
.
โ Remove
- ๐ KingfisherManager.init is removed since you should never create your own manager.
- ๐ cachedImageExistsforURL in
ImageCache
is removed since it introduced unnecessary coupling. UseisImageCached
instead. - ๐ requestModifier
is removed. Use
.requestModifierand pass a
ImageDownloadRequestModifier`. - ๐ kf_showIndicatorWhenLoading is removed since we have a better and flexible way to use indicator by
kf_indicatorType
.
-
v3.0.0 Changes
September 14, 2016โ Add
- ๐ Swift 3 compatibility. This version follows Swift 3 API design guideline as well as contains a lot of breaking changes from version 2.x. See Kingfisher 3.0 Migration Guide for more about how to migrate your project to 3.0. Kingfisher 2.6.x is still supporting both Swift 2.2 and 2.3.
- ๐ Image Processor. Now you can specify an image processor and it will be used to process images after downloaded. It is useful when you need to apply some transforming or filter to the image. You can also use the processor to support any other image format, like WebP. See Processor section in the wiki for more. The default processor should behave the same as before. #420
- Built-in processors from simple round corner and resizing to filters like tint and blur. Check Built-in processors of Kingfisher for more.
- Cache Serializer. CacheSerializer will be used to convert some data to an image object for retrieving from disk cache and vice versa for storing to disk cache.
- ๐ New indicator type. Now you should be able to use your own indicators. #430
- ImageDownloadRequestModifier. Use this protocol to modify requests being sent to your server.
๐ Fix
- Resource is now a protocol instead of a struct. Use
ImageResource
for your originalResource
type. And nowURL
conformsResource
so the APIs could be clearer. - 0๏ธโฃ Now Kingfisher cache will store re-encoded image data instead of the original data by default. This is needed due to we want to store the processed data from
ImageProcessor
. If this is not what you want, you should supply your customized instanse ofCacheSerializer
.
-
v2.6.0 Changes
September 12, 2016 -
v2.5.1 Changes
September 06, 2016 -
v2.5.0 Changes
August 29, 2016โ Add
- ๐ Support for Swift 2.3
-
v2.4.3 Changes
August 17, 2016 -
v2.4.2 Changes
July 10, 2016โ Add
- Accept
nil
as valid URL parameter for image view's extension methods.
๐ Fix
- ๐ The completion handler of image view setting method will not be called any more if
self
is released. - ๐ Improve empty task so some performance improvment could be achieved.
- โ Remove SwiftLint since it keeps adding new rules but without a back compatible support. It makes the users confusing when using a different version of SwiftLint.
- โ Removed Implicit Unwrapping of CacheType that caused crashes if the image is not cached.
- Accept
-
v2.4.1 Changes
May 10, 2016โ Add
- 0๏ธโฃ An option (
ForceTransition
) to force image setting for an image view with transition. By default the transition will only happen when downloaded. #317
- 0๏ธโฃ An option (
-
v2.4.0 Changes
May 04, 2016โ Add
- ๐ A standalone
AnimatedImageView
to reduce memory usage when parsing and displaying GIF images. See README for more about using Kingfisher for GIF images. #300
๐ Fix
- An issue which may cause iOS app crasing when switching background/foreground multiple times. #309
- ๐ Change license of String+MD5.swift to a more precise one. #302
- ๐ A standalone
-
v2.3.1 Changes
April 22, 2016