• 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
25 Sep, 2016
1 commit
  • Removed unneded code
    fbca6a6d
    by Bogdan Poplauschi
    2016-09-25 14:57:51 +0300  
    Browse Files

23 Sep, 2016
25 commits
  • Added SDImageCacheConfig to all targets, test images, code coverage setting, tes… ...
    cfc182f2
    …ts for SDImageCache, SDWebImageDownloader, SDWebImageDownloaderOperation, SDWebImageDecoder
    by Bogdan Poplauschi
    2016-09-24 00:14:13 +0300  
    Browse Files
  • Instead of assert, just nslog
    0612504f
    by Bogdan Poplauschi
    2016-09-24 00:07:43 +0300  
    Browse Files
  • Proper place for the pragma mark and used a function to check for the proper queue
    2fa77435
    by Bogdan Poplauschi
    2016-09-23 23:54:23 +0300  
    Browse Files
  • Moved the `diskImageExistsWithKey:completion:` to the right place in the header
    ba88022c
    by Bogdan Poplauschi
    2016-09-23 23:53:51 +0300  
    Browse Files
  • Got rid of `removeImageForKey:` and `removeImageForKey:fromDisk:` that looked sy… ...
    537b0390
    …nc but were async. Left only the 2 async ones
    by Bogdan Poplauschi
    2016-09-23 23:53:18 +0300  
    Browse Files
  • Pragma marks for code readability
    3e78e294
    by Bogdan Poplauschi
    2016-09-23 23:43:06 +0300  
    Browse Files
  • Updated `queryCacheOperationForKey:image:` comments and method still works if the doneBlock is nil
    f202b503
    by Bogdan Poplauschi
    2016-09-23 23:42:21 +0300  
    Browse Files
  • The `storeImage:` methods from `SDImageCache` were async already, but declared a… ...
    d9424345
    …s sync. Properly marked them as async + added completion. Got rid of the recalculate param. If the `NSData` is provided, use it. Otherwise, recalculate from the `UIImage`
    by Bogdan Poplauschi
    2016-09-23 21:37:38 +0300  
    Browse Files
  • Updated `storeImageDataToDisk:forKey:` asserting when called from other queue th… ...
    2eafdd6d
    …an ioQueue. Updated the header comments
    by Bogdan Poplauschi
    2016-09-23 21:33:28 +0300  
    Browse Files
  • Fixed the demo project, `clearDisk` no longer exists
    a6316d1c
    by Bogdan Poplauschi
    2016-09-23 21:15:38 +0300  
    Browse Files
  • Fixed misspell
    3fc19996
    by Bogdan Poplauschi
    2016-09-23 21:15:15 +0300  
    Browse Files
  • Another clarification: `imageFromDiskCacheForKey:` used to also check the memory… ...
    ebf40c7c
    … cache which I think is misleading. Now `imageFromDiskCacheForKey` only checks the disk cache and the new method `imageFromCacheForKey` checks both caches
    by Bogdan Poplauschi
    2016-09-23 21:14:53 +0300  
    Browse Files
  • Created `SDWebImageDownloaderOperationInterface` to describe the behavior of a d… ...
    df3b6a52
    …ownloader operation. Any custom operation must conform to this protocol.
    by Bogdan Poplauschi
    2016-09-23 21:11:34 +0300  
    Browse Files
  • Renamed `SDImageCache` `queryDiskCacheForKey:done:` to `queryCacheOperationForKey:done:`
    6202f05e
    by Bogdan Poplauschi
    2016-09-23 21:02:44 +0300  
    Browse Files
  • Removed sync method `diskImageExistsWithKey:` from `SDImageCache`
    e9fcf0ce
    by Bogdan Poplauschi
    2016-09-23 20:58:10 +0300  
    Browse Files
  • Get rid of the confusion cause by `cleanDisk` and `clearDisk`. Renamed `cleanDis… ...
    04e963b9
    …k` to `deleteOldFiles`. No longer expose the sync `clearDisk` and `deleteOldFiles`, just the async ones
    by Bogdan Poplauschi
    2016-09-23 20:52:30 +0300  
    Browse Files
  • Fixed an issue with the `SDWebImageDownloaderOperation` : `cancelInternal` was n… ...
    f4bdae68
    …ot called because of the old mechanism rellying on the `thread` property - probably because that thread did not have a runloop. Removed that and now cancelInternal is called as expected
    by Bogdan Poplauschi
    2016-09-23 20:46:30 +0300  
    Browse Files
  • Removed the synchronous methods `diskImageExistsForURL:` and `cachedImageExistsF… ...
    84be05b8
    …orURL:` from `SDWebImageManager`
    by Bogdan Poplauschi
    2016-09-23 20:42:22 +0300  
    Browse Files
  • Added missing property code comment
    712f4973
    by Bogdan Poplauschi
    2016-09-23 20:38:04 +0300  
    Browse Files
  • Will use a single definition for all async tests duration: kAsyncTestTimeout
    7d736232
    by Bogdan Poplauschi
    2016-09-23 20:37:48 +0300  
    Browse Files
  • Expecta can use the latest version, using the WebP subspec in the Tests Podfile … ...
    fbb310b4
    …so we can get all the files
    by Bogdan Poplauschi
    2016-09-23 20:37:17 +0300  
    Browse Files
  • Created a new class SDImageCacheConfig holding the configuration of the ImageCac… ...
    f1d74921
    …he. Easier to read code
    by Bogdan Poplauschi
    2016-09-23 20:35:25 +0300  
    Browse Files
  • Preparing to remove the need for the `recalculateFromImage` param for store in c… ...
    82d1f2e4
    …ache. Only if the data provided is nil and we have an image, we will recaculate. Moved the NSData calculation in the UIImage MultiFormat categ, plus instead of another variant to check for PNG, relly on `sd_imageFormatForImageData`
    by Bogdan Poplauschi
    2016-09-23 20:26:46 +0300  
    Browse Files
  • Refactored NSData ImageContentType category, instead of returning the contentTyp… ...
    f32f24f9
    …e as a string, the new added method `sd_imageFormatForImageData` will return a `SDImageFormat` enum value
    by Bogdan Poplauschi
    2016-09-23 20:20:24 +0300  
    Browse Files
  • Added PNG image to demo app
    0869c691
    by Bogdan Poplauschi
    2016-09-23 20:12:13 +0300  
    Browse Files

05 Sep, 2016
3 commits
  • Merge branch 'master' into 4.x ...
    36e5e3c1
    # Conflicts:
    #	CHANGELOG.md
    #	Examples/SDWebImage Demo/MasterViewController.m
    #	SDWebImage.podspec
    #	SDWebImage/SDWebImageDownloader.m
    #	SDWebImage/SDWebImageDownloaderOperation.m
    #	WebImage/Info.plist
    by Bogdan Poplauschi
    2016-09-05 20:27:56 +0300  
    Browse Files
  • 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

26 Aug, 2016
6 commits
  • Merge pull request #1595 from rs/all_platforms ...
    54adffa6
    watchOS and OSX support (One platform to rule them all)
    by Bogdan Poplauschi
    2016-08-26 22:41:26 +0300  
    Browse Files
  • Updated the CHANGELOG so it's easier when 4.0 is actually released
    203c3712
    by Bogdan Poplauschi
    2016-08-26 21:46:17 +0300  
    Browse Files
  • Set 4.0.0-beta as the version from the podspec and the Info.plist file
    823b6152
    by Bogdan Poplauschi
    2016-08-26 21:35:37 +0300  
    Browse Files
  • Updated the Readme with the supported platforms
    b360cbdc
    by Bogdan Poplauschi
    2016-08-26 20:07:49 +0300  
    Browse Files
  • Added the `WEBP_USE_INTRINSICS` flag per https://github.com/rs/SDWebImage/pull/1… ...
    1a2f81a5
    …595#issuecomment-225984546
    by Bogdan Poplauschi
    2016-08-26 19:52:44 +0300  
    Browse Files
  • Added logos and included in the readme
    6de3e4c3
    by Bogdan Poplauschi
    2016-08-26 12:45:33 +0300  
    Browse Files

14 Jun, 2016
2 commits
  • Fixed issue "The value of CFBundleVersion in your WatchKit app's Info.plist (1) … ...
    5851f78a
    …does not match the value in your companion app's Info.plist (1.0). There values are required to match"
    by Bogdan Poplauschi
    2016-06-14 23:10:33 +0300  
    Browse Files
  • Last commit missed to add 2 alpha_processing files.
    0bcb35d6
    by Bogdan Poplauschi
    2016-06-14 23:08:28 +0300  
    Browse Files