Update the information from personal repo to SDWebImage organization

This commit is contained in:
DreamPiggy 2019-08-09 17:11:33 +08:00
parent 98dcd2d619
commit b5aae6ab81
2 changed files with 8 additions and 6 deletions

View File

@ -1,6 +1,6 @@
# SDWebImageSwiftUI
[![CI Status](https://travis-ci.com/dreampiggy/SDWebImageSwiftUI.svg?branch=master)](https://travis-ci.com/dreampiggy/SDWebImageSwiftUI)
[![CI Status](https://travis-ci.com/SDWebImage/SDWebImageSwiftUI.svg?branch=master)](https://travis-ci.com/SDWebImage/SDWebImageSwiftUI)
[![Version](https://img.shields.io/cocoapods/v/SDWebImageSwiftUI.svg?style=flat)](https://cocoapods.org/pods/SDWebImageSwiftUI)
[![License](https://img.shields.io/cocoapods/l/SDWebImageSwiftUI.svg?style=flat)](https://cocoapods.org/pods/SDWebImageSwiftUI)
[![Platform](https://img.shields.io/cocoapods/p/SDWebImageSwiftUI.svg?style=flat)](https://cocoapods.org/pods/SDWebImageSwiftUI)
@ -11,12 +11,14 @@
This is an experimental project for [SDWebImage](https://github.com/SDWebImage/SDWebImage).
It aims to ensure the following function available for users and try to do some experiences for Swift platform.
It aims to ensure the following function available for users and try to do some experiment for Swift platform.
+ Swift Package Manager integration
+ SwiftUI compatibility
+ Swift source code compatibility
Note we do not gurantee the public API stable for current status. Since Xcode 11 is not get released and SwiftUI is a new platform for us.
## Requirements
+ Xcode 11+
@ -41,7 +43,7 @@ pod 'SDWebImageSwiftUI'
SDWebImageSwiftUI is available through [Carthage](https://github.com/Carthage/Carthage).
```
github "dreampiggy/SDWebImageSwiftUI"
github "SDWebImage/SDWebImageSwiftUI"
```
#### Swift Package Manager
@ -51,7 +53,7 @@ SDWebImageSwiftUI is available through [Swift Package Manager](https://swift.org
```swift
let package = Package(
dependencies: [
.package(url: "https://github.com/dreampiggy/SDWebImageSwiftUI.git", .branch("master"))
.package(url: "https://github.com/SDWebImage/SDWebImageSwiftUI.git", from: "0.1")
],
)
```

View File

@ -16,10 +16,10 @@ This framework is used to integrate SDWebImage' image loading system to the new
Which aims to provide a better support for SwiftUI users.
DESC
s.homepage = 'https://github.com/dreampiggy/SDWebImageSwiftUI'
s.homepage = 'https://github.com/SDWebImage/SDWebImageSwiftUI'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'DreamPiggy' => 'lizhuoli1126@126.com' }
s.source = { :git => 'https://github.com/dreampiggy/SDWebImageSwiftUI.git', :tag => s.version.to_s }
s.source = { :git => 'https://github.com/SDWebImage/SDWebImageSwiftUI.git', :tag => s.version.to_s }
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'