-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating materials for 0.1.0 release
- Loading branch information
Showing
3 changed files
with
18 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,23 @@ | ||
#MMDrawerController Changelog | ||
|
||
##0.0.2 (Thursday, May 9th, 2013) | ||
##[0.1.0](https://github.com/mutualmobile/MMDrawerController/issues?milestone=3&page=1&state=closed) (Wednesday, May 15th, 2013) | ||
###New | ||
* `MMDrawerController` now properly supports full view controller containment. The drawer view controllers will properly receive their view appearance methods at the correct time now, including every time they are about to become visible. Please note that `mm_drawerWillApear` has now been deprecated. More notes below. | ||
|
||
###Fixed | ||
* **FIXED** an issue([#9](https://github.com/mutualmobile/MMDrawerController/issues/9)) where the drawer could bounce, even if no drawer was set. | ||
* **FIXED** an issue([#14](https://github.com/mutualmobile/MMDrawerController/issues/14)) where open center interaction state could be incorrectly applied if a new view controller is pushed onto a center view controller when a drawer is open. | ||
|
||
###Deprecated | ||
* Support for the `mm_drawerWillAppear` method in the `UIViewController+MMDrawerController` category is no longer available. Please move any logic contained within this method to `viewWillAppear:` in your drawer view controllers. This method will no longer be called going forward. | ||
|
||
##[0.0.2](https://github.com/mutualmobile/MMDrawerController/issues?milestone=2&state=closed) (Thursday, May 9th, 2013) | ||
###New | ||
* Improved the example to allow you to disable the left or right side drawer controller. (Kevin Harwood) | ||
|
||
###Fixed | ||
* **Fixed** an issue([#6](https://github.com/mutualmobile/MMDrawerController/issues/1)) where hidden side drawer controllers received touches if the center view controller was set to userInteraction NO. (Kevin Harwood) | ||
* **Fixed** an issue([#1](https://github.com/mutualmobile/MMDrawerController/issues/1)) where `shouldStretchDrawer` caused drawer controllers with only one side drawer to stretch in the wrong direction (Lars Anderson, Kevin Harwood) | ||
|
||
##0.0.1 (Wednesday, May 8th, 2013) | ||
|
||
* Initial Library Release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "MMDrawerController" | ||
s.version = "0.0.2" | ||
s.version = "0.1.0" | ||
s.summary = "A lightweight, easy-to-use side drawer navigation controller." | ||
s.homepage = "https://github.com/mutualmobile/MMDrawerController" | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { "Kevin Harwood" => "[email protected]" } | ||
s.source = { :git => "https://github.com/mutualmobile/MMDrawerController.git", :tag => "0.0.2" } | ||
s.source = { :git => "https://github.com/mutualmobile/MMDrawerController.git", :tag => "0.1.0" } | ||
s.platform = :ios, '5.0' | ||
s.requires_arc = true | ||
s.screenshots = [ "http://mutualmobile.github.io/MMDrawerController/ExampleImages/example1.png", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters