Skip to content

Commit

Permalink
Version 2.0 Completed
Browse files Browse the repository at this point in the history
  • Loading branch information
ljw980105 committed Dec 4, 2018
1 parent 78bb89f commit 155e08e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

This document lists changes made to this project for each new version.

## 2.0
* Added the feature to center the activity indicator in the superview using autolayout constraints.

## 1.2.1
* Fixed an error that prevented the framework to build.

Expand Down
2 changes: 1 addition & 1 deletion JLActivityIndicator.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'JLActivityIndicator'
s.version = '1.2.1'
s.version = '2.0'
s.summary = 'An iOS Activity Indicator Capable of Drawing Custom Paths!'
s.description = 'This activity indicator allows you to supply any image or UIBezierPath to the indicator, creating amazing loading effects!'

Expand Down
2 changes: 1 addition & 1 deletion JLActivityIndicator/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.2</string>
<string>2.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
</dict>
Expand Down
3 changes: 2 additions & 1 deletion JLActivityIndicator/JLUtilities.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ import Foundation
class JLUtilities {

/**
* Helper method to center a subview inside a superview.
* Helper method to center a subview inside a superview through the use of
* Autolayout constraints.
* - parameter parentview: The parent view to center the `subivew` inside.
* - parameter subview: The subvicew to be centered inside the `parentview`.
*/
Expand Down
2 changes: 1 addition & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A replacement for the build-in `UIActivityIndicator` on iOS. Supply a custom ima

### Cocoapods

Cocoapods is a dependency manager for Cocoa projects. Make your to install it before executing the following:
Cocoapods is a dependency manager for Cocoa projects. Make sure to install it before executing the following:

To install `JLActivityIndicator`, add the following to your `Podfile`:

Expand Down

0 comments on commit 155e08e

Please sign in to comment.