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 imageFromMemoryCacheForKey: method to synchronously query the memory cache (fix #263)

1e53e91513dca56c3ac10f8595399e8bac806a26 authored about 12 years ago
Merge pull request #260 from kawanet/master

isRunning method added at SDWebImageManager

555a320b9ede5336fe83cca5bb285c5686b792d9 authored about 12 years ago
Merge pull request #268 from matej/prefetcher-fix

Don't dispatch cancelAll calls.

a755f647527b7f2ef4be4cf0e490dc23132110ae authored about 12 years ago
Don't dispatch cancelAll calls.

- should fix pre-fetcher problems #247
- cancelAll should be always called using the main thread

e31b1573944cb5ef7ff417d61472f25ac7b40c4d authored about 12 years ago
Do not mark URLs a fail when error is due to missing network connection

b398208bebb086543e2437ab69223f4db29e321f authored about 12 years ago
Merge pull request #264 from aburgel/use_shared_cache

Change SDWebImageManager to use shared image cache

75cf6a09aec1a732853ffbc6bcfa9c84002eb65e authored about 12 years ago
Change SDWebImageManager to use shared image cache

cfb65f2d751d81b7a57a1818c0a907d028b7535c authored about 12 years ago
isRunning method added at SDWebImageManager

e8b1532cbaeb7c5f2c37eaddf0a5dffcb4cb8927 authored about 12 years ago
Fix Xcode 4.6 warnings

c876cafa7a1d54ad7ce58a77960d5f545071419f authored about 12 years ago
Fix an LLVM warning (fix #254)

043eb14273de2058f20378e2b26084bc5bdd637a authored about 12 years ago
Merge pull request #252 from reidmain/master

decodedImageWithImage: ignores scale and orientation

5f7d288645be8b0f8f9d9c624abdc1c90e9d709a authored about 12 years ago
Fixed bug where decodedImageWithImage: ignored image scale and orientation.

f800a52f1c6eb409760bf14a5af5a636f3391100 authored about 12 years ago
Merge pull request #249 from matej/early-progress-callback

Early progress callback

7cd4d8e155059e1fe9b2676da139c2c2c4d278c8 authored about 12 years ago
Using spaces instead of tabs for indentation.

- also configured the Xcode project to use spaces instead of tabs by default

7ba77023c7fb96b732e8d2dbbc26c1437c4be124 authored about 12 years ago
Changed the expected size to -1 in the initial progress callback.

- simplifies callback code by removing possible division by 0 issues during progress computation

85759911b7f6bf6413d5cbb58a3687fe867204aa authored about 12 years ago
Send out progress callbacks sooner.

- as soon as the NSURLConnection gets initialized
- helps to allocate and show progress indicati...

b4fb940cbcf9288a6ee6fd460e666f4ac4023f08 authored about 12 years ago
Using the source image's the color space for image decoding (fix #237)

Should fix most system warnings regarding invalid context configurations

37f71de26c8fc6c817b40ca371044e571cf07d1b authored about 12 years ago
Fix typo (fix #246)

a94b3eca7cce47eb8cc395f5c712ca524d4a6c27 authored about 12 years ago
Fix ARC compilation warning breaking some non-ARC projects (fix #229)

d3b5fd2bd2211bb54a237d58d9156d887e50d6ea authored about 12 years ago
Fix podspec typo (fix #240)

e3d8bc8daf537a7b23f67f25dacac876aa18bdc7 authored about 12 years ago
Fix indentation tab/space

84fe4a666958f53c177c7e245e1f0c059c020b5b authored about 12 years ago
Return an error if the downloaded image has no pixels (fix #241)

616d824dc7b5614c61e4b4a9f10dc35d2d333931 authored about 12 years ago
Do not use GCD barrier for reading

21ff7bd6ff6e66f6135f0337f72f3f89f9babac0 authored about 12 years ago
Fix typo

43e94e7380609ced7e595ff2eb439e51996a8fbe authored about 12 years ago
Add 2.0-compat branch info to README

12ab710ebcf88cea4fc96265d493bf3e68a709d0 authored about 12 years ago
Remove podspect tag

0691f7cd97869f508f0a77271ad648ea63424ddc authored about 12 years ago
Remove no longer necessary cleanMemory on app going to background as NSCache does this by itself

4284b5797efdc445208e318bca67c9cd12986515 authored about 12 years ago
Add some sanity check on the URL parameter

ddd03f7d2cbd72880809eed36482aa188086df22 authored about 12 years ago
Do not capture self in operations in categories

82faab82d3b09fa6e051a95c44d8141dc768aa20 authored about 12 years ago
Try to fix a random crash on dealloc

d487bccf5e5f51e5fab8c2cda92273320f730b22 authored about 12 years ago
Fix SDWebImagePrefetcher maxConcurrentDownloads property

10c44577f606c357efde5f379ae33e307550738b authored about 12 years ago
Fix bug in SDWebImagePrefetcher where startPrefetchingAtIndex would never be called due to is always being 0

44c6224763635a74747bd38759e24ab565f05830 authored about 12 years ago
Do not init an activity indictor if image isn't downloading in demo app (good practice)

1ec36c7c9902c793d5608f2595e7aaa0c8e6889f authored about 12 years ago
Try to fix decode image error message

a7af2a19e48ec99f0ef66ea8b4a6f6b4beacadd1 authored about 12 years ago
Fix demo app regarding last changes

6e99059007ab67a0b22c2340b73fd4bb9c9c89b8 authored about 12 years ago
Making sure cache queries always callback in the main thread.

- queryDiskCacheForKey:done: now always invokes the callback in the main thread
- removed the no...

9546c84f9461dbe6b3fb58a3d55ae9b2ebe28b8f authored about 12 years ago
Resolved some downloader threading issues.

- callbacks could be released between the callback existence if check and invocation
- could be ...

713a83381f2d324ff0e64475cbb4387707618864 authored about 12 years ago
Calling completion callbacks in the main thread.

- made sure this is true even if the downloader is used on its own
- SDWebImageManager doesn't n...

331053d26e47969176b3c14c794169154e4766f4 authored about 12 years ago
Always making callbacks using the main thread.

Even if using the downloader directly without SDWebImageManager.

9a3aff485191471e16d36303c8dbe917fda4e7ec authored about 12 years ago
Implemented progress callbacks and related fixes.

ab185ea6e8e42a0f69f719ce5c9cb368276b5476 authored about 12 years ago
Passing the exact cache type in the completion block.

- none, disk and memory
- can still be used as a bool (if true there was a cache hit)

2e8c02556a2f878219e2791cd850e26228334fad authored about 12 years ago
Disk cache now uses the raw image data returned from the server.

This preserves the image quality and retains some image attributes, such as the alpha channel (f...

5c94f17a17c1bf6fb557393486bb3875c5320949 authored about 12 years ago
Improved background image decoding performance.

Tests on large images indicate an up to 4x improvement with regard to the time spent in decodedI...

d30c2ae2095fdb6826d7c25351e2be0e25ef1940 authored about 12 years ago
Fix a race condition (fix #220)

022aa2146e960c6f4bc192dac723d34863a3b159 authored about 12 years ago
Add activity indicator demo

0920e7a001547fdea2440d4c9ae00454d2d22627 authored about 12 years ago
Fix CGBitmapContextCreate errors (fix #204)

0c1dd3c857fcf4d704baaed0d0619c0ea3dd07ac authored about 12 years ago
Merge pull request #219 from SRandazzo/patch-1

Fix documentation directive

152c75f4372255a6e35873f40c5d4b65f97cb0de authored about 12 years ago
Fix documentation directive

bd72fe1034757eb23f36a19bd50ea89e5c7f4d08 authored about 12 years ago
Copy all stored blocks

7b947163dad3153a50953deecbaa119f504c7883 authored about 12 years ago
Set max concurrent to 2 by default

8f50bf6322d30929e3cff4ee532493d805aef535 authored about 12 years ago
Fix lazy copy/pasted typo

3109110dc0bc9b4315332d03108dec89b903d439 authored about 12 years ago
Add some doc

2eee0093929e211e611bf22ebd20f534a0a0ed1e authored about 12 years ago
Add details on `finished` parameter

e343bdfb420de28d5bd8b365c8c14fb38c7901e5 authored about 12 years ago
Inline conditions are baaad

95be2aad358015c5bf9f3391c89baa9374f69eae authored about 12 years ago
Do not call completed block on categories for intermediate progressive images

b29bb2e2e1a3fe4642d1f7c123b1191c328bd285 authored about 12 years ago
Do not break category API (cf previous commit)

e5b0d22e645cba193747c50b887b6b2dc09b8444 authored about 12 years ago
Fix progressive mode

2904559f544bc0ad0e45b923edb572a27d125230 authored about 12 years ago
Use the correct setter sementics for dispatch (fix 213)

1f0a8f4b13f92093a3ee59525b4f87b93be0d55f authored about 12 years ago
Fix cancel not cancelling connection

541f3a12847e4fad93003a24b1d3217c36a19f4b authored about 12 years ago
Fix crash under iOS 6 when dispatch_release is called (see #213)

cceb56353c593104320bb45eaa35176394e49f65 authored about 12 years ago
Serialize all background operations

651d8ff58347abf531f1ebb4d75abfae5c00ca0b authored about 12 years ago
Fix disk image cache read not setting memory cache + ensure decodedImageWithImage never fail

326890b476cd3d2a4b3388b794d991db5acf9c9e authored about 12 years ago
Ensure every data manipulation performed in NSURLConnection delegates are handled in the global background queue

b5bb74bf96ca501a10465b2477e345cad5a492b1 authored about 12 years ago
Fix double call to NSURLConnection start + wrong condition for low priority (fix #212)

bf1b946b9a6762679ad3be860fc349df21279d2e authored about 12 years ago
Ensure we're not decoding the image in the main thread

ed690465d85f5759b77d68617f11f15a9023da78 authored about 12 years ago
Use dispatch_barrier to handle NSMutableDictionary thread unsafety instead of main thread dispatching

570965f6cff9346a370039266f8a45d8fe15b950 authored about 12 years ago
Use global low prio queue instead of a dedicated queue for caching I/Os

13210a692594fd9aa715b3a99541fa561db82443 authored about 12 years ago
Do not use dispatch_io_write as it generate random crashes

Either it's buggy under iOS or I didn't use it the right way...

a8a9b128963b7e73e95471d04b064c74517d06ad authored about 12 years ago
Track leaks

73df9d7281b313c88a249187871a04318a9fb59c authored about 12 years ago
Fix aggregation tracking urls not cleaned in case of cancellation

78a4df12c6a771fa405d7d3ceaeaca6e47ccbc85 authored about 12 years ago
Add progress block support to UIImageView category

149afed476bebf536061008bb10455151cbf95f9 authored about 12 years ago
Fix example app

f7d0f1d12f7caa000b9acc9a40d02c2b0ab90a3f authored about 12 years ago
Fix fucked-up merge

d85d5833af1961fb05053514a7356a827eae2a7d authored about 12 years ago
Prevent caching of responses by NSURLCache (fix #211)

8a55d97fc9c7b6ece4056d5543b41d1c609ec2b0 authored about 12 years ago
Update podspec

df89ee44cdc171c895c2fc0b40711e73a82121fb authored about 12 years ago
Fix source file headers

efe65bfd3beb65c9333f363e98858f926474fcd7 authored about 12 years ago
Setup NSURLRequest

- Activate pipelineing
- Disable cookie support
- Add image/* Accept header to force image on se...

56a0eea94150836e0030b9bc172dd8d519c08486 authored about 12 years ago
Fix wrong cache policy used (fix #211)

e91cbcf0aa15c3637698f61c2e54b411778b4122 authored about 12 years ago
Fix typo in license URL

9a283273f10e534bdba4180d19a51107d5e6079b authored about 12 years ago
Add Licenses section

4f2b5bf674134f8c3055855de6ff0dd7473d3c00 authored about 12 years ago
Add "How is SDWebImage better than X?" wiki link

64a745f2fc18de7535c8618d15590fb63b43e6ea authored about 12 years ago
Remove outdated motivation section

f8798294ab0a846e18ea58512d1b06edcc3702d6 authored about 12 years ago
Add who use it section

535203d90ca6355d5428cf6a467c8f99c9c69fde authored about 12 years ago
First beta of SDWebImage 3.0

This version is a rewrite of the lib using iOS 5.0 as minimum target.
The lib as thus been refac...

2227266c41c65f55d1e7f9a37ca2a30325689658 authored about 12 years ago
Add cancelAll method (fix #168)

8963f996e9db7162fc9ff70c2389ab190fa2e506 authored about 12 years ago
Merge pull request #205 from triposo/send-downloader-with-notification

Send downloader as part of notification.

55fd4a1d77f471e1ba3711a703daae567abbc334 authored about 12 years ago
Fix alpha handling in image decoder (fix #204)

048bdbb751ed19a357d58438ce1f2e15ae7dc4b1 authored about 12 years ago
Fixed Alpha chanel detection when decoding images.

c609027314be09f598d2a2a75192b10f89bf1e95 authored about 12 years ago
Revert "Fixed Alpha chanel detection when decoding images."

This reverts commit e6ede1104cea39f2034ec5a1644e2d2082cc57bd.

1a360b6faf022c98bb8139b31e434360fe788208 authored about 12 years ago
Change deployement target to 4.x as NSCache wasn't available in 3.0

ead67a6c9c1e122f2700bedae2abdafe8191918a authored about 12 years ago
Fix example app

9df9bf84989a822bdcb222e41d4097c96fe1ec87 authored about 12 years ago
Add NSCache's cost argument

497207466f248875142f693c961ba45c4414e9e2 authored about 12 years ago
Merge pull request #183 from gotosleep/502f74042f10aa3a34d95a5e3f3e9a6500471554

Use NSCache instead of a dictionary for the memory cache.

16595c950d419dbdb16d8474667e67d09505dbe1 authored about 12 years ago
Send downloader as part of notification.

fbad0138007afbf53600dc607c45b4f717986dbb authored about 12 years ago
Merge pull request #203 from Stigec/master

Fixed Alpha detection when decoding images.

520124114fddcb73fc75ec543b2ac9993896331e authored about 12 years ago
Fixed Alpha chanel detection when decoding images.

e6ede1104cea39f2034ec5a1644e2d2082cc57bd authored about 12 years ago
Fix #200 crash on archived builds

ab07f23fbc6cf92793742ea89cbe00fed500a9e9 authored over 12 years ago
Add missing installation instruction about linker flag

ccd3b025f0051d7fe631e6945f48d8241dfae897 authored over 12 years ago
Switch to framework distribution

62a61ab2499be321ce2082fab0c956c3498b9631 authored over 12 years ago
Merge pull request #195 from JaviSoto/bitmap-info-error

Creating the CGBitmapContext with the right bytes per pixel and bitmap info depending on the ori...

0102bdf7b76cc732ee73e4c766f64f8cdbb4aed9 authored over 12 years ago