From f654c13b766afa2d33f95814745f2dfe627eb3b3 Mon Sep 17 00:00:00 2001 From: Cezary Wojcik Date: Sat, 21 Sep 2013 20:14:23 -0700 Subject: [PATCH] 1.2.3 --- CWPopup.podspec | 2 +- CWPopup/UIViewController+CWPopup.m | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CWPopup.podspec b/CWPopup.podspec index f2f7d99..26654f4 100644 --- a/CWPopup.podspec +++ b/CWPopup.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "CWPopup" - s.version = "1.2.2" + s.version = "1.2.3" s.summary = "A category on UIViewController to present a popup view controller." s.description = "CWPopup adds a category on UIViewController to present a popup view controller. It offers an animated and non-animated presentation of the popup, similarly to presenting a modal controller or pushing a view controller." s.homepage = "http://github.com/cezarywojcik/CWPopup" diff --git a/CWPopup/UIViewController+CWPopup.m b/CWPopup/UIViewController+CWPopup.m index 5137c1b..3fe00d6 100644 --- a/CWPopup/UIViewController+CWPopup.m +++ b/CWPopup/UIViewController+CWPopup.m @@ -188,7 +188,7 @@ - (UIImage *)getScreenImage { } - (UIImage *)getBlurredImage:(UIImage *)imageToBlur { - if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0 &&) { + if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) { return [imageToBlur applyBlurWithRadius:10.0f tintColor:[UIColor clearColor] saturationDeltaFactor:1.0 maskImage:nil]; } return imageToBlur; diff --git a/README.md b/README.md index 152a2fe..8b3a3cd 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ CWPopup is a category on UIViewController that allows you to easily make popup v ### [CocoaPods](http://www.cocoapods.org) -`pod 'CWPopup', '~> 1.2.2'` +`pod 'CWPopup', '~> 1.2.3'` ### Manual