-
Performance enhancement related to single WebP and animated WebP decoding...
-
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)
-
Fix unreachable code build warning on macOS
-
Fix unreachable code warning because of the return and break expression in #if SD_MAC
-
Move common test logic to SDTestCase
-
Use FOUNDATION_EXPORT over extern
-
Fix CFRelease on NULL if CGImageSourceRef create failed
-
Fix CGBitmapContextCreate bitmap memory leak issue
-
Fix CFRelease on NULL if CGImageSourceRef create failed, this may happen on progressive download with wrong image data
-
Pass NULL to CGBitmapContextCreate whenever the data param is not used later to reduce memory leak issue
-
#1951: Fix animated WebP decoding issue, including canvas size, the support for dispose method and the duration per frame
-
Fixed issue where animated image arrays could be populated out of order
-
support animated GIF on macOS