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

Merge pull request #2866 from dreampiggy/feature_response_modifier_data_decrypter

Feature response modifier data decrypter

75fb66c83491c3e7072ef26058cbe6b369a4a6a8 authored over 5 years ago
Fix the test case naming and documentation

5aab84df90b4667a2ac612e762e2c01161118e78 authored over 5 years ago
Refactory to seperate the response modifier and data decryptor, one for HTTP response, one for Data decrypt.

34e736375e9a1824218ad4662e1e532a773503ff authored over 5 years ago
Fix the typo on documentation

9b6d2b569155f2f397014126b9584b8140295b8f authored over 5 years ago
Update the documentation for request/response modifier

537b86a7c8ce762f1f24a5b45dd371869acd385d authored over 5 years ago
Add test case `test24ThatDownloadRequestModifierWorks `, including the base64 and zlib testing for both fileURL and webURL

d6fbaaff049a223f4cb7093b8ec2579aedef12e8 authored over 5 years ago
Fix the issue of response modifier, including Public header, initialize, etc

6825b2c9be89e9376f00b578b14adecb2e35e45f authored over 5 years ago
Add one convenient method to use base64 encoded image data

c0602e67333d2cba849811ecadbf7446a05ebcff authored over 5 years ago
Add the response modifier and data decrypter, which allows user to provide a modified version of URL Response and image data, like Gzip or other encoding form

68d73f4cb259e4a94a3b8cdd0eb3f148a74e17d8 authored over 5 years ago
Bumped version to 5.2.3

Update the CHANGELOG

a42a22ff88ae300d888942ffd801e9744a11027e authored over 5 years ago
Merge pull request #2863 from dreampiggy/bugfix_revert_apng_constants

Revert the change for APNG constants fix for iOS 8 devices which cause crash

6d67ed0143e1014393cb7da329e0dd118dd591bc authored over 5 years ago
Revert the change for APNG constants fix for iOS 8 devices which cause crash, use previous deployment target macro check instead of runtime firmware version check

456bfbac529ba24a1825d7c3458f6f08e7328a9a authored over 5 years ago
Update the readme about the AVIF format coder

4ad718a1ed38aa1db1e03a5a47c56371f71e549f authored over 5 years ago
Update the readme about the features, add more SDWebImage 5.0 stuff

0f02fa67a492a38e0d4375e32966e658e5ba8225 authored over 5 years ago
Update the readme with SwiftUI integration

77d8dfb32ccd40c3684e66c1f5a7825f4412f004 authored over 5 years ago
Bumped version to 5.2.2

Update the CHANGELOG

39ecbe51de1455c56e877397b9838a7f8fafd71a authored over 5 years ago
Merge pull request #2860 from dreampiggy/fix_warnings

Fix warnings when deployment target version set to iOS 13+

1254de07567cf741d6eba108276f349ffd24f4ad authored over 5 years ago
A little renaming of CVDisplayLink callback method

4ad976d2eb5534c1dd18bb397eacf8d25ef8fee2 authored over 5 years ago
Change the CVDisplayLink to use the better way to get duration, fix warnings

f97c7d4d8712aa2cd383a6510c715dbeafc8c7e4 authored over 5 years ago
Ignore the warning which can not been solved by code changes, like MD5

eb67ece614edffb19ec860adc6c8870f20ee7b82 authored over 5 years ago
Bumped version to 5.2.1

Update the CHANGELOG

66f783cf7d50186aa13ed9bdbbf7dd7be663efd1 authored over 5 years ago
Merge pull request #2856 from dreampiggy/fix_retain_cancel_token

Make the SDWebImageDownloadToken to not retain the completion block so that user don't need weak...

c294c0c6a7b3e6b5030b328c3e5d905a39f4b7ef authored over 5 years ago
Change the token implementation to not retain the cancel token and completion block, which may it possible for user to retain the token in completion block without weak-strong dance.

1096075ccbc2f1108bd4b2dec3b4ccd18d1d1bde authored over 5 years ago
Refactory, remove the `cancel:` method on SDWebImageDownloader. This does the same thing as `token.downloadOperationCancelToken` since 5.1.0 we can always ensure `cancel will trigger a callback`

a3a0260253b0473811c6f8c0ea990bafbf392ae8 authored over 5 years ago
Merge pull request #2857 from dreampiggy/fix_test_case

Try to fix the test case `test15DownloaderLIFOExecutionOrder`

d0d19d23a221fde9962b2511f7b5ba486b121ce0 authored over 5 years ago
Try to fix the test case `test15DownloaderLIFOExecutionOrder`, because the queue dispatch delay, we add the next 8-14 urls just after url 7 start downloading

e8ee90b85e340c7e5957eb505c2d48dc5ecbd296 authored over 5 years ago
Update the readme with the contributor graph

66dc0ee4e895a943b05d1cac756334ec0b80c673 authored over 5 years ago
Update the readme, fix typo about supported formats

302a547854706aa63fd1933b56dd7aca842ca85a authored over 5 years ago
Bumped version to 5.2.0

9c1682e37bf3486daccd313fcbcd7fd90a2064f4 authored over 5 years ago
update CHANGELOG

40b0b5acb499e09fb85d7c000c1e42bbe16d39f6 authored over 5 years ago
Merge pull request #2854 from dreampiggy/revert_heic_default_coder

Revert animated heic coder from default coder list due to Apple's performance issue

fbf7eb2f465084364838b004821c694f7a2e1388 authored over 5 years ago
Update the example with HEIC coder, this can be used to investigate future performance enhancement from Apple

4ba92b6749643d39d5448fd98354ca39c7c1b5c6 authored over 5 years ago
Remove the HEIC coder from default coder list. Since it contains performance issue and may block main thread. Needs to check in the future iOS release

d91ea19768c179cd8a996fef1e2f71c76df7d697 authored over 5 years ago
Merge pull request #2852 from dreampiggy/fix_fifo_order_policy

Fix the LIFO order inverse issue when adding new urls during previous url query

46bdb3b8c1053054b73f7a8a6e02dfb8c5b497d7 authored over 5 years ago
Fix the LIFO execute order issue, we should make all previous operation dependent the new operation, Foundation will take care of dependency graph and calculate the order

76a6beb029d6deb28604c4feea5fc97da7ff6706 authored over 5 years ago
Added the test case `test15DownloaderLIFOExecutionOrder` to fix the LIFO order. See #2823

902c6191263cb0f2caad9cbf337cd944214f98ce authored over 5 years ago
Update the readme about markdown link, using the GitHub page instead of raw download link

61f8ddeb8c2722155a112fcc9b22ecf2a918a1e8 authored over 5 years ago
Update the readme about Mac Catalyst, HEIC coder and contribution guide

23e06df752c18eb4a42b53ed0e41c7d85a14f427 authored over 5 years ago
Merge pull request #2849 from dreampiggy/feature_heics_animated_coder

Supports HEIC sequence (animated) image on iOS 13/macOS 10.15+

dfc118d2f7e2ebc620926a933be41745a3ce40d3 authored over 5 years ago
Use the NSString static variable to avoid bridge twice. For HEIC and APNG constants

4638700886c7882fad3a2e51211edcd675200bcc authored over 5 years ago
Fix the Travis-CI test using iPhone 11 Pro (iOS 13.0) simulator with Apple Watch

859c76fa9f36d3558978679b76ec2f9284b9d45f authored over 5 years ago
Fix the iOS 13 Test case

164409d30ab1eee9e1a346a16b47bdc3af5bff7c authored over 5 years ago
Fix the Travis-CI test using iPhone 11 (iOS 13.0) simulator

918427d39b3f4b268bf9ea55cb1ca68d9df38176 authored over 5 years ago
Fix the Travis-CI test issue for macOS 10.15

f80a2840c0735d38931783ecad1e38d9beb1ebfe authored over 5 years ago
Add support for SDAnimatedImageRep for HEIC sequence

2afd943cd907740ea209fa32d82f70dde6d58eae authored over 5 years ago
Update the Travis-CI environment to Xcode 11, because the test case need this

26a3402f1690be330ebd5b172e9e68929cdd273f authored over 5 years ago
Update the comments here about HEIC coder

ae958381f12ef00a51713d4a98748c95187dae9e authored over 5 years ago
Add test. case for HEIC animated imaged decoding && encoding

1a32f90f9c6a5d574f5f9d1062374e28a35e9973 authored over 5 years ago
Add HEICCoder (HEIF naming is taken by SDWebImageHEIFCoder repo), supports animated HEICS format as well

9b8712e04bc0c8219326d7886b25f44f2e397677 authored over 5 years ago
Merge pull request #2847 from dreampiggy/bugfix_mac_gif_loop_count

Fix the macOS SDAnimatedImageRep to match Netscape standard of GIF loop count, which should use ...

20c8adc22d5316745967922223ec53ca062fecd1 authored over 5 years ago
Fix the unused code warning on test cases

d20b25b72c6f04cda2fb48e9f70ed5dd59223a54 authored over 5 years ago
Fix the macOS SDAnimatedImageRep to match Netscape standard of GIF loop count, which should use 1 when there are no loop count information

7e83241c37c72b2cd8a9cacf970c1f98d44201fd authored over 5 years ago
Merge pull request #2846 from dreampiggy/refactory_imageio_animated_coder

Refactor APNG and GIF coder implementation with abstract base class

d7ce577b90f91965ee470c8ffe9b71b2605fd379 authored over 5 years ago
Fix the test case issue. The loop count test case need another PR to fix

a7ae1053ec60a0bc06fabc9358a942af00717b56 authored over 5 years ago
Fix the public API configuration of CI build for framework target

a04ddceb3c5fe30d466900cc0b6580c4b17c515c authored over 5 years ago
Add the test case for GIF image which does not have any Loop Count extension metadata

113c20ad9eec7e09523492f236398a91f100e675 authored over 5 years ago
Fix the defaultLoopCount function during refactory

a657d970e4c015f5ca939188e736e905244862fe authored over 5 years ago
Update the exception name description

786d5f8173b512027e0d8fe981476e3dffc33df6 authored over 5 years ago
Refactory current GIF/APNG coder, use abstract base class `SDImageIOAnimatedCoder` for subclass to implements the required method.

2aa4e7d8a715c8fed09fdf8d5f6bbe9d7d897bb9 authored over 5 years ago
Add test case to ensure the `SDImageIOAnimatedCoder` abstract class can not be used as normal coder

fb6819add06024d538913a1dac1ed256382e7cda authored over 5 years ago
Merge branch '5.1.x' of https://github.com/SDWebImage/SDWebImage

f53b0512a22dfd9b674b5f7f2b6cea590985f765 authored over 5 years ago
Merge pull request #2832 from michaelmou/fix_symbol_mac

Fix macOS 10.10 symbol definition of NSURLSessionTaskPriorityHigh

5aa04257e76fce5905f052f4d64f208e0c2ef0c7 authored over 5 years ago
Fix (iOS 8 Foundation.framework extern these symbol but the define is in CFNetwork.framework. We just fix this without import ) but not available in MacOS

050aa883c84392634b392c1c3386acbe75e8ee45 authored over 5 years ago
Merge branch 'master' of https://github.com/dreampiggy/SDWebImage; branch '5.1.x' of https://github.com/SDWebImage/SDWebImage

24739b21e6efa8f59aa6295da6b9c821c780b227 authored over 5 years ago
Bumped version to 5.1.1

8ffbe8b8c1348ae49565d3558eb6fc808abf7abd authored over 5 years ago
update CHANGELOG

ac2ddc4d15f9804f4af244aa9474be1580828bad authored over 5 years ago
Merge pull request #2820 from dreampiggy/bugfix_sdanimatedimageview_mac_aligning

Fix the macOS that SDAnimatedImageView does not works for imageScaling and imageAlignment proper...

40b3ed4f4f706325ff6a6f2bcdfc140fd99e7f5b authored over 5 years ago
Merge pull request #2825 from dreampiggy/fix_sdanimatedimageview_dealloc_on_global_queue

Fix the case when SDAnimatedImageView dealloc on the fetch queue, will cause it trigger the UIKi...

c9ea3f12bf300b14036a1fc3cafe8e06d3c73fcc authored over 5 years ago
Merge pull request #2819 from dreampiggy/bugfix_options_mask_check_32bit

Fix that some option mask check with local BOOL variable, error result on 32 bit device.

ea76da958f092ce727e4b4da18725ef330b33629 authored over 5 years ago
Change the stale date for issues from 30 days to 60 days

cc47b24ca6b7cc1e91c4a07ac6f3834105f7b4b2 authored over 5 years ago
Merge pull request #2820 from dreampiggy/bugfix_sdanimatedimageview_mac_aligning

Fix the macOS that SDAnimatedImageView does not works for imageScaling and imageAlignment proper...

e2cc90215e52c95265b904bf393206b99b045a9e authored over 5 years ago
Revert the changes to use super.image, make it still possible for subclassing and override

bba155421a4e9cb619c2b8aa59211b9a25df69d1 authored over 5 years ago
Revert "Fix the test case by using the same lock in SDAnimatedImageView to avoid thread-safe issue"

This reverts commit 031f21a18d83f26c67139eb3e7efcbe2430e0db3.

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

0de548f1032b7446b2df106c7d7972c04fac8868 authored over 5 years ago
Merge pull request #2825 from dreampiggy/fix_sdanimatedimageview_dealloc_on_global_queue

Fix the case when SDAnimatedImageView dealloc on the fetch queue, will cause it trigger the UIKi...

048ba902feff360311ccf8ec16f6269139f7df7d authored over 5 years ago
Fix the case when SDAnimatedImageView dealloc on the fetch queue, will cause it trigger the UIKit/AppKit method on non-main queue and captured by UI Main Thread Checker

7bd12dac54b95e43c88ee63a3428246fc7d39a80 authored over 5 years ago
Merge pull request #2819 from dreampiggy/bugfix_options_mask_check_32bit

Fix that some option mask check with local BOOL variable, error result on 32 bit device.

1806c59e46ec63215d602a04051c2c0f91c4a5eb authored over 5 years ago
Fix the test case by using the same lock in SDAnimatedImageView to avoid thread-safe issue

031f21a18d83f26c67139eb3e7efcbe2430e0db3 authored over 5 years ago
Update the Example for Appkit using the aligning and scaling layout

9c28ce40a9baf8e5142f14693460bb2170fde4be authored over 5 years ago
Try to fix the SDAnimatedImageView's imageScaling and imageAligning behavior compared to the built-in NSImageView

1487f6762f64054d9de75606e07e3e8a6d555085 authored over 5 years ago
Merge pull request #2815 from dreampiggy/feature_animated_clear_when_stop

Support to clear frame buffer or reset frame index when stopped for SDAnimatedImageView

491fefdd482062d47f2472f38f7a86a27c2435ac authored over 5 years ago
Fix that some option mask check with local BOOL variable, will result error result on 32 bit device. Use a macro help to solve this issue

dfa871b20e4c98e20b6a98ac4a058b29b4ed42e1 authored over 5 years ago
Fix the compile issue for test cases on macOS

70b8fec54a683ea203605fc2f97137abf2c9fbd4 authored over 5 years ago
reuse frame buffer container

dd8f58917f9bffb52762ee53d640c4a08ef15c49 authored over 5 years ago
Add the test case for these two new properties

1f74aea686d51d56c0d328f4a293a6ac2c871afe authored over 5 years ago
Add new properties `clearBufferWhenStopped` and `resetFrameIndexWhenStopped`

1abc05e05c617b398a08ad8653ba0db289a83aed authored over 5 years ago
Change the stale date for issues from 30 days to 60 days

2350dcf77da3e54db9b094f6f2ddd7a3985c5de2 authored over 5 years ago
Merge pull request #2808 from dreampiggy/project_uikit_macos

Feature: Support UIKit for macOS (Catalyst)

8898909f1d67e5c23cdea77e58e106f8eda472c0 authored over 5 years ago
Update the XCFramework build script, fix the DerivedData path issue (avoid Xcode's default path conflict) and cleanup the code structure

1775374feb621a80f1ab6806cda131ea9e329dc2 authored over 5 years ago
Try to fix the Xcode 10 compatible

0f276171520338fb6685c07adef45a701b3d4f13 authored over 5 years ago
Change the Travis-CI env to Xcode 10.3

6185bcd7888bc8a942129113ea734ceffc644808 authored over 5 years ago
Temporary comment the macOS catalyst build on Travis-CI, since it does not have macOS 10.15 env yet.

0635a7cd59bac33b2095cc9cdb57d43daa1ef39d authored over 5 years ago
Update the travis-CI script for the macOS catalyst

3e8c55e87b0b6decec52bf15eed29473486e2fc6 authored over 5 years ago
Update the XCFramework script for macOS catalyst

e0b9b9cde4dfe5340cfdb0f027b1847350975517 authored over 5 years ago
Update the travis ci script

2aa0b8bae6866e6d9bc7cd97aaffd87135002e6e authored over 5 years ago
Remove `SDWebImage.xcodeproj` from the workspace, try to solve the Xcode New Build System issue of implicit dependency for `SDWebImage.framework` (Both CocoaPosd and SDWebImage.xcodeproj can produce this framework), which cause build issue

940c09ff801e9e92bea1f17a5dd9f0ca86b159c6 authored over 5 years ago
Update Podspec for MapKit supports catalyst

cb2baac522714f17684b4e774e96991da6f6db38 authored over 5 years ago
Update the test case for catalyst

3f248552b344dd0c684beb296ccb1dd4fae5c936 authored over 5 years ago
Use UIImage.class for conformsToSelector detect, which fix the current Xcode 11 Beta5 's runtime behavior of UIKit for macOS

054c5186b87ef44c51d5652766e9a99ea68846a0 authored over 5 years ago
Update the demo of UIKit for macOS, which should not contains the WatchKit Extension

77e54697c5152818a11676871965571786a6beef authored over 5 years ago