-
Add a test for SDWebImageRefreshCached
-
Fix `Other Linker Flags` images
-
Fix clang strict prototype warning in test
-
Fix request cache policy
-
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
-
…download in the queue which makes the tests fail
-
# Conflicts: # SDWebImage/SDWebImageCompat.m
-
Only decode the first frame on macOS Fix CGBitmapContextCreate failed issue Duration set to 100ms if it’s lower or equal than 10ms for compatibility Fix unused variable warning for macOS
-
use NSImage built-in method to maintain GIF on macOS update README
-
Small change - coding style
-
Small change
-
Add ability to change NSURLSessionConfiguration used by SDWebImageDownloader