diff --git a/Library/PMAlertAction.swift b/Library/PMAlertAction.swift
index 8aa3d70..23bdd55 100644
--- a/Library/PMAlertAction.swift
+++ b/Library/PMAlertAction.swift
@@ -3,7 +3,7 @@
// PMAlertController
//
// Created by Paolo Musolino on 07/05/16.
-// Copyright © 2016 Codeido. All rights reserved.
+// Copyright © 2018 Codeido. All rights reserved.
//
import UIKit
diff --git a/Library/PMAlertController.swift b/Library/PMAlertController.swift
index f2b8e4a..edd26be 100755
--- a/Library/PMAlertController.swift
+++ b/Library/PMAlertController.swift
@@ -3,7 +3,7 @@
// PMAlertController
//
// Created by Paolo Musolino on 07/05/16.
-// Copyright © 2016 Codeido. All rights reserved.
+// Copyright © 2018 Codeido. All rights reserved.
//
import UIKit
diff --git a/PMAlertController.podspec b/PMAlertController.podspec
index 554d23e..8038076 100644
--- a/PMAlertController.podspec
+++ b/PMAlertController.podspec
@@ -1,17 +1,17 @@
Pod::Spec.new do |s|
s.name = "PMAlertController"
- s.version = "3.2.0"
+ s.version = "3.3.0"
s.summary = "PMAlertController is a great and customizable substitute to UIAlertController"
s.description = <<-DESC
PMAlertController is a small library that allows you to substitute the uncustomizable UIAlertController of Apple, with a beautiful and totally customizable alert that you can use in your iOS app. Enjoy!
DESC
- s.homepage = "https://github.com/Codeido/PMAlertController"
- s.screenshots = "https://raw.githubusercontent.com/Codeido/PMAlertController/master/preview_pmalertacontroller.png"
+ s.homepage = "https://github.com/pmusolino/PMAlertController"
+ s.screenshots = "https://raw.githubusercontent.com/pmusolino/PMAlertController/master/preview_pmalertacontroller.png"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Paolo Musolino" => "info@codeido.com" }
s.social_media_url = "http://twitter.com/pmusolino"
s.platform = :ios, "9.0"
- s.source = { :git => "https://github.com/Codeido/PMAlertController.git", :tag => s.version }
+ s.source = { :git => "https://github.com/pmusolino/PMAlertController.git", :tag => s.version }
s.source_files = "Library/**/*"
s.resource_bundles = {
'PMAlertController' => ['Library/Resources/*.png', 'Library/**/*.xib']
diff --git a/PMAlertController/Info.plist b/PMAlertController/Info.plist
index fdab7e3..3d8544d 100644
--- a/PMAlertController/Info.plist
+++ b/PMAlertController/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 3.2.0
+ 3.3.0
CFBundleSignature
????
CFBundleVersion
diff --git a/PMAlertController/PMAlertController.h b/PMAlertController/PMAlertController.h
index d87a398..ac17332 100644
--- a/PMAlertController/PMAlertController.h
+++ b/PMAlertController/PMAlertController.h
@@ -3,7 +3,7 @@
// PMAlertController
//
// Created by Vittorio Monaco on 21/05/16.
-// Copyright © 2016 Codeido. All rights reserved.
+// Copyright © 2018 Codeido. All rights reserved.
//
#import
diff --git a/PMAlertControllerSample/AppDelegate.swift b/PMAlertControllerSample/AppDelegate.swift
index 5e9643f..76914cb 100644
--- a/PMAlertControllerSample/AppDelegate.swift
+++ b/PMAlertControllerSample/AppDelegate.swift
@@ -3,7 +3,7 @@
// PMAlertController
//
// Created by Paolo Musolino on 07/05/16.
-// Copyright © 2016 Codeido. All rights reserved.
+// Copyright © 2018 Codeido. All rights reserved.
//
import UIKit
diff --git a/PMAlertControllerSample/ViewController.swift b/PMAlertControllerSample/ViewController.swift
index 61ca0e8..484ac12 100755
--- a/PMAlertControllerSample/ViewController.swift
+++ b/PMAlertControllerSample/ViewController.swift
@@ -3,7 +3,7 @@
// PMAlertController
//
// Created by Paolo Musolino on 07/05/16.
-// Copyright © 2016 Codeido. All rights reserved.
+// Copyright © 2018 Codeido. All rights reserved.
//
import UIKit
diff --git a/README.md b/README.md
index 46b8513..fcea8fc 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,10 @@
-
+
[![Language](https://img.shields.io/badge/Swift-3%20%26%204-orange.svg)]()
- [![GitHub license](https://img.shields.io/cocoapods/l/PMAlertController.svg)](https://github.com/Codeido/PMAlertController/blob/master/LICENSE)
+ [![GitHub license](https://img.shields.io/cocoapods/l/PMAlertController.svg)](https://github.com/pmusolino/PMAlertController/blob/master/LICENSE)
[![Pod version](https://img.shields.io/cocoapods/v/PMAlertController.svg?style=flat)](https://cocoapods.org/pods/PMAlertController)
[![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-yellow.svg)](https://github.com/Carthage/Carthage)
[![Downloads](https://img.shields.io/cocoapods/dt/PMAlertController.svg)](https://cocoapods.org/pods/PMAlertController)
@@ -13,7 +13,7 @@
PMAlertController is a small library that allows you to substitute Apple's uncustomizable `UIAlertController`, with a beautiful and totally customizable alert that you can use in your iOS app. Enjoy!
-
+
## Features
@@ -83,7 +83,7 @@ $ brew install carthage
To integrate PMAlertController into your Xcode project using Carthage, specify it in your `Cartfile`:
```ogdl
-github "Codeido/PMAlertController"
+github "pmusolino/PMAlertController"
```
Run `carthage update` to build the framework and drag the built `PMAlertController.framework` into your Xcode project.
@@ -127,13 +127,13 @@ self.present(alertVC, animated: true, completion: nil)
## Swift compatibility
-- If you use **Swift 4.0 or higher**, you can use the [latest release](https://github.com/Codeido/PMAlertController/releases).
+- If you use **Swift 4.0 or higher**, you can use the [latest release](https://github.com/pmusolino/PMAlertController/releases).
-- If you use **Swift 3**, you can use the [release 2.1.3](https://github.com/Codeido/PMAlertController/releases/tag/2.1.3).
+- If you use **Swift 3**, you can use the [release 2.1.3](https://github.com/pmusolino/PMAlertController/releases/tag/2.1.3).
-- If you use **Swift 2.3**, you can use the [release 1.1.0](https://github.com/Codeido/PMAlertController/releases/tag/1.1.0)
+- If you use **Swift 2.3**, you can use the [release 1.1.0](https://github.com/pmusolino/PMAlertController/releases/tag/1.1.0)
-- If you use **Swift 2.2**, you can use the [release 1.0.5](https://github.com/Codeido/PMAlertController/releases/tag/1.0.5)
+- If you use **Swift 2.2**, you can use the [release 1.0.5](https://github.com/pmusolino/PMAlertController/releases/tag/1.0.5)
## Contributing
@@ -146,7 +146,7 @@ self.present(alertVC, animated: true, completion: nil)
## Acknowledgements
-Made with ❤️ by [Paolo Musolino](https://github.com/Codeido).
+Made with ❤️ by [Paolo Musolino](https://github.com/pmusolino).
The design is inspired by the [Musement App](https://itunes.apple.com/app/musement-tours-attractions/id828471190). The flag icon on the demo app is by [Freepik](http://freepik.com).