-
minor spelling (forth->fourth)
-
Updated key filter sample code
-
Adding a flag for Cocoa Pods users
-
Using the Parse framework and SDWebImage frameworks installed via Cocoa Pods gives the same error as described in the Alternatively section of the Add Linker Flag section in this Readme. I found a solution here : http://www.deanmao.com/2012/12/31/linker-error-using-cocoapods/
-
More explicit error message in case of nil completedBlock
-
NSParameterAssert doesn't provide enough information for understanding the API misuse. Pointing the API user to SDWebImagePrefetcher makes more sense, as a nil completedBlock most likely signifies the intention of prefetching the image.
-
Fix misnamed parameters in comment documentation
-
fix cancelAll crash (Issue #809)
-
Flag to transform animated images
-
Using a new SDWebImageOptions flag: SDWebImageTransformAnimatedImage
-
Add Reference & Dependency Badges
-
Fix documentation spelling
-
Missing mark.
-
fix duplicate symbols when using with webp via pods
-
guarding against image source == NULL
-
…s (for proper autocomplete). Created a SDWebImageNoParamsBlock to distinguish easier from other no params blocks. Fixes #810
-
…lled, the completion block must not be called, otherwise it might race with a newer completion for the same object Conflicts: SDWebImage/SDWebImageManager.m
-
…thKey:]` method. Based on the Apple doc for NSFileManager, using the defaultManager without the dispatch on the ioQueue to avoid the deadlocks. This instance is thread safe. Also created an async variant of this method `[SDImageCache diskImageExistsWithKey:completion:]` For consistency, added async methods in `SDWebImageManager` `cachedImageExistsForURL:completion:` and `diskImageExistsForURL:completion:`
-
Replace #621Fixed race condition between operation cancelation and loading finish