Skip to content

Commit 9098d33

Browse files
authored
Merge pull request #12 from SDWebImage/feat/bump_sd_515
Bump the support for SDWebImage 5.15.0
2 parents 3ef1ca3 + 70c96d9 commit 9098d33

File tree

7 files changed

+258
-200
lines changed

7 files changed

+258
-200
lines changed

Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
github "SDWebImage/SDWebImage" ~> 5.10
1+
github "SDWebImage/SDWebImage" ~> 5.15
22
github "ibireme/YYCache" ~> 1.0
33
github "ibireme/YYImage" ~> 1.0

Example/Podfile.lock

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
PODS:
22
- Expecta (1.0.6)
3-
- SDWebImage/Core (5.10.3)
4-
- SDWebImageYYPlugin (0.6.0):
5-
- SDWebImage/Core (~> 5.10)
6-
- SDWebImageYYPlugin/YYCache (= 0.6.0)
7-
- SDWebImageYYPlugin/YYImage (= 0.6.0)
8-
- SDWebImageYYPlugin/YYCache (0.6.0):
9-
- SDWebImage/Core (~> 5.10)
3+
- SDWebImage/Core (5.15.0)
4+
- SDWebImageYYPlugin (0.7.0):
5+
- SDWebImage/Core (~> 5.15)
6+
- SDWebImageYYPlugin/YYCache (= 0.7.0)
7+
- SDWebImageYYPlugin/YYImage (= 0.7.0)
8+
- SDWebImageYYPlugin/YYCache (0.7.0):
9+
- SDWebImage/Core (~> 5.15)
1010
- YYCache
11-
- SDWebImageYYPlugin/YYImage (0.6.0):
12-
- SDWebImage/Core (~> 5.10)
11+
- SDWebImageYYPlugin/YYImage (0.7.0):
12+
- SDWebImage/Core (~> 5.15)
1313
- YYImage/Core
1414
- YYCache (1.0.4)
1515
- YYImage/Core (1.0.4)
@@ -34,11 +34,11 @@ EXTERNAL SOURCES:
3434

3535
SPEC CHECKSUMS:
3636
Expecta: 3b6bd90a64b9a1dcb0b70aa0e10a7f8f631667d5
37-
SDWebImage: e378178472b735e84b007bfb55514c97948a0598
38-
SDWebImageYYPlugin: 44e88320fc9604b6abb09d8271504bdd986dcf2e
37+
SDWebImage: 9bec4c5cdd9579e1f57104735ee0c37df274d593
38+
SDWebImageYYPlugin: 9ff87103cef7b39ac608303d756f1ce9899b9012
3939
YYCache: 8105b6638f5e849296c71f331ff83891a4942952
4040
YYImage: 1e1b62a9997399593e4b9c4ecfbbabbf1d3f3b54
4141

4242
PODFILE CHECKSUM: 71679fe963dea37bf4e76ca762d8b118854ce524
4343

44-
COCOAPODS: 1.8.4
44+
COCOAPODS: 1.11.3

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,18 @@
77
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/SDWebImage/SDWebImageYYPlugin)
88
[![codecov](https://codecov.io/gh/SDWebImage/SDWebImageYYPlugin/branch/master/graph/badge.svg)](https://codecov.io/gh/SDWebImage/SDWebImageYYPlugin)
99

10-
1110
## What's for
1211
SDWebImageYYPlugin is a plugin for [SDWebImage](https://github.com/rs/SDWebImage/) framework, which provide the image loading support for [YYImage](https://github.com/ibireme/YYImage) (including YYImage's decoding system and `YYAnimatedImageView`) and [YYCache](https://github.com/ibireme/YYCache) cache system.
1312

1413
By using SDWebImageYYPlugin, you can use all you familiar SDWebImage's loading method, on the `YYAnimatedImageView`.
1514

1615
And you can also use `YYCache` instead of `SDImageCache` for image cache system, which may better memory cache performance (By taking advanced of LRU algorithm), and disk cache performance (By taking advanced of sqlite blob storage)
1716

17+
## Long term maintenance
18+
This repo was created as a showcase how power the SDWebImage 5.0's customization can be. But actually is not recommended to use in commercial applications.
19+
20+
Since the upstream YYImage/YYCache has no longer maintained, and SDWebImage itself has become more and more performant than previous versions. I will not always up-to-date the compatibility with SDWebImage's internal changes from version to version. This repo will be deprecated in the future (like SDWebImage 6.0). But the PR for bugfix is still welcomed.
21+
1822
## Usage
1923

2024
#### YYImage Plugin

SDWebImageYYPlugin.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ TODO: Add long description of the pod here.
3131
s.source_files = 'SDWebImageYYPlugin/Module/SDWebImageYYPlugin.h'
3232
s.module_map = 'SDWebImageYYPlugin/Module/SDWebImageYYPlugin.modulemap'
3333

34-
s.dependency 'SDWebImage/Core', '~> 5.10'
34+
s.dependency 'SDWebImage/Core', '~> 5.15'
3535

3636
s.subspec 'YYCache' do |ss|
3737
ss.dependency 'YYCache'

0 commit comments

Comments
 (0)