Skip to content

Commit

Permalink
Update to 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sberrevoets committed Jun 4, 2014
1 parent 23e0912 commit 95d8b64
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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:**
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion SDCAlertView.podspec
Original file line number Diff line number Diff line change
@@ -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' => '[email protected]' }
s.summary = 'SDCAlertView is a UIAlertView clone with added functionality including a contentView property'
Expand Down

0 comments on commit 95d8b64

Please sign in to comment.