parent
319322fbd5
commit
555ed7b983
17
CHANGELOG.md
17
CHANGELOG.md
|
@ -15,17 +15,17 @@ See [all tickets marked for the 5.0.0 release](https://github.com/SDWebImage/SDW
|
|||
- Convenient category methods for `UIImage`/`NSImage`
|
||||
|
||||
#### Custom Loader
|
||||
- Using loader protocol to implements your own image loader.
|
||||
- Using `SDImageLoader` protocol to implements your own image loader.
|
||||
- Not limited on HTTP, you can even using SDWebImage with PhotoKit and third-party SDKs.
|
||||
- Supports multiple loaders at the same time using `SDImageLoadersManager`.
|
||||
- Supports multiple loaders at the same time when using `SDImageLoadersManager`.
|
||||
|
||||
#### Custom Cache
|
||||
- Using cache protocol to implements your own image cache.
|
||||
- Using `SDImageCache` protocol to implement your own image cache.
|
||||
- Standalone disk cache and memory cache class for advanced usage and customization.
|
||||
- Supports multiple caches at the same time using `SDImageCachesManager`.
|
||||
- Supports multiple caches at the same time when using `SDImageCachesManager`.
|
||||
|
||||
#### Indicator
|
||||
- Use indicator to provide a loading view, customizable
|
||||
- Use indicator to provide a loading view, customizable.
|
||||
- Built-in Activity Indicator and Progress Indicator.
|
||||
- iOS/tvOS/macOS cross-platform support.
|
||||
|
||||
|
@ -52,16 +52,13 @@ See [all tickets marked for the 5.0.0 release](https://github.com/SDWebImage/SDW
|
|||
|
||||
- Supports the latest Xcode 10.
|
||||
- Supports iOS 8.0+/tvOS 9.0+/watchOS 2.0+/macOS 10.10+.
|
||||
- MapKit support for Carthage moved the standalone `SDWebImageMapKit` target.
|
||||
- Using module map and umbrella headers.
|
||||
|
||||
### Migration
|
||||
|
||||
Check [5.0 migration guide](https://github.com/SDWebImage/SDWebImage/wiki/5.0-Migration-guide) for the migration from 4.x to 5.x.
|
||||
|
||||
## [4.0.0 - New platforms (Mac OS X and watchOS) + refactoring, on Jan 28th, 2017](https://github.com/SDWebImage/SDWebImage/releases/tag/4.0.0)
|
||||
|
||||
See [all tickets marked for the 4.0.0 release](https://github.com/SDWebImage/SDWebImage/milestone/3)
|
||||
Versions 4.0.0-beta and 4.0.0-beta 2 list all the changes.
|
||||
|
||||
|
||||
## [5.0.0-beta6 - 5.0 Beta, on Mar 15th, 2019](https://github.com/rs/SDWebImage/releases/tag/5.0.0-beta6)
|
||||
See [all tickets marked for the 5.0.0-beta6 release](https://github.com/rs/SDWebImage/milestone/30)
|
||||
|
|
|
@ -70,7 +70,7 @@ You can use those directly, or create similar components of your own.
|
|||
|
||||
#### Backwards compatibility
|
||||
|
||||
- For iOS 7, macOS 10.9 or Xcode < 8, use [any 4.x version up to 4.3.3](https://github.com/SDWebImage/SDWebImage/releases/tag/4.3.3)
|
||||
- For iOS 7, macOS 10.9 or Xcode < 8, use [any 4.x version up to 4.4.6](https://github.com/SDWebImage/SDWebImage/releases/tag/4.4.6)
|
||||
- For macOS 10.8, use [any 4.x version up to 4.3.0](https://github.com/SDWebImage/SDWebImage/releases/tag/4.3.0)
|
||||
- For iOS 5 and 6, use [any 3.x version up to 3.7.6](https://github.com/SDWebImage/SDWebImage/tag/3.7.6)
|
||||
- For iOS < 5.0, please use the last [2.0 version](https://github.com/SDWebImage/SDWebImage/tree/2.0-compat).
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'SDWebImage'
|
||||
s.version = '5.0.0-beta6'
|
||||
s.version = '5.0.0'
|
||||
|
||||
s.osx.deployment_target = '10.10'
|
||||
s.ios.deployment_target = '8.0'
|
||||
|
|
|
@ -15,11 +15,11 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>5.0.0-beta6</string>
|
||||
<string>5.0.0</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>5.0.0-beta6</string>
|
||||
<string>5.0.0</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string></string>
|
||||
</dict>
|
||||
|
|
Loading…
Reference in New Issue