Skip to content

Commit

Permalink
Release version 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
HarshilShah committed Nov 2, 2017
1 parent 1f2b186 commit d72611a
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 8 deletions.
17 changes: 13 additions & 4 deletions ActivityRings.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Pod::Spec.new do |spec|

spec.name = 'ActivityRings'
spec.version = '1.0.0'
spec.version = '1.1.0'
spec.summary = 'An attempt to recreate the ring controls in Apple’s Activity app'
spec.description = <<-DESC
ActivityRings is an attempt to recreate the ring controls used in Apple’s iOS and watchOS Activity app
Expand All @@ -11,7 +12,15 @@ Pod::Spec.new do |spec|
spec.social_media_url = 'https://twitter.com/HarshilShah1910'

spec.source = { git: 'https://github.com/HarshilShah/ActivityRings.git', tag: spec.version.to_s }
spec.ios.deployment_target = '8.0'
spec.ios.source_files = 'Sources/**/*.{h,swift}'
spec.ios.frameworks = 'SpriteKit'
spec.frameworks = 'SpriteKit'

spec.source_files = 'Sources/Shared/**/*.swift', 'Sources/Supporting\ Files/ActivityRings.h'
spec.ios.source_files = 'Sources/iOS/**/*.swift'
spec.osx.source_files = 'Sources/macOS/**/*.swift'
spec.tvos.source_files = 'Sources/iOS/**/*.swift'

spec.ios.deployment_target = '8.0'
spec.osx.deployment_target = '10.10'
spec.tvos.deployment_target = '9.0'

end
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Changelog

## 1.1.0 Release notes (2/11/2017)

- Adds support for macOS and tvOS

## 1.0.0 Release notes (18/10/2017)
----

Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,20 @@

[![Version](https://img.shields.io/github/release/HarshilShah/ActivityRings.svg)](https://github.com/HarshilShah/ActivityRings/releases/latest)
![Package Managers](https://img.shields.io/badge/supports-CocoaPods%20%7C%20Carthage-green.svg)
![Platforms](https://img.shields.io/cocoapods/p/ActivityRings.svg?style=flat)
[![License](https://img.shields.io/badge/license-MIT-yellow.svg)](https://github.com/HarshilShah/ActivityRings/blob/master/LICENSE)
[![Contact](https://img.shields.io/badge/contact-%40HarshilShah1910-3a8fc1.svg)](https://twitter.com/HarshilShah1910)

ActivityRings is an attempt to recreate the ring controls in Apple’s Activity app.

This project is a SpriteKit port of [Max Konovalov](https://github.com/maxkonovalov)’s pure UIKit implementation, [MKRingProgressView](https://github.com/maxkonovalov/MKRingProgressView).

![Demo](https://raw.githubusercontent.com/HarshilShah/ActivityRings/master/.assets/demo.gif)
![Demo](https://raw.githubusercontent.com/HarshilShah/ActivityRings/master/Resources/demo.gif)

## Requirements

- Swift 4
- iOS 8
- iOS 8.0+ / macOS 10.10+ / tvOS 9.0+

## Installation

Expand Down
2 changes: 1 addition & 1 deletion Sources/Supporting Files/Info-tvOS.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<string>1.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Sources/Supporting Files/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<string>1.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit d72611a

Please sign in to comment.