From a0fc7bb1aab31b3bffa2c2f81190ea1f5bf2d867 Mon Sep 17 00:00:00 2001 From: CI Date: Thu, 25 Aug 2022 16:16:57 -0700 Subject: [PATCH] Release 2.0.2 --- .gitignore | 9 +++++++++ LICENSE.md | 34 ++++++++++++++++++++++++++++++++++ Package.swift | 28 ++++++++++++++++++++++++++++ README.md | 23 +++++++++++++++++++++++ 4 files changed, 94 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE.md create mode 100644 Package.swift create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3718c96 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +*.xcframework* +*.xcodeproj +.DS_Store +.build +.swiftpm/ +DerivedData/ +Package.resolved +Packages/ +xcuserdata/ diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..6c4e5ce --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,34 @@ +Ditto Binary License + +Copyright © 2019 DittoLive Incorporated. All rights reserved. + +NOTICE: All information contained herein is, and remains the property of +DittoLive. The intellectual and technical concepts contained herein are +proprietary to DittoLive and may be covered by U.S. and Foreign Patents, +patents in process, and are protected by trade secret and copyright law. + +Redistribution and use in binary form, with or without modification, is +permitted provided that the following conditions are met: + +1. You agree not to attempt to decompile, disassemble, reverse engineer or +otherwise discover the source code from which the binary code was derived. + +2. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its +contributors may be used to endorse or promote products derived from this +software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. diff --git a/Package.swift b/Package.swift new file mode 100644 index 0000000..78fff07 --- /dev/null +++ b/Package.swift @@ -0,0 +1,28 @@ +// swift-tools-version:5.5 + +import PackageDescription + +let package = Package( + name: "Ditto", + platforms: [ .iOS(.v11), .macOS(.v11) ], + products: [ + .library( + name: "DittoSwift", + targets: ["DittoSwift"]), + .library( + name: "DittoObjC", + targets: ["DittoObjC"]), + ], + targets: [ + .binaryTarget( + name: "DittoSwift", + url: "https://software.ditto.live/cocoa/DittoSwift/2.0.2/dist/DittoSwift.xcframework.zip", + checksum: "2dda69f83324034bafe4b535f5669cb5c3409478104a11f993c751630df3829e" + ), + .binaryTarget( + name: "DittoObjC", + url: "https://software.ditto.live/cocoa/DittoObjC/2.0.2/dist/DittoObjC.xcframework.zip", + checksum: "2c86f70d503c6cd6a0f356bb89fc94f33b9cfba91af31da7beadd0f8f59ebee0" + ), + ] +) diff --git a/README.md b/README.md new file mode 100644 index 0000000..ebaa481 --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# Ditto Swift Package 📦 + +[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fgetditto%2FDittoSwiftPackage%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/getditto/DittoSwiftPackage) [![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fgetditto%2FDittoSwiftPackage%2Fbadge%3Ftype%3Dplatforms)](https://swiftpackageindex.com/getditto/DittoSwiftPackage) + +[![Ditto logo](https://www.ditto.live/_ipx/w_96,q_75/%2Flogos%2Flogo.png?url=%2Flogos%2Flogo.png&w=96&q=75)](https://www.ditto.live/) + +Swift package for the `DittoSwift` and `DittoObjC` frameworks. This repo contains +only metadata for the Swift Package Manager to install our pre-built binaries. +See the [Tags](https://github.com/getditto/DittoSwiftPackage/tags) page for a list of +avaliable versions that can be installed. See our [Changelog](https://docs.ditto.live/changelog) +for details of each release. + +See the Ditto [iOS installation documentation](https://docs.ditto.live/ios/installation/) +for details on how to get started and use this package in your app. + +## ✍🏻 Author + +Ditto (contact@ditto.live) + +## 📄 License + +Copyright © 2019 DittoLive Incorporated. All rights reserved. +See the [LICENSE](LICENSE.md) file for more info.