Skip to content

Commit edd7b0d

Browse files
committed
Updated docs for 0.5.2
1 parent 3c95b1c commit edd7b0d

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
11
#MMDrawerController Changelog
2+
##0.5.2 (Friday, January 31, 2014)
3+
###Fixed
4+
* **FIXED** a Clang Analyzer issue ([#120](https://github.com/mutualmobile/MMDrawerController/pull/120)) found in Xcode 5. (klundberg)
5+
* **FIXED** an issue ([#124](https://github.com/mutualmobile/MMDrawerController/pull/124)) where the navigation bar gestures would not work if a toolbar was displayed in the center view controller. (tbveralrud)
6+
* **FIXED** an issue ([#152](https://github.com/mutualmobile/MMDrawerController/pull/152)) where two childControllerContainers view could be init'ed and added to the view hierarchy. (Kevin Harwood, JonasGessner)
7+
* **FIXED** an issue ([#163](https://github.com/mutualmobile/MMDrawerController/pull/163)) where the navigation bar touch areas were smaller than they were supposed to be. (antonholmquist)
8+
* **FIXED** an issue ([#177](https://github.com/mutualmobile/MMDrawerController/pull/177)) where disabling the shadow caused a performance issue in iOS 7. (Lars Anderson)
9+
* **FIXED** an issue ([#211](https://github.com/mutualmobile/MMDrawerController/pull/211)) where the side drawer may become hidden if you try to interact with it during an animation. (Kevin Harwood, antonholmquist)
10+
* **FIXED** an issue ([#212](https://github.com/mutualmobile/MMDrawerController/pull/212)) where the view controller appearance methods were not correctly send to the center view controller if you exchanged it while neither drawer was open. (Kevin Harwood, Club15CC)
11+
12+
###New
13+
* **Added Highlighting for iOS 7 Drawer Button Item** - Now supporting button highlighting. Also stream lined code path for iOS 6 menu button. ([#199](https://github.com/mutualmobile/MMDrawerController/pull/119)) (TomSwift)
14+
215

316
##0.5.1 (Wednesday, September 18, 2013)
417
###Fixed

MMDrawerController.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Pod::Spec.new do |s|
22
s.name = "MMDrawerController"
3-
s.version = "0.5.1"
3+
s.version = "0.5.2"
44
s.summary = "A lightweight, easy-to-use side drawer navigation controller."
55
s.homepage = "https://github.com/mutualmobile/MMDrawerController"
66
s.license = { :type => 'MIT', :file => 'LICENSE' }
77
s.author = { "Kevin Harwood" => "[email protected]" }
8-
s.source = { :git => "https://github.com/mutualmobile/MMDrawerController.git", :tag => "0.5.1" }
8+
s.source = { :git => "https://github.com/mutualmobile/MMDrawerController.git", :tag => "0.5.2" }
99
s.platform = :ios, '5.0'
1010
s.requires_arc = true
1111
s.screenshots = [ "http://mutualmobile.github.io/MMDrawerController/ExampleImages/example1.png",

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Official appledoc documentation can be found at [CocoaDocs](http://cocoadocs.org
1616
You can install MMDrawerController in your project by using [CocoaPods](https://github.com/cocoapods/cocoapods):
1717

1818
```Ruby
19-
pod 'MMDrawerController', '~> 0.4.0'
19+
pod 'MMDrawerController', '~> 0.5.2'
2020
```
2121

2222
---

0 commit comments

Comments
 (0)