-
Change finished check from equal to equal or greater than to protect …
-
Static WebP decoding a little enhancement. Do not need create WebP it…
-
Fix SDWebImageDownloaderOperation not call done when use SDWebImageDownloaderIgnoreCachedResponse
-
Fix SDWebImage v4 can not import libwebp framework's header files.
-
Adopt the previous version behavior about SDWebImageDownloaderIgnoreC…
-
Fix FLAnimatedImageView mixed local and global import
-
…se and SDWebImageRefreshCached without hack code
-
Use CGImageSourceCreateIncremental to perform progressive decoding in…
-
Set UIButton's placeholer-image even if the url is nil
-
Performance enhancement related to single WebP and animated WebP decoding...
-
…code partial data each time from the beginning to improve performance and remove that gray background
-
1. Change the code to not decode WebP images created in SD because it has been decoded 2. Add @autoreleasepool for animated WebP decoding do-while loop to reduce memory peak
-
Fix SDWebImageDownloadOperation imageData multi-thread issue.
-
Update macOS Demo deployment target to 10.10 to support build on Xcode 9
-
Add a test for SDWebImageRefreshCached
-
Fix `Other Linker Flags` images
-
Fix clang strict prototype warning in test
-
Fix request cache policy
-
…afe issue. Also, ensure imageData in completion block is immutable to avoid accident modification from the other queue
-
Fix issue #2001, add sd_currentBackgroundImageURL and sd_backgroundIm…
-
CLANG_WARN_STRICT_PROTOTYPES: Yes please!
-
…rIgnoreCachedResponse is there, we need NSURLRequestReloadIgnoringLocalCacheData so we always reload." This reverts commit ae75b747.
-
…achedResponse is there, we need NSURLRequestReloadIgnoringLocalCacheData so we always reload.
-
…, we need to dispatch on the main queue * @param progressBlock A block called while image is downloading * @note the progress block is executed on a background queue
-
#1737 introduced an issue that is using NSURLRequestReturnCacheDataDontLoad for our cached images which makes us never download again, which is not ok when using `SDWebImageRefreshCached`. Fixed by reverting to the original implementation here: `NSURLRequestUseProtocolCachePolicy` vs `NSURLRequestReloadIgnoringLocalCacheData` (when `SDWebImageRefreshCached` is set)
-
… (on the barrierQueue)