Ecosyste.ms: OpenCollective

An open API service for software projects hosted on Open Collective.

github.com/SDWebImage/SDWebImage

Asynchronous image downloader with cache support as a UIImageView category
https://github.com/SDWebImage/SDWebImage

Add Dependency Badge

934c9cc96ddc910cd9e52d851380ccb0fe25bef4 authored over 10 years ago
Fixed other misspells from appledoc (additions to #829)

7815923c4859dd6234522c308e78543c3fc120bf authored over 10 years ago
Merge pull request #829 from davemess/master

Fix documentation spelling

101ee70d944e7d237f5b7fbd2f2d23073cd9a437 authored over 10 years ago
Merge branch 'branch-misspell'

3bb13ef34a6735ba547e8db664c6baaf41025736 authored over 10 years ago
Fixed documentation spelling.

b9d9456e21a903b9005acbc688706e3f63a78e13 authored over 10 years ago
Bumped podspec version

959e8db914bf821ad02f48be954998042cdc2aa8 authored over 10 years ago
Temporary fix for #809, until we can figure out the cause of the crash

e95224bf5f54dd27a8bbcfdb464ee0001255dda8 authored over 10 years ago
Merge pull request #827 from BB9z/fix/pargma-mark

Missing mark.

f96302b42746490589e4c2cef4ea74669d41572c authored over 10 years ago
Missing mark.

f6d7d60b984668f31848bac62bd75ed72167f89c authored over 10 years ago
Merge pull request #795 from xlchen/master

fix duplicate symbols when using with webp via pods

222e6bca0db8ade21fa0f41ad017a16aa8ff2f9e authored over 10 years ago
Fixed SDWebImageCombinedOperation cancel crash (#798 #809)

28109c4c706fae230f35115cb8d5a26775a0eeed authored over 10 years ago
Modified the cost calculuations to appropriately compute the 'scale' of an image

7d9337406760603ddee47d5515e1e4835618b6b2 authored over 10 years ago
Added test for the UIImage+MultiFormat crash

c8df858f7516f5a43b917e6344c8fc4b5bf5300c authored over 10 years ago
Merge pull request #819 from n13/master

guarding against image source == NULL

681a7c4222bc816a15f955377dbfe5c492d365cc authored over 10 years ago
guarding against image source == NULL

9faee5356cbc615c75d6e57af570bc4be6fda03d authored over 10 years ago
Updated all block params and properties, using defined blocks that have var names (for proper autocomplete). Created a SDWebImageNoParamsBlock to distinguish easier from other no params blocks. Fixes #810

b88a552fbaa5cbdb907de6f75959ea5df0e035e0 authored over 10 years ago
Update to #732 to fix misspell (completion instead of completition)

cd4b925448c828be7492e132e4b3690301fd30b7 authored over 10 years ago
Updated podspec version to 3.7.0

db252d36547232f0604bcb063bb6da95fca7b65a authored over 10 years ago
Replace #699 Fixed race condition in SDWebImageManager if one operation is cancelled, the completion block must not be called, otherwise it might race with a newer completion for the same object

Conflicts:
SDWebImage/SDWebImageManager.m

f080e38fb8e77027617d854a02c0e9df487fdabd authored over 10 years ago
#625 In order to fix the deadlock, reviewed the `[SDImageCache diskImageExistsWithKey:]` 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:`...

6e4fbafa554244c2561cf2cb07c5bda1d4e39210 authored over 10 years ago
No need for explicit ivar and getters, as long as we have the @synthesize in place

0b47342b2f9f5d7eaabf7a6874feb32604dd0f91 authored over 10 years ago
Merge pull request #783 from bpoplauschi/race_condition

Replace #621Fixed race condition between operation cancelation and loading finish

39db37808233dcdcd59a2ec63004a97015e9305b authored over 10 years ago
Merge pull request #794 from vjyanand/master

Update MKAnnotationView+WebCache.m

894a1b18108deb90d3479d163e61ef8621e87e01 authored over 10 years ago
Update MKAnnotationView+WebCache.m

Replace deprecated method call

99590ed6ec45835411ab1a9515d6091067c8a27d authored over 10 years ago
Updated README.md with badges

2e708d35188b2d90a8cddac4d131094df3bfbd9d authored over 10 years ago
Modify image data back when the image is too large and it has been scaled down

1fdaa4e7f8553c37131758b93bf878bb58b803ad authored over 10 years ago
Implement a complete down sizing algorithm to avoid memory warnings

Code copy from the Apple Sample code "Large Image Downsizing" https://developer.apple.com/Librar...

dc8da77aab126913345845ad6525c7e4a99a8b3d authored over 10 years ago
Fixed misspell

30e034d60d764dd39c21b66f60bd5894d5a0373b authored over 10 years ago
Replace #621Fixed race condition between operation cancelation and loading finish

72a4e7b8301e05e01a54434b40255162a34116eb authored over 10 years ago
Added option to use the cached image instead of the placeholder for UIImageView. Replaces #541. Fixes #599

30f672661cdef884b0f2dc5c141b0ba97a9ff0ea authored over 10 years ago
Fixed #775, made sure all the category methods that are public have the sd_ prefix (deprecated the old ones)

-there were a few exceptions where I just renamed the methods since they were added in this method

a6f11b3ad77a54853b5198dcd3523b2153396883 authored over 10 years ago
Update for #771 - instead of removing the old methods, deprecated them so we are backwards compatible.

23874cdca4f1a250699e2f7609ab145b421ef861 authored over 10 years ago
Added comments and coding style to previous pull request #771

6d01e80409b88babdfba344fe342de5e113dbeae authored over 10 years ago
Merge pull request #771 from Whirlwind/new_cancel_logic

Refactor the cancel logic

9b18145e56ef1aa63d4183701990e7a86737a476 authored over 10 years ago
Merge pull request #780 from rokgregoric/master

Do not load placeholder image if SDWebImageDelayPlaceholder option specified.

3a7adbbacfb9ff827b4155d00ea4ae4fcec01ed6 authored over 10 years ago
Do not load placeholder image if SDWebImageDelayPlaceholder option specified.

8d668b412180287332325bd5c6d3e743dc0e5e07 authored over 10 years ago
Implemented NTLM auth support. Replaced deprecated auth challenge methods from `NSURLConnectionDelegate`. Replaces #711.

- added `username` and `password` properties on `SDWebImageDownloader`
- added `shouldUseCredenti...

50c4d1d2eb11e86f69a72021098e9738f008c009 authored over 10 years ago
Merge branch 'unit_tests'

Unit testing setup + created workspace
- created a SDWebImage.xcworkspace
- includes the existin...

c7330db3a6e54a95ca2f2c8319aabb882c99ff19 authored over 10 years ago
Reverted demo project referencing source files directly. Re-added SDWebImage project as subproject

e5faad0026ae56489c40def064530c19f7ae5f66 authored over 10 years ago
Added error test

e0b3de435715cca3e79c85a40f2d3b737118b307 authored over 10 years ago
Added SDWebImage Tests project. It uses CocoaPods (Expecta + XCTestAsync). Added some demo tests

c1fae30d635998408ec083dba8a435ee2e96d926 authored over 10 years ago
Created a SDWebImage workspace with the 2 existing projects, fixed the demo project so it directly references the source files. Shared a demo project scheme

60b043755f3e1ab4b5261d5e1ec38b0b17d6f1ca authored over 10 years ago
Prepared gitignore for CocoaPods and workspaces

7855f891859446e2548249a0c6ea0c25c1092b9c authored over 10 years ago
Fixed warnings from demo project (started using the new methods, the ones with the sd_ prefix).

fe4b3a088ac20506a70c65604958eee51c6847d2 authored over 10 years ago
Merge branch 'master' into new_cancel_logic

Conflicts:
SDWebImage/MKAnnotationView+WebCache.m
SDWebImage/UIButton+WebCache.m
SDWebImage/U...

5615cf12de45fd3b7428e53fef841083f92ef966 authored over 10 years ago
Returning error in setImage completedBlock if the url was nil. Added `dispatch_main_async_safe` macro. Fixes #505

af3e4f87e4a26606e55ec605c19958e17edc0d65 authored over 10 years ago
Fixed issue #529 - if the `cacheKeyFilter` was set, this was ignored when computing the `scaledImageForKey`. For most of the developers that did not set `cacheKeyFilter`, the code will work exactly the same

eb91fdd3b82bfce586c7d439224576dcc93e0a1c authored over 10 years ago
Merge pull request #770 from bpoplauschi/completion_with_url

Pass imageURL in completedBlock

a8a69ab9b64c4370b8d07eef54f8dbf2bbc5c15d authored over 10 years ago
Added proper handling for SDWebImageDownloaderLowPriority (aka NSOperationQueuePriorityLow). Fixes #713 #745

136daba9df8ad46fb5bccb5dd8954e2fd2dc0fbe authored over 10 years ago
Updated some older code to match the coding style

e116aa5ce03b9aee2033cec9264e5eb8702af8f8 authored over 10 years ago
As discussed with @rs, prefixed all the new methods to sd_set*

ea663b96028ba9e2ebd47a359962d62b7585cc21 authored over 10 years ago
Refactor the cancel logic

4c18545dbcb3af2d55d06a624dd7a7406d019b37 authored over 10 years ago
Pass image URL in completion blocks - step 6:

- deprecated block type `SDWebImageCompletedBlock `, replaced with `SDWebImageCompletedBlock ` th...

03a751430de30829964846742a17cb6e2d0c1963 authored over 10 years ago
Pass image URL in completion blocks - step 5:

- deprecated all UIImageView(WebCache) `setImage*` methods. Replaced with `loadImage*` methods th...

81b5e72a9cf872c71e8d9c516bd956bda33c5713 authored over 10 years ago
Fixed misspell (downloand -> download)

21b230f28f07206dfe8e40b1e0e817c9d09813dc authored over 10 years ago
Pass image URL in completion blocks - step 4:

- deprecated all UIImageView(HighlightedWebCache) `setImage*` methods. Replaced with `loadImage*`...

76b552e21e5f7c7bceee46ab336cb9c6ee57f3c7 authored over 10 years ago
Updated UIButton category documentation (forth param for the completion block) + alignaments

c38409b813f9199b7065d38353c5570e96ad182c authored over 10 years ago
Documentation alignaments

673fca91131fd525c8c73c12f109d566bd5749e3 authored over 10 years ago
Updated MKAnnotation view category documentation (forth param for the completion block) + alignaments

939f68d27e4966f92bec6bffac33ce9d5d7eb832 authored over 10 years ago
Pass image URL in completion blocks - step 3:

- deprecated all UIButton(WebCache) `setImage*` methods. Replaced with `loadImage*` methods that ...

7108b4f404331566ed2056ab4baa30961d3be201 authored over 10 years ago
Pass image URL in completion blocks - step 2:

- created block type `SDWebImageCompletionBlock` that contains NSURL* param
- deprecated all MKAn...

654a9c98ea027a9f477598f943fbe37e3c31b4f6 authored over 10 years ago
Pass image URL in completion blocks - step 1:

- deprecated block type `SDWebImageCompletedWithFinishedBlock`, replaced with `SDWebImageCompleti...

233ef65f989185e10c33a79f425a38f905427414 authored over 10 years ago
Missing new line

99b7a090f8782e62a235dbbfd510a9bcbe867892 authored over 10 years ago
Added doc description for the NSData category

a8f5627052e70052a839c819fef6339a3784e1f5 authored over 10 years ago
Reordered categories in project file

dfceb49d2ba85c49d89686ab0f5457acc57ac6db authored over 10 years ago
Fixed a warning in the demo project

e4b9ef512b6de452604484e4eeccbe0aab7db5ef authored over 10 years ago
Merge pull request #764 from n13/master

support for image orientation

455188355f92b9d229d093669c3effa318cc877f authored over 10 years ago
Merge branch 'master' of https://github.com/gsempe/SDWebImage

Conflicts:
SDWebImage/SDWebImageDecoder.m

c70183f347f00749742ef52a82032392e6d83c24 authored over 10 years ago
Add option to scale down large images on iOS

Option is SDWebImageScaleDownLargeImage

f0732d704cb315cc1a3e208cf5e71df3697e9251 authored over 10 years ago
Add option to scale down large images on iOS

Option is SDWebImageScaleDownLargeImage

df0cce01a8f45687ebb77966a66e22c7c4af9118 authored over 10 years ago
Merge pull request #751 from robertmryan/master

Avoid premature completion of prefetcher if request fails

9dcd68d5eeb83410dec93cde43e525b900c8332e authored over 10 years ago
Return nil from SDScaledImageForKey if the input image is nil. Replaces #750. Fixes #365

e4104942ee13e2ddc0a98fad79636d9061fc5e6e authored over 10 years ago
Merge pull request #766 from Whirlwind/origin_master

should not add url to failedURLs when timeout, cancel and so on. #707

f6fdaeb6ae7b115bbc4b1b392305edf6d7f02edf authored over 10 years ago
should not add url to failedURLs when timeout, cancel and so on. #707

364f5c4d7a8e8289058dafe3b9e6fe9f7cee5566 authored over 10 years ago
Merge pull request #765 from Whirlwind/fix_highlight_error

fix UIImageView+HighlightedWebCache call error method

b81b7f9b4af39c9b3e6533487d54e518ec7e2b6a authored over 10 years ago
Exposing the SDWebImageManager from the SDWebImagePrefetcher class. Fixes #394

6c409cd8a00fce0e4d10b75f3098a70320850aee authored over 10 years ago
support for image orientation

c76aba6c00077fa6edca7f79477dde38dc736381 authored over 10 years ago
Merge pull request #683 from brynbodayle/master

Fixed issue where cancelled operations aren't removed from runningOperations.

2973aedd09703721e12e24152027647d684eed27 authored over 10 years ago
SDWebImageManager uses the shared instance of SDWebImageDownloader. This was requested by several developers for easier setup of their downloads. Replaces #486

0772019e4d933998216d0aa5bed1c01824677205 authored over 10 years ago
Updated README.md

22782052a1e38403ea47c57e32688e0ae457006e authored over 10 years ago
Merge pull request #376 from ivanoblomov/master

Added alternate compiler flag for frameworks that extend optional libraries, like Parse and RestKit

6759e5982e60ea1cacfb62c84da5771a955fd16d authored over 10 years ago
Merge pull request #763 from dchohfi/master

#761 fixing potential bug when sending a nil url for UIButton+WebCache

d6a7e1a8c3e6e36637cf88c1ec02ea15798f08a1 authored over 10 years ago
#761 fixing potential bug when sending a nil url for UIButton+WebCache

f5d0ddc2706f86561e726610823533de0a6ca45d authored over 10 years ago
Merge pull request #687 from rokemoon/master

Create NSOperation when start operation.

689586f73a052b7bf2ac593816e692ac52bc5028 authored over 10 years ago
Exposed cache paths - fixes #339

e6c0f56d1f001253fa70e10c226b7effb07e6bc6 authored over 10 years ago
Merge pull request #644 from kencoken/master

Added method to SDWebImageManager to check if an image exists in either ...

a0bc09df7d303e78cbbcc4a455b50174bd0aa19a authored over 10 years ago
Exposed SDWebImageManager cacheKeyForURL

5fd21e5ce1a53cc59d013772eaed5753e6a27f05 authored over 10 years ago
Since we use tag 3.6, the podspec file must match that. Fixes #757

5b1451e11cd38373d63a65579e7e13a5ad29f08f authored over 10 years ago
Merge pull request #714 from derpoliuk/master

Saves image to cache without downloading it.

b29850b61bc249e2e00439f53fb9ccf675e65b6f authored over 10 years ago
Merge pull request #560 from klaaspieter/imageURL-property

Keep a reference to the image URL

7abff886ae9590e7cc1e3517c8be5fa532a5c4f7 authored over 10 years ago
Scratch that, this won't work on UIButton

67ed774c0cdbbfda6f64e70112b27e1bcd435a01 authored over 10 years ago
Conform to coding style

1ac6b92d9d68a560f80e3797e04edab1024caf08 authored over 10 years ago
Add imageURL property to remaining categories

825207d1d099d08d0353c53d63adb8a280335c0e authored over 10 years ago
Store image URLs by state in the UIButton category

b9389350cb6cc21e54b00ec73c38ae3c58b3c90c authored over 10 years ago
Add documentation to imageURL property

77be243598990976a4b78f5e9549bd9c29bf61f2 authored over 10 years ago
Keep a reference to the image URL

074ce1f4cf4e5ad552fd62fcf958d60f15391515 authored over 10 years ago
Merge pull request #701 from billburgess/delayplaceholder

Delay the loading of the placeholder image until after load

f5bd783b5ed0c9cb1d782ac89a72f910de6a9a5f authored over 10 years ago
Documented SDWebImageDownloaderOperation initWithRequest:options:progress:completed:cancelled: method. Fixes #526

3284e157ffe961eabc747f5b891e20ad22568b04 authored over 10 years ago
Added SDWebImageCompat.m to SDWebImage+MKAnnotation target

fe48ee54f39d98c2cba41d6d0ca8c4fe48b93279 authored over 10 years ago
Fixed #384 (documentation wrognly stated a return type was NSOperation)

5b59677437ee31e5db2804aed1d7db1567a6caf4 authored over 10 years ago