• 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
29 Nov, 2012
4 commits
  • Add some sanity check on the URL parameter
    ddd03f7d
    by Olivier Poitrey
    2012-11-29 18:52:28 +0100  
    Browse Files
  • Remove no longer necessary cleanMemory on app going to background as NSCache does this by itself
    4284b579
    by Olivier Poitrey
    2012-11-29 18:52:28 +0100  
    Browse File »
  • Try to fix a random crash on dealloc
    d487bccf
    by Olivier Poitrey
    2012-11-29 18:52:28 +0100  
    Browse Files
  • Do not capture self in operations in categories
    82faab82
    by Olivier Poitrey
    2012-11-29 18:52:28 +0100  
    Browse Files

20 Nov, 2012
2 commits
  • Fix SDWebImagePrefetcher maxConcurrentDownloads property
    10c44577
    by Olivier Poitrey
    2012-11-20 14:49:27 +0100  
    Browse Files
  • Fix bug in SDWebImagePrefetcher where startPrefetchingAtIndex would never be cal… ...
    44c62247
    …led due to is always being 0
    by Alex Barlow
    2012-11-20 14:45:34 +0100  
    Browse File »

19 Nov, 2012
11 commits
  • Do not init an activity indictor if image isn't downloading in demo app (good practice)
    1ec36c7c
    by Olivier Poitrey
    2012-11-19 18:30:31 +0100  
    Browse Files
  • Try to fix decode image error message
    a7af2a19
    by Olivier Poitrey
    2012-11-19 17:59:26 +0100  
    Browse Files
  • Fix demo app regarding last changes
    6e990590
    by Olivier Poitrey
    2012-11-19 16:58:45 +0100  
    Browse Files
  • Making sure cache queries always callback in the main thread. ...
    9546c84f
    - queryDiskCacheForKey:done: now always invokes the callback in the main thread
    - removed the now redundant main thread dispatch in the image manager class
    by Matej Bukovinski
    2012-11-19 16:17:27 +0100  
    Browse Files
  • Resolved some downloader threading issues. ...
    713a8338
    - callbacks could be released between the callback existence if check and invocation
    - could be nilled out in a background thread call to done, while being prepared for invocation on the main thread
    - now making sure done is always performed on the main thread
    - also added some related threading fixes and optimizations
    by Matej Bukovinski
    2012-11-19 16:17:20 +0100  
    Browse Files
  • Calling completion callbacks in the main thread. ...
    331053d2
    - made sure this is true even if the downloader is used on its own
    - SDWebImageManager doesn't need to perform a dispatch to the main thread any longer
    by Matej Bukovinski
    2012-11-19 16:06:05 +0100  
    Browse Files
  • Always making callbacks using the main thread. ...
    9a3aff48
    Even if using the downloader directly without SDWebImageManager.
    by Matej Bukovinski
    2012-11-19 16:03:39 +0100  
    Browse File »
  • Implemented progress callbacks and related fixes.
    ab185ea6
    by Matej Bukovinski
    2012-11-19 15:58:50 +0100  
    Browse Files
  • Passing the exact cache type in the completion block. ...
    2e8c0255
    - none, disk and memory
    - can still be used as a bool (if true there was a cache hit)
    by Matej Bukovinski
    2012-11-19 15:55:09 +0100  
    Browse Files
  • Disk cache now uses the raw image data returned from the server. ...
    5c94f17a
    This preserves the image quality and retains some image attributes, such as the alpha channel (for non-jpeg images).
    by Matej Bukovinski
    2012-11-19 15:50:30 +0100  
    Browse Files
  • Improved background image decoding performance. ...
    d30c2ae2
    Tests on large images indicate an up to 4x improvement with regard to the time spent in decodedImageWithImage:.
    by Matej Bukovinski
    2012-11-19 15:50:22 +0100  
    Browse Files

13 Nov, 2012
2 commits
  • Fix a race condition (fix #220)
    022aa214
    by Olivier Poitrey
    2012-11-14 00:59:40 +0100  
    Browse Files
  • Add activity indicator demo
    0920e7a0
    by Olivier Poitrey
    2012-11-13 18:09:39 +0100  
    Browse Files

11 Nov, 2012
1 commit
  • Fix CGBitmapContextCreate errors (fix #204)
    0c1dd3c8
    by Olivier Poitrey
    2012-11-12 00:05:52 +0100  
    Browse Files

09 Nov, 2012
3 commits
  • Merge pull request #219 from SRandazzo/patch-1 ...
    152c75f4
    Fix documentation directive
    by Olivier Poitrey
    2012-11-09 06:25:59 -0800  
    Browse Files
  • Fix documentation directive
    bd72fe10
    by Salvatore Randazzo
    2012-11-09 09:05:49 -0500  
    Browse Files
  • Copy all stored blocks
    7b947163
    by Olivier Poitrey
    2012-11-09 11:05:18 +0100  
    Browse Files

08 Nov, 2012
1 commit
  • Set max concurrent to 2 by default
    8f50bf63
    by Olivier Poitrey
    2012-11-08 17:58:22 +0100  
    Browse Files

07 Nov, 2012
2 commits
  • Fix lazy copy/pasted typo
    3109110d
    by Olivier Poitrey
    2012-11-07 17:15:11 +0100  
    Browse Files
  • Add some doc
    2eee0093
    by Olivier Poitrey
    2012-11-07 02:04:55 +0100  
    Browse Files

06 Nov, 2012
14 commits
  • Add details on `finished` parameter
    e343bdfb
    by Olivier Poitrey
    2012-11-06 18:32:15 +0100  
    Browse Files
  • Inline conditions are baaad
    95be2aad
    by Olivier Poitrey
    2012-11-06 18:28:14 +0100  
    Browse File »
  • Do not call completed block on categories for intermediate progressive images
    b29bb2e2
    by Olivier Poitrey
    2012-11-06 18:24:57 +0100  
    Browse Files
  • Do not break category API (cf previous commit)
    e5b0d22e
    by Olivier Poitrey
    2012-11-06 18:22:18 +0100  
    Browse File »
  • Fix progressive mode
    2904559f
    by Olivier Poitrey
    2012-11-06 18:14:22 +0100  
    Browse Files
  • Use the correct setter sementics for dispatch (fix 213)
    1f0a8f4b
    by Olivier Poitrey
    2012-11-06 17:18:51 +0100  
    Browse Files
  • Fix cancel not cancelling connection
    541f3a12
    by Olivier Poitrey
    2012-11-06 14:04:12 +0100  
    Browse Files
  • Fix crash under iOS 6 when dispatch_release is called (see #213)
    cceb5635
    by Olivier Poitrey
    2012-11-06 13:15:44 +0100  
    Browse Files
  • Serialize all background operations
    651d8ff5
    by Olivier Poitrey
    2012-11-06 11:30:23 +0100  
    Browse Files
  • Fix disk image cache read not setting memory cache + ensure decodedImageWithImage never fail
    326890b4
    by Olivier Poitrey
    2012-11-06 10:14:21 +0100  
    Browse Files
  • Ensure every data manipulation performed in NSURLConnection delegates are handle… ...
    b5bb74bf
    …d in the global background queue
    by Olivier Poitrey
    2012-11-06 10:03:59 +0100  
    Browse Files
  • Fix double call to NSURLConnection start + wrong condition for low priority (fix #212)
    bf1b946b
    by Olivier Poitrey
    2012-11-06 09:19:50 +0100  
    Browse Files
  • Ensure we're not decoding the image in the main thread
    ed690465
    by Olivier Poitrey
    2012-11-06 03:31:32 +0100  
    Browse Files
  • Use dispatch_barrier to handle NSMutableDictionary thread unsafety instead of ma… ...
    570965f6
    …in thread dispatching
    by Olivier Poitrey
    2012-11-06 03:31:03 +0100  
    Browse Files