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

Update the podspec for xcconfig

1b7b377c60ba67dc72df457a1267bd33f31af03d authored over 5 years ago
Update the xcconfig of UIKit for macOS config

e7edf7bc9df07f7cf483b64d850de569b43270c2 authored over 5 years ago
Bumped version to 5.1.0

0a3cd255a655b73fb3b3437acf2ab506b5c0c9c6 authored over 5 years ago
update CHANGELOG

a09dd8aa74de7f98f3c18863d77b667b18343864 authored over 5 years ago
Merge pull request #2692 from dreampiggy/bugfix_user_cancel_guarantee_callback

Ensure we always callback user's completion block even when cancelled with `SDWebImageErrorCance...

c372e345f6e77e6a6fa2f5213ed0dfe48667305a authored over 5 years ago
Fix the test case because of cache key

caae8f171f0455517d23824745d90fae8d98f200 authored over 5 years ago
Add more tests to ensure the callback been called, even we cancel the operation, impact the view category and prefetcher

b444652412a9fccf153f34bd2ba3411f88699dcb authored over 5 years ago
Merge pull request #2802 from RomanPodymov/master

Add missing nullable and nonnull attributes

54b6d9d3f87fd2f1a897375d86700408f6c041e0 authored over 5 years ago
Merge branch 'master' of https://github.com/SDWebImage/SDWebImage into bugfix_user_cancel_guarantee_callback

4e51f1deacc1de9c9f8763b221242dae076d9c78 authored over 5 years ago
Merge pull request #2801 from dreampiggy/feature_ensure_image_class_match

Add a new option `SDWebImageMatchAnimatedImageClass`, to ensure we always match the custom image...

f5980e5fed2660c2b4bb1490174c724596b30d89 authored over 5 years ago
Update the comments

00ed3fd1c751f6ae9b4511635798892afbd45942 authored over 5 years ago
Add test cases for `matchAnimatedImageClass` options

cd2e36f7a5abb28bb24dda6a6d4832bf62583207 authored over 5 years ago
Using isSubclassOfClass instead == for animated image class matching check

43bb20af325bd83caf853e775a7d18bc12f85ccb authored over 5 years ago
A little coding style fix for block invoke

95ed9e15766a2df309fa61c9fc08cacdd3dbc7bd authored over 5 years ago
Update all the test cases for cancel, now it should receive a completion with error code `SDWebImageErrorCancelled`

67b29b9d07d1fb7c50452288590e19cce358d15c authored over 5 years ago
Fix the cancel logic for download operation, because now we always callback your completion even it's cancelled

0dfbc233d8862f43bea3a7f3d66000df8cde8b11 authored over 5 years ago
Update UIImage+Transform.m

e8e7b5fa008c2c006546c76820ac32a47a77d7e1 authored over 5 years ago
Update UIImage+Transform.m

3d2f2fc2e05b53077120951f918673a147cd6388 authored over 5 years ago
Update UIImage+Transform.m

34fa90c7c55c2f187778df05b2f8e4754efbdef0 authored over 5 years ago
Update NSImage+Compatibility.m

9cf6b6d6ceb623192330839d4dd272a3076766c3 authored over 5 years ago
Update UIImage+ForceDecode.m

dcf953d03a182994b57bd611385423e744b566d0 authored over 5 years ago
Update the test case for cancel behavior

6f0f735d4f5bfae93c2ca3e9218dde13ae9f6a85 authored over 5 years ago
Merge branch 'master' of https://github.com/SDWebImage/SDWebImage into bugfix_user_cancel_guarantee_callback

5b1a833732b5e5fa66b4baaecc89a5f8ed1126c3 authored over 5 years ago
Add a new option `SDWebImageMatchAnimatedImageClass`, to ensure we always match the custom image class instead of UIImage/NSImage class. This may help for some rare case that user always need the specify image subclass (SDAnimatedImage) for their imageView (SDAnimatedImageView) instead of the built in one.

4e7d03d4715af381ac7f2e615c3ac3fb5a454b11 authored over 5 years ago
Merge pull request #2799 from dreampiggy/update_readme_installation

Update the readme about Swift Package Manager and xcframework installation guide

f49c4fa483f4008a1e4f80aaa0b921e33c37037b authored over 5 years ago
Merge branch 'master' of https://github.com/SDWebImage/SDWebImage into bugfix_user_cancel_guarantee_callback

3f7a3a8035cb0f47f0b74497ddafdc5808bc1d7f authored over 5 years ago
update the readme about the manual install

d6938fce7b5f091ef01d732233cb41a5d42fc9ad authored over 5 years ago
some typo in readme

25c6cdf5704551b1c5ec5e73677a30b3c55abb85 authored over 5 years ago
Update the readme about Swift Package Manager and xcframework installation guide

7f1b5f05a27839f426e96dac977fa6c82bf83b21 authored over 5 years ago
Merge pull request #2797 from dreampiggy/fix_swift_pm

Fix SwiftPM integration issue on Xcode 11 beta

09f06159a3284f6981d5495728e5c3cb3dfb82fa authored over 5 years ago
Fix SwiftPM build issue, by moving all the Core source files && headers, into SDWebImage/Core, which is used as public headers directory

99857f346d0a1e7bfb83e26f488bd6403bc6ad74 authored over 5 years ago
Fix the Swift PM build issue

b7b3d3d0c25253d4c1e485154e5f1c6715eb1095 authored over 5 years ago
Change current behavior. All the user cancelled code will trigger the callback (including both cache && download). The error code name changed to `SDWebImageErrorCancelled` to represent both cases

6d4e166b8bd78092080a47db71ff760d65b37ae2 authored over 5 years ago
Merge pull request #2792 from kinarobin/add_autoreleasepool_in_prefetcher

Add a autoreleasepool when prefetch many images

841662d36a34561390ad8d9d8bb02313b0b7da20 authored over 5 years ago
add a autoreleasepool when prefetch many images

d51b9e6802927113415cae58909ab6e42ae36bd4 authored over 5 years ago
Change the lock into @synchronized to ensure the operation callback is always get attached correctly, avoid the callback is not get called

a2b3a57bb2bed21746df08dc981b57e72f88546f authored over 5 years ago
Merge branch 'master' of https://github.com/SDWebImage/SDWebImage into bugfix_user_cancel_guarantee_callback

f2fb26d1c63db802d644accf6cecd6c99698a181 authored over 5 years ago
Merge pull request #2789 from kinarobin/create_weak_cache_only_apply_to_iOS/tvOS_platform

Only create weak cache in iOS/tvOS platform.

834ce0875da8537802c660afdc0725a978eb6ec6 authored over 5 years ago
Just crete weak cache in iOS/tvOS platform

f319864dd8151df4ee7832598d5cfdbb2815aa9d authored over 5 years ago
Merge pull request #2782 from kinarobin/fix_frame_buffer_bug_when_displayLink_is_pause

Fix frame buffer bug when display link is pause

2d62616cb0a2401e9c47d1c2ef61fc43334e9ddb authored over 5 years ago
get fetch queue via instance

9fa869c40b97154c6a7e19db56a9ac3347cb7d58 authored over 5 years ago
Merge pull request #2785 from dreampiggy/bugfix_uibutton_convenient_method

Fix the bug that UIButton setBackgroundImage convenient method does not pass the options arg to ...

5e2bdc60a70adb53d611cad25959b10aca766cc9 authored over 5 years ago
Fix the bug that UIButton setBackgroundImage convenient method does not pass the options arg to next function call, cause the options miss.

fc3382591a7c5d94ccf378e922d3f336ceda494e authored over 5 years ago
fix frame buffer bug when display link is pause

7605053cf5b57a1f19b7ffd92e329583d1b426ef authored over 5 years ago
Merge pull request #2780 from dreampiggy/project_upgrade_xcode_10

Follow App Store submit rule, upgrade the minimum Xcode version to Xcode 10.0

5df70628bee46bcea2fc3848a844d58d79a2b6d3 authored over 5 years ago
Merge pull request #2764 from dreampiggy/feature_support_build_xcframework_script

Provide a script target to directly build all SDWebImage framework and generate all in one XCFra...

1bd110c974f614b1928922c613dce8f6620d062c authored over 5 years ago
Merge pull request #2779 from dreampiggy/expose_memory_disk_cache_object

Expose the memoryCache and diskCache object on `SDImageCache`, Make it useful for user who have ...

9f2db8701a380834a5fb74ca6db9a69e9fda54ba authored over 5 years ago
Update the project warning for unnecessary xcconfig files

5c22cc73aea6962fccc00c767b0621c458ac5ba0 authored over 5 years ago
Update the storyboard with Xcode 10.2 version format

6ba2640ca4fc1973a1456efe315c1f94210c049d authored over 5 years ago
Follow App Store submit rule, upgrade the min Xcode version to Xcode 10.0

712e12e23a8184d17b313cac27e1bef9a5784fc7 authored over 5 years ago
Expose the memoryCache and diskCache object on `SDImageCache`, make it useful for user who have custom property beyond `SDImageCacheConfig`

6d626edaf8b0620cbcd7eea6cecbf805ecaf0a98 authored over 5 years ago
Merge pull request #2713 from bpoplauschi/remove_explicit_Tests_deployment

Revert explicitly set *_DEPLOYMENT_TARGET inside the Tests Xcode project

049feda30adbcbfac86ca0e9e9c665171c4318e0 authored over 5 years ago
Merge branch 'master' of https://github.com/SDWebImage/SDWebImage into remove_explicit_Tests_deployment

3cd71190b3cec9fa904b1380410d4618db1a60c1 authored over 5 years ago
Merge pull request #2775 from dreampiggy/fix_SDAnimatedImage_documentation

Fix the documentation about SDAnimatedImage.animatedImageData to match its behavior

559e0e868b3ac5a02e0b04f785d35ff765676cfb authored over 5 years ago
Fix typo

665405000537c52ea1c88bcfd59d50187395f82d authored over 5 years ago
Fix the documentation about SDAnimatedImage.animatedImageData to match its behavior

4c3a055f5387605d878abee75df8ec4ea0d2943b authored over 5 years ago
Merge pull request #2772 from ifsnow/fix/default-accept-header

Change the default value of accept request header

2441fe5d2132fe66e59f73346160291398000c1d authored over 5 years ago
Change the default value of accept request header

fcaa7d6c7a7e1f125c04dca57abafde3575e2c79 authored over 5 years ago
Open Finder when build all frameworks finished on Xcode 10 as well (Xcode 11 will open when xcframework build finished)

57894763be58b71c543e82f5948a9abb4b7a2020 authored over 5 years ago
Update the build script to support Xcode 10 without xcframework. Also change to build simulator platform using Debug configuration instead of Release configuration

c2037417a610ee6a380d214d94a95183a3db4a0a authored over 5 years ago
Merge pull request #2773 from huangboju/master

Delete unnecessary code

4ba9befa31286f0e3bd751370f7131ff77e3ca4d authored over 5 years ago
Update SDWebImageDownloaderOperation.m

2215db45a4d9f5acc20defcb78b4133ee70e9801 authored over 5 years ago
Merge pull request #2756 from dreampiggy/feature_swiftPM

Add support for Swift Package Manager

515a5f7ac0a71cad65bb0c129dc5ef51fbc22a95 authored over 5 years ago
Merge pull request #2763 from dreampiggy/fix_sd_imageProgress_auto_create

Change that the `sd_imageProgress` property to not auto-create instance by framework

f3aef5c1a35d002ace7c5cf70715db4666f8a6f9 authored over 5 years ago
Provide a script target to directly build all SDWebImage framework and generate one XCFramework, all in on for manual installation user

13fdc685f6717b4d2d4131622b8f915c75bb9163 authored over 5 years ago
Add a check whether `imageProgress` is NULL

17997fc52b20a371ae1a3af25feaee63a22fbef7 authored over 5 years ago
Update the SwiftPM declaration for MapKit

72ec3ebd40807c5eb297147652220b0e41589a4c authored over 5 years ago
Add the SwiftPM build steps in travis-CI

ddcf5d255de82d95001fd7f9171e4c2851d20de7 authored over 5 years ago
Add support for Swift Package Manager

ea89adeb45a10afc6dcbc705c663f3809d521250 authored over 5 years ago
Change that the `sd_imageProgress` property to not auto-create instance by framework. Instead, let users to use KVO and trigger the creation, improve the performance and fix potential issue for most of common usage.

0c34657bc5b1b9e7d732710540d98087127625e9 authored over 5 years ago
Merge pull request #2761 from dreampiggy/project_upgrade_xcode10_2

Update the Travis-CI environment to Xcode 10.2 (Swift 5)

2bbe973f592ac3d4491e7c3a8055dfc8b1343efb authored over 5 years ago
Update CI to use Xcode 10.2. Combine both the Example and Test Podfile into one. Make CocoaPods only generate one `Pods.xcodeproj` and fix the New Build System issue

df5be0e34c74c467827b37b1c7e0d5169c844faf authored over 5 years ago
Merge pull request #2760 from dreampiggy/warning_fix_nullable_check

Fix the Clang Static Analysis warning of `addEntriesFromDictionary:` API

eac8eca936395096c53cb025c5cd6ef52666279c authored over 5 years ago
Fix the Clang Static Analysis warning of `addEntriesFromDictionary:` API

288725e54a486cc8a21ae9dad3877c8b70ee3bcc authored over 5 years ago
Merge pull request #2590 from dreampiggy/feature_transformer_cache_phase_1

Supports store original image to cache for transformer

5997f5a641f9692ca945c49a51136ab8ded0d321 authored over 5 years ago
Merge pull request #2753 from dreampiggy/feature_supports_dynamic_indicator

Feature supports dynamic style indicator for iOS 13, fix indicator color on macOS 10.14+

4613ad7c8dc7698eee7ee3283ffc9bc8ca19f097 authored over 5 years ago
Merge branch 'master' of https://github.com/SDWebImage/SDWebImage into feature_transformer_cache_phase_1

# Conflicts:
# Tests/Tests/SDWebImageManagerTests.m

8ce8a87b039bc618fb3861f0585c91261df1b50b authored over 5 years ago
Fix that macOS indicator always use dynamic mode. Now only the `largeIndicator` and `mediumIndicator` supports dynamic dark mode switch

d67aebeeed5b0ab8fb56d24e3cd63ec5c5cb9d0d authored over 5 years ago
Merge pull request #2736 from dreampiggy/feature_global_control_options

Supports global control on options and context for individual image request

8c4c8d3aadfbca255d540ec4265411165e662704 authored over 5 years ago
Merge pull request #2749 from dreampiggy/hack_fix_cocoapods_modular_headers_warning

Temporary fix for CocoaPods modular headers warning because their bug to cause the custom module...

c7eb339f55f10605fcb9e197528b4a66ccd42a1b authored over 5 years ago
For simple solution, remove the custom modulemap, let CocoaPods generate one instead

46ecde48e956b6db2d26cce762f79776013cd8a8 authored over 5 years ago
Fix the header to static library target

22844887a2ab8cb01b52d2b47f620f9bfcd46b4d authored over 5 years ago
Merge branch 'master' of https://github.com/SDWebImage/SDWebImage into feature_global_control_options

# Conflicts:
# SDWebImage.xcodeproj/project.pbxproj

4683e5a0adf9c4a682ad9b4f016fe54e39cbcbbf authored over 5 years ago
Update to support Xcode 9 and Xcode 10 currently, will upgrade the IDE version in later version

e81de4fa39780fb23bda8688f678ef6f24a043bb authored over 5 years ago
Add support for new system built-in indicator with medium and large style. Fallback on OS version which does not support dark mode

0379273b48e86a9c716700154d9ab7c189e7073b authored over 5 years ago
Temporary fix for CocoaPods modular headers because they place the modulemap into the Pods/Private headers, make the `export *` export both Public and Private headers. However, their own generated modulemap does not

1139afa28a6bac31e52a877d73280ef16968458e authored over 5 years ago
Bumped version to 5.0.6

update CHANGELOG

547f9d895eedf6b698d62c75f6caaf0bd93e4db7 authored over 5 years ago
Merge pull request #2746 from dreampiggy/fix_macOS_image_source_leak

Fix the potential leak for SDAnimatedImageRep image source

9d866484199c9c717f89dd4759851b97a4a0ba1f authored over 5 years ago
Fix the potential leak for SDAnimatedImageRep image source

a7a866b7067f94db010cdbd63c2bed56710dc424 authored over 5 years ago
Merge pull request #2745 from dreampiggy/fix_macOS_animated_API

Fix the SDAnimatedImageRep which use the deprecated API and cause compile issue on Xcode 11

ba39cec2106c958e9bb5e6cf385ecc21b699f7c1 authored over 5 years ago
Fix the SDAnimatedImageRep which use the deprecated API and cause compile issue on Xcode 11. Using self-created CGImageSource instance instead of super class implementation detail

a98efdc40ad6e14c30b6fcad751543b67c40a389 authored over 5 years ago
Bumped version to 5.0.5

update CHANGELOG

eae43de069a63cd9bb3980b423c4c15a9558aa7e authored over 5 years ago
Merge pull request #2741 from dreampiggy/project_fix_static_library_archive

Fix the Static Library target issue of headers, which cause the integrated application failed to...

93c41412fe4b6547a23fbc880bad60522332ec4b authored over 5 years ago
Update the travis script to clean DerivedData after Static Library build

2d39284a31aa70d5a365213cf20eb002c4ce912a authored over 5 years ago
Fix the Static Library target issue of headers, which cause the integrated application failed to Archive because of copied headers

2e920abfb5e25087542cbd8471352489c4630193 authored over 5 years ago
Merge pull request #2742 from dreampiggy/fix_demo_webp_modular_headers

Fix the Demo WebP coder import issue when enable modular headers

ebd10609ac05dbeb206e0f43eb14012d47641ef8 authored over 5 years ago
Fix the Demo WebP coder import issue when enable modular headers

2357dabc1763c94ea0db76a52f2e4afe35e32a2f authored over 5 years ago
Support to custom the store cache type for original image when using image transformer.

294c337eaeb91ebfc0c562d00a9eef1393553610 authored over 5 years ago
Add test about the store cache type && transformer cache type, make sure it works

f88798fe2875ff9a0b043d11613f1f1a21bc5f1c authored over 5 years ago
Bumped version to 5.0.4

update CHANGELOG

4e3ec761ea7933e00d12e777edd45ac7ecd01407 authored over 5 years ago