From 2aad5ee7e599b0b4654b3f644be2c7d2197af34f Mon Sep 17 00:00:00 2001 From: Kevin Harwood Date: Wed, 15 May 2013 13:17:26 -0500 Subject: [PATCH] Updating materials for 0.1.0 release --- CHANGELOG.md | 13 +++++++++++-- MMDrawerController.podspec | 4 ++-- README.md | 6 +++++- 3 files changed, 18 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3702d0c..b23209a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,18 @@ #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 @@ -10,5 +20,4 @@ * **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 \ No newline at end of file diff --git a/MMDrawerController.podspec b/MMDrawerController.podspec index 0878dafa..b34f92de 100644 --- a/MMDrawerController.podspec +++ b/MMDrawerController.podspec @@ -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" => "kevin.harwood@mutualmobile.com" } - 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", diff --git a/README.md b/README.md index 2682be99..90e6d008 100644 --- a/README.md +++ b/README.md @@ -5,12 +5,16 @@ +--- +##Documentation +Official appledoc documentation can be found at [CocoaDocs](http://cocoadocs.org/docsets/MMDrawerController/). + --- ##Installing MMDrawerController You can install MMDrawerController in your project by using [CocoaPods](https://github.com/cocoapods/cocoapods): ```Ruby -pod 'MMDrawerController', '~> 0.0.2' +pod 'MMDrawerController', '~> 0.1.0' ``` ---