• This project
    • Loading...
  • Sign in

ios / yh_sdwebimage · Commits

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • Commits 1,614
  • Network
  • Compare
  • Branches 10
  • Tags 61
  • yh_sdwebimage
22 Sep, 2016
2 commits
  • #1619: Adds unit test that touches affeted code
    3ef030e0
    by Jimmie Jensen
    2016-09-22 10:17:28 +0200  
    Browse Files
  • #1619: Adds NSError as input to resourceValuesForKeys:error: method to be able t… ...
    806bce31
    …o determine if we should skip due to an error while looking up resources
    by Jimmie Jensen
    2016-09-22 09:47:47 +0200  
    Browse Files

05 Sep, 2016
2 commits
  • Bumped version to 3.8.2
    42a5e6f6
    by Bogdan Poplauschi
    2016-09-05 20:11:18 +0300  
    Browse Files
  • Improvement for #1608 and #1623 should solve the issue for most of the cases. Ap… ...
    e7bd5ab0
    …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)
    by Bogdan Poplauschi
    2016-09-05 19:53:39 +0300  
    Browse Files

02 Sep, 2016
1 commit
  • Actually we only want the RefreshCached flag for the 1st image (the HTTP Auth one)
    dea7b459
    by Bogdan Poplauschi
    2016-09-02 20:17:53 +0300  
    Browse Files

01 Sep, 2016
2 commits
  • Updated code for #1608 #1623 - set a name for the download queue, avoid using th… ...
    20760d71
    …e `_request` ivar and made sure we strip request of mutability
    by Bogdan Poplauschi
    2016-09-01 15:05:30 +0300  
    Browse Files
  • Example updated: all images use the SDWebImageRefreshCached option
    033899d0
    by Bogdan Poplauschi
    2016-09-01 14:26:54 +0300  
    Browse Files

07 Jun, 2016
3 commits
  • Updated the changelog
    c012fc9b
    by Bogdan Poplauschi
    2016-06-07 12:00:00 +0300  
    Browse File »
  • Bumped the version
    67329ac5
    by Bogdan Poplauschi
    2016-06-07 11:57:03 +0300  
    Browse Files
  • Reverted all the changes for "Removed the URL query params from the filename (ke… ...
    de149aed
    …y)" fb0cdb6d 1bf62d47 #1584 - fixes #1433 #1553 #1583 #1585
    This is a deal breaker for people. The solution for those issues (i.e. very long urls) is to set the SDWebImageManager cacheKeyFilter block and do their own calculations there.
    by Bogdan Poplauschi
    2016-06-07 11:56:31 +0300  
    Browse Files

06 Jun, 2016
7 commits
  • Readded `shouldUseCredentialStorage` to preserve backwards compatibility
    fc0de570
    by Bogdan Poplauschi
    2016-06-06 21:24:11 +0300  
    Browse Files
  • Updated the changelog
    47305487
    by Bogdan Poplauschi
    2016-06-06 21:08:17 +0300  
    Browse Files
  • Merge pull request #1586 from oanapopescu/nsurlsession ...
    5d42a2ac
    Updated image downloader with a single session that manages all tasks
    by Bogdan Poplauschi
    2016-06-06 21:00:34 +0300  
    Browse Files
  • Keeping both owned and unowned sessions around as part of the operation. ...
    1e412927
    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.
    by Oana Popescu
    2016-06-06 20:09:43 +0300  
    Browse Files
  • Updated image downloader with a single session that manages all tasks ...
    eab42791
    - 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.
    by Oana Popescu
    2016-06-06 19:12:56 +0300  
    Browse Files
  • Fixed #1583 crash in `SDWebImageManager cacheKeyForURL:` when url is nil - replaced #1585
    1bf62d47
    by Bogdan Poplauschi
    2016-06-06 07:32:34 +0300  
    Browse Files
  • Merge pull request #1584 from minsOne/master ...
    d8dc6a25
    fixed crash on ios7 user device
    by Bogdan Poplauschi
    2016-06-06 07:25:00 +0300  
    Browse Files

05 Jun, 2016
1 commit
  • fixed crash on ios7 user device ...
    335a437b
    fixed that string property of NSURLComponents can`t use on iOS7
    by Ahn Jung Min
    2016-06-06 04:42:02 +0900  
    Browse Files

02 Jun, 2016
5 commits
  • Updated the changelog
    cb7a3db2
    by Bogdan Poplauschi
    2016-06-02 19:19:42 +0300  
    Browse Files
  • Bumped the deployment target to iOS 7 (due to NSURLSession) and also incremented… ...
    6545a3ab
    … the library version to 3.8.0
    by Bogdan Poplauschi
    2016-06-02 19:10:31 +0300  
    Browse Files
  • Merge pull request #1578 from oanapopescu/nsurlsession ...
    9137b65d
    Replace deprecated NSURLConnection with NSURLSession
    by Bogdan Poplauschi
    2016-06-02 18:59:05 +0300  
    Browse Files
  • Removed dealloc method and added comment regarding sending nil for delegateQueue
    09a9e74e
    by Oana Popescu
    2016-06-02 18:23:49 +0300  
    Browse Files
  • Replace deprecated NSURLConnection with NSURLSession. See #1291 #1318 #823 #1566 ...
    5580c782
    - 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
    by Oana Popescu
    2016-06-02 09:02:03 +0300  
    Browse Files

31 May, 2016
1 commit
  • Fixed #1573 - Update to cc510a6a - Cached file name with path extension UIWebView… ...
    af7b5879
    … issue - for iOS 7 and above, remove the query from the url (prior to iOS 7 the behavior remains the same).
    by Bogdan Poplauschi
    2016-05-31 14:51:33 +0300  
    Browse Files

30 May, 2016
1 commit
  • Replaces #1398 Allow to customise cache and image downloader instances used with… ...
    86fc47bf
    … SDWebImageManager - added a new initializer (`initWithCache:downloader:`)
    by Bogdan Poplauschi
    2016-05-30 07:31:01 +0300  
    Browse Files

29 May, 2016
4 commits
  • Fixed #1415 documentation was not updated when `removeImageForKey:` became async
    e6e5c515
    by Bogdan Poplauschi
    2016-05-29 22:32:15 +0300  
    Browse Files
  • Fixed #1553 Cached file name with path extension UIWebView issue - for iOS 7 and… ...
    cc510a6a
    … above, remove the query from the url (prior to iOS 7 the behavior remains the same).
    by Bogdan Poplauschi
    2016-05-29 16:25:31 +0300  
    Browse Files
  • Trying to get around this last build error "The certificate for this server is i… ...
    0dc2c411
    …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
    by Bogdan Poplauschi
    2016-05-29 12:49:06 +0300  
    Browse Files
  • The pod setup output is huge with CocoaPods 1.0.0 (10.000+ lines), causes Travis… ...
    f8a7b6ba
    … to "This log is too long to be displayed. Please reduce the verbosity of your build or download the raw log."
    by Bogdan Poplauschi
    2016-05-29 12:48:26 +0300  
    Browse Files

28 May, 2016
7 commits
  • Need to clean the SDWebImage scheme to allow the tests to rebuild it using their required platform.
    8e300c92
    by Bogdan Poplauschi
    2016-05-29 00:50:24 +0300  
    Browse Files
  • Another attempt at the build
    44eac986
    by Bogdan Poplauschi
    2016-05-29 00:44:02 +0300  
    Browse Files
  • This should fix the build (the tests project)
    afaf3062
    by Bogdan Poplauschi
    2016-05-29 00:00:33 +0300  
    Browse Files
  • Fixed the Tests/Podfile, the Target ios was not to be found, so took advantage o… ...
    5ac4e308
    …f this change to simplify it
    by Bogdan Poplauschi
    2016-05-28 23:00:16 +0300  
    Browse Files
  • Fixed #1444 and the master build thanks to https://github.com/kenmaz/SDWebImage/… ...
    f1a471e9
    …commit/5034c334be50765dfe4e97c48bcb74ef64175188
    by Bogdan Poplauschi
    2016-05-28 22:50:53 +0300  
    Browse Files
  • Attempt to fix the latest build (failed because of Invalid `Podfile` file: [!] T… ...
    11840d13
    …he specification of `link_with` in the Podfile is now unsupported, please use target blocks instead.)
    by Bogdan Poplauschi
    2016-05-28 22:07:18 +0300  
    Browse Files
  • Added CONTRIBUTING, ISSUE and PULL_REQUEST TEMPLATE
    1f165b48
    by Bogdan Poplauschi
    2016-05-28 21:46:40 +0300  
    Browse Files

08 May, 2016
4 commits
  • Updated the changelog
    edb4bc35
    by Bogdan Poplauschi
    2016-05-08 19:49:06 +0300  
    Browse Files
  • Bumped version to 3.7.6
    990f85bc
    by Bogdan Poplauschi
    2016-05-08 19:32:10 +0300  
    Browse Files
  • Fixed #1449: Version 3.7.5 breaks semantic versioning (removes public API). Re-a… ...
    b40124c9
    …dded `sd_setImageWithPreviousCachedImageWithURL:andPlaceholderImage:options:progress:completed:` and deprecated it. Will remove it in 4.0.0
    by Bogdan Poplauschi
    2016-05-08 19:00:39 +0300  
    Browse Files
  • Merge pull request #1453 from Mutix/master ...
    37153354
    Added API to save image NSData to disk cache.
    by Bogdan Poplauschi
    2016-05-08 18:53:26 +0300  
    Browse Files