diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e8a38ac..4911de92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # CHANGELOG +## 1.4 + +**What's New:** + - Added the ability to position a two-button alert vertically as opposed to horizontally (#29) + - Added `attributedTitle` and `attributedMessage` properties (#30) + +**Bug Fixes:** + - Auto-layout doesn't complain anymore when using `[[SDCAlertView alloc] init]` + - Fixes a bug that would not show correct button titles in certain alert configurations (#32) + - Instead of clipping button text, it now reduces the size of text on buttons appropriately (#33) + ## 1.3 **What's New:** diff --git a/README.md b/README.md index cda2858c..d2228621 100644 --- a/README.md +++ b/README.md @@ -123,16 +123,16 @@ Unfortunately, there are a few things that can't or won't be duplicated: - `UITextField` placeholders in different languages. "Login" and "Password" are entered as localized strings, but they aren't actually translated. - Some behavior is purposely not ported from `UIAlertView`. These cases are discussed in SDCAlertView.h. -## New in 1.3 +## New in 1.4 **What's New:** - - The `SDCAlertViewTransitioning` protocol allows users to customize alert transitions and behavior - - `SDCAlertView` now supports `tintColor` for buttons and `contentView` + - Added the ability to position a two-button alert vertically as opposed to horizontally + - Added `attributedTitle` and `attributedMessage` properties **Bug Fixes:** - - Fixes an issue where the status bar style would not be preserved if it was set to `UIStatusBarStyleLightContent` (#26 & #27) - - Fixes a bug that causes the app to lock up due to a race condition (#28) - - Adding subviews to `contentView` won't have any animation-related side effects anymore (see #25) + - Auto-layout doesn't complain anymore when using `[[SDCAlertView alloc] init]` + - Fixes a bug that would not show correct button titles in certain alert configurations + - Instead of clipping button text, it now reduces the size of text on buttons appropriately ## Support I'm pretty active on [Stack Overflow](http://stackoverflow.com/users/751268/scott-berrevoets), so please use that if you have any questions. You can also use [Twitter](http://twitter.com/ScottBerrevoets) to contact me directly. diff --git a/SDCAlertView.podspec b/SDCAlertView.podspec index 5e45f568..1608a10c 100644 --- a/SDCAlertView.podspec +++ b/SDCAlertView.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'SDCAlertView' - s.version = '1.3' + s.version = '1.4' s.license = { :type => 'MIT', :file => 'LICENSE' } s.authors = { 'Scott Berrevoets' => 's.berrevoets@me.com' } s.summary = 'SDCAlertView is a UIAlertView clone with added functionality including a contentView property'