-
…o determine if we should skip due to an error while looking up resources
-
…parently there is a race condition on NSURLCache and we avoid making those checks unless necesarry (basically we will query the NSURLCache only when `SDWebImageRefreshCached` is used and the image cannot be cached by the system when it's too big or behind authentication)
-
…e `_request` ivar and made sure we strip request of mutability
-
Updated image downloader with a single session that manages all tasks
-
We need different ownership for both because we need to invalidate the owned session upon completion. The unowned session is wet to avoid cyclical references.
-
- the URL session is created and maintained y the image downloader - the session will be injected to each operation and it will use it to create the data task - when delegate callbacks are called, the downloader will call the same delegate methods on the appropriate operation - if no session is injected upon creating a operation, it will create its own session for backwards compatibility.
-
fixed crash on ios7 user device
-
fixed that string property of NSURLComponents can`t use on iOS7
-
… the library version to 3.8.0
-
Replace deprecated NSURLConnection with NSURLSession
-
- one session per operation to preserve the ordering and priority functionalities - removed all the runloop code that was only used to keep the operation running. I am relying on non-setting the isFinished property to keep the operation running - todo: check deallocation, test background tasks
-
… issue - for iOS 7 and above, remove the query from the url (prior to iOS 7 the behavior remains the same).
-
… SDWebImageManager - added a new initializer (`initWithCache:downloader:`)
-
… above, remove the query from the url (prior to iOS 7 the behavior remains the same).
-
…nvalid. You might be connecting to a server that is pretending to be “www.google.gr†which could put your confidential information at risk." by using a different image
-
… to "This log is too long to be displayed. Please reduce the verbosity of your build or download the raw log."
-
…f this change to simplify it
-
…commit/5034c334be50765dfe4e97c48bcb74ef64175188
-
…he specification of `link_with` in the Podfile is now unsupported, please use target blocks instead.)
-
…dded `sd_setImageWithPreviousCachedImageWithURL:andPlaceholderImage:options:progress:completed:` and deprecated it. Will remove it in 4.0.0
-
Added API to save image NSData to disk cache.