Skip to content
This repository was archived by the owner on Apr 27, 2019. It is now read-only.

Commit 0d910d1

Browse files
author
Carson Perrotti
committed
Version bump
1 parent 61a98fd commit 0d910d1

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

CNPPopupController.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "CNPPopupController"
3-
s.version = "0.3.2"
3+
s.version = "0.3.3"
44
s.summary = "A versatile popup for iOS"
55

66
s.description = <<-DESC
@@ -19,7 +19,7 @@ Pod::Spec.new do |s|
1919
s.author = "Carson Perrotti"
2020
s.social_media_url = "http://twitter.com/carsonp"
2121
s.platform = :ios, "6.0"
22-
s.source = { :git => "https://github.com/carsonperrotti/CNPPopupController.git", :tag => "0.3.2" }
22+
s.source = { :git => "https://github.com/carsonperrotti/CNPPopupController.git", :tag => "0.3.3" }
2323
s.source_files = "CNPPopupController", "CNPPopupController/*.{h,m}"
2424
s.framework = "UIKit"
2525
s.requires_arc = true

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
CNPPopupController is a simple and versatile class for presenting a custom popup in a variety of fashions. It includes a many options for controlling how your popup appears and behaves.
1010

11-
Please feel free to contribute to this project, open issues, make suggestions and submit pull-requests. If you use this project in your app, let me know. I'd love to see what you do with it.
11+
Please feel free to contribute to this project, open issues, make suggestions and submit pull-requests. If you use this project in your app, let me know. I'd love to see what you do with it.
1212

1313
<p align="center"><img src="https://raw.githubusercontent.com/carsonperrotti/CNPPopupController/master/CNPPopupControllerExample/CNPPopupController.gif"/></p>
1414

@@ -30,7 +30,7 @@ Create a popup with custom animations and behaviors. Customizations can also be
3030

3131

3232
`contents` only accepts an array of `UIView` objects.
33-
33+
3434
## Presentation
3535

3636
`- (void)presentPopupControllerAnimated:(BOOL)flag;`
@@ -39,7 +39,7 @@ Create a popup with custom animations and behaviors. Customizations can also be
3939

4040
## Customization
4141

42-
A `CNPPopupTheme` instance can be created and assigned to the `theme` property of a `CNPPopupController` instance.
42+
A `CNPPopupTheme` instance can be created and assigned to the `theme` property of a `CNPPopupController` instance.
4343

4444
`@property (nonatomic, strong) UIColor *backgroundColor;`
4545

@@ -75,9 +75,13 @@ CNPPopupController was created by [Carson Perrotti](http://carsonperrotti.com)
7575

7676
##Version History
7777

78+
**September 15, 2016 v0.3.3**
79+
- Content layout fixes
80+
- Better swift support
81+
7882
**July 14, 2016 v0.3.2**
7983
- Fixes an issue where content would not be perfectly centred.
80-
- Project compatibility fixes to prevent duplicate symbols` errors.
84+
- Project compatibility fixes to prevent `duplicate symbols` errors.
8185
- Added property to adjust animation transition duration.
8286

8387
**September 13, 2015 v0.3.1**
@@ -87,14 +91,11 @@ CNPPopupController was created by [Carson Perrotti](http://carsonperrotti.com)
8791
- Support for iOS 9 and a few bug fixes.
8892

8993
**August 30, 2015 v0.2.3**
90-
- Lower minimum required OS version to 6.0, since it works there anyway.
94+
- Lower minimum required OS version to 6.0, since it works there anyway.
9195

9296
**August 16, 2015 v0.2.2**
9397
- Bug fix for centering the popup above the keyboard when presented. Thanks to [Nicholas](https://github.com/nicholas) for the proactive help on this one.
9498

95-
**June 24th, 2015 v0.2.1**
96-
- Bug fix for dismissing on background mask touch.
97-
9899
**June 14th, 2015 v0.2.0**
99100
- Completely rewritten. *Started from the bottom, now we're here.*
100101
- There are some minor API changes in v0.2.0. I tried to keep it as close to the last version as possible. See the example project if you need some help getting it set up.

0 commit comments

Comments
 (0)