Skip to content

Commit

Permalink
Version bump to 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lazerwalker committed May 11, 2014
1 parent 9bfecd6 commit b05e77b
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 2 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
## 0.6.0

###### Enhancements
* IntentKit now supports in-app modal view controllers as actions!
INKWebView, INKTweetSheet, and INKMailSheet exist as default options for
INKBrowserHandler, INKTwitterHandler, and INKMailHandler, respectively.
This can be disabled by setting a handler's `disableInAppOption` property to YES.

* As a result, the default behavior for handlers is to not show the respective
first-party app when an in-app option exists (namely, Safari and Mail.app).
You can forcibly show them by setting a handler's `showFirstPartyApp` to YES.

* IntentKit can now intelligently guess which view controller to present itself on.
Instead of `presentModallyInViewController:`, you can now show a presenter action
simply by calling `presentModally`. See the README for examples.
(The old method still exists for backwards compatibility and for when detection fails.)

* Application plists now follow Mustache templating conventions for interpolated
values. Variable names encased in {{double curly braces}} will be HTML-escaped,
whereas {{{triple curly braces}}} will be used as raw values.

* Handlers can explicitly disallow showing the 'Remember my choice' toggle

###### Bugfixes
* Fixed an issue causing browser fallbacks to not fire.

###### Refactors
* Running `rake test` on the command line causes specs to be run using `xcpretty`,
resulting in better output.

## 0.5.2

###### Enhancements
Expand Down
4 changes: 2 additions & 2 deletions IntentKit.podspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Pod::Spec.new do |s|
s.name = 'IntentKit'
s.version = '0.5.2'
s.version = '0.6.0'
s.license = { :type => 'MIT', :file => "LICENSE" }
s.summary = "An easier way to handle third-party URL schemes in iOS apps."
s.homepage = 'https://github.com/intentkit/IntentKit'
s.authors = { 'Mike Walker' => '[email protected]' }
s.source = { :git => 'https://github.com/intentkit/IntentKit.git', :tag => "0.5.2" }
s.source = { :git => 'https://github.com/intentkit/IntentKit.git', :tag => "0.6.0" }
s.requires_arc = true
s.platform = :ios, '7.0'

Expand Down

0 comments on commit b05e77b

Please sign in to comment.