File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11Pod ::Spec . new do |spec |
2+
23 spec . name = 'ActivityRings'
3- spec . version = '1.0 .0'
4+ spec . version = '1.1 .0'
45 spec . summary = 'An attempt to recreate the ring controls in Apple’s Activity app'
56 spec . description = <<-DESC
67 ActivityRings is an attempt to recreate the ring controls used in Apple’s iOS and watchOS Activity app
@@ -11,7 +12,15 @@ Pod::Spec.new do |spec|
1112 spec . social_media_url = 'https://twitter.com/HarshilShah1910'
1213
1314 spec . source = { git : 'https://github.com/HarshilShah/ActivityRings.git' , tag : spec . version . to_s }
14- spec . ios . deployment_target = '8.0'
15- spec . ios . source_files = 'Sources/**/*.{h,swift}'
16- spec . ios . frameworks = 'SpriteKit'
15+ spec . frameworks = 'SpriteKit'
16+
17+ spec . source_files = 'Sources/Shared/**/*.swift' , 'Sources/Supporting\ Files/ActivityRings.h'
18+ spec . ios . source_files = 'Sources/iOS/**/*.swift'
19+ spec . osx . source_files = 'Sources/macOS/**/*.swift'
20+ spec . tvos . source_files = 'Sources/iOS/**/*.swift'
21+
22+ spec . ios . deployment_target = '8.0'
23+ spec . osx . deployment_target = '10.10'
24+ spec . tvos . deployment_target = '9.0'
25+
1726end
Original file line number Diff line number Diff line change 11## Changelog
22
3+ ## 1.1.0 Release notes (2/11/2017)
4+
5+ - Adds support for macOS and tvOS
6+
37## 1.0.0 Release notes (18/10/2017)
48----
59
Original file line number Diff line number Diff line change 22
33[ ![ Version] ( https://img.shields.io/github/release/HarshilShah/ActivityRings.svg )] ( https://github.com/HarshilShah/ActivityRings/releases/latest )
44![ Package Managers] ( https://img.shields.io/badge/supports-CocoaPods%20%7C%20Carthage-green.svg )
5+ ![ Platforms] ( https://img.shields.io/cocoapods/p/ActivityRings.svg?style=flat )
56[ ![ License] ( https://img.shields.io/badge/license-MIT-yellow.svg )] ( https://github.com/HarshilShah/ActivityRings/blob/master/LICENSE )
67[ ![ Contact] ( https://img.shields.io/badge/contact-%40HarshilShah1910-3a8fc1.svg )] ( https://twitter.com/HarshilShah1910 )
78
89ActivityRings is an attempt to recreate the ring controls in Apple’s Activity app.
910
1011This project is a SpriteKit port of [ Max Konovalov] ( https://github.com/maxkonovalov ) ’s pure UIKit implementation, [ MKRingProgressView] ( https://github.com/maxkonovalov/MKRingProgressView ) .
1112
12- ![ Demo] ( https://raw.githubusercontent.com/HarshilShah/ActivityRings/master/.assets /demo.gif )
13+ ![ Demo] ( https://raw.githubusercontent.com/HarshilShah/ActivityRings/master/Resources /demo.gif )
1314
1415## Requirements
1516
1617- Swift 4
17- - iOS 8
18+ - iOS 8.0+ / macOS 10.10+ / tvOS 9.0+
1819
1920## Installation
2021
Original file line number Diff line number Diff line change 1515 <key >CFBundlePackageType </key >
1616 <string >FMWK </string >
1717 <key >CFBundleShortVersionString </key >
18- <string >1.0 </string >
18+ <string >1.1 </string >
1919 <key >CFBundleSignature </key >
2020 <string >???? </string >
2121 <key >CFBundleVersion </key >
Original file line number Diff line number Diff line change 1515 <key >CFBundlePackageType </key >
1616 <string >FMWK </string >
1717 <key >CFBundleShortVersionString </key >
18- <string >1.0 </string >
18+ <string >1.1 </string >
1919 <key >CFBundleSignature </key >
2020 <string >???? </string >
2121 <key >CFBundleVersion </key >
You can’t perform that action at this time.
0 commit comments