Skip to content

Commit 930d2ed

Browse files
Roland MoersRoland Moers
authored andcommitted
Release version 1.3.0
1 parent e4bf6b5 commit 930d2ed

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ RMActionController adheres to [Semantic Versioning](http://semver.org/).
55

66
---
77

8+
## [1.3.0](https://github.com/CooperRS/RMActionController/releases/tag/1.3.0)
9+
10+
* Add new style which mimics the iOS 11 App Store buy sheet
11+
* Add option to disable blur effects for actions
12+
* Allows to show titles and images in their original color
13+
814
## [1.2.1](https://github.com/CooperRS/RMActionController/releases/tag/1.2.1)
915

1016
* Fix RMActionController.podspec
@@ -46,4 +52,4 @@ RMActionController adheres to [Semantic Versioning](http://semver.org/).
4652

4753
## [1.0.0](https://github.com/CooperRS/RMActionController/releases/tag/1.0.0)
4854

49-
* Initial Release
55+
* Initial Release

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This framework allows you to present just any view as an action sheet. In additi
2626
## Installation (CocoaPods)
2727
```ruby
2828
platform :ios, '8.0'
29-
pod "RMActionController", "~> 1.2.1"
29+
pod "RMActionController", "~> 1.3.0"
3030
```
3131

3232
## Usage

RMActionController.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "RMActionController"
4-
s.version = "1.2.1"
4+
s.version = "1.3.0"
55
s.platform = :ios, '8.0'
66
s.summary = "This is an iOS control for presenting any UIView in an UIAlertController like manner"
77
s.description = "This framework allows you to present just any view as an action sheet. In addition, it allows you to add actions arround the presented view which behave like a button and can be tapped by the user. The result looks very much like an UIActionSheet or UIAlertController with a special UIView and some UIActions attached."
@@ -12,7 +12,7 @@ Pod::Spec.new do |s|
1212
s.license = { :type => 'MIT', :file => 'LICENSE' }
1313
s.author = { "Roland Moers" => "[email protected]" }
1414

15-
s.source = { :git => "https://github.com/CooperRS/RMActionController.git", :tag => "1.2.1" }
15+
s.source = { :git => "https://github.com/CooperRS/RMActionController.git", :tag => "1.3.0" }
1616
s.source_files = 'RMActionController/**/*.{h,m}'
1717
s.public_header_files = 'RMActionController/RMActionController.h', 'RMActionController/Actions/RMAction.h', 'RMActionController/Actions/RMImageAction.h', 'RMActionController/Grouping Actions/RMGroupedAction.h', 'RMActionController/Grouping Actions/RMScrollableGroupedAction.h'
1818

0 commit comments

Comments
 (0)