diff --git a/CHANGELOG.md b/CHANGELOG.md index c1130e1..181d8a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,9 @@ # MSSlidingPanelController Changelog +## [1.3.6](https://github.com/SebastienMichoy/MSSlidingPanelController/releases/tag/1.3.6) (Thursday, August 6th, 2015) +### Modify +- License headers and license file updated. +- The status bar is not user interactive anymore. Thanks to [@IvanThomasFr](https://github.com/IvanThomasFr) for his contribution. + ## [1.3.5](https://github.com/SebastienMichoy/MSSlidingPanelController/releases/tag/1.3.5) (Sunday, February 8th, 2015) ### Modify - The README image is loaded from a new location (branch `assets`). diff --git a/MSSlidingPanelController.podspec b/MSSlidingPanelController.podspec index 737a612..b5a5b1a 100644 --- a/MSSlidingPanelController.podspec +++ b/MSSlidingPanelController.podspec @@ -1,13 +1,13 @@ Pod::Spec.new do |spec| spec.name = "MSSlidingPanelController" - spec.version = "1.3.5" + spec.version = "1.3.6" spec.platform = :ios spec.ios.deployment_target = "7.0" spec.requires_arc = true spec.ios.framework = "UIKit" - spec.source = { :git => "https://github.com/SebastienMichoy/MSSlidingPanelController.git", :tag => "1.3.5" } + spec.source = { :git => "https://github.com/SebastienMichoy/MSSlidingPanelController.git", :tag => "1.3.6" } spec.source_files = 'MSSlidingPanelController/*.{h,m}' spec.public_header_files = 'MSSlidingPanelController/*.h' spec.summary = "Integrate easily a sliding panel controller mechanism in your project!" diff --git a/MSSlidingPanelController/MSSlidingPanelController.m b/MSSlidingPanelController/MSSlidingPanelController.m index 99d7fe3..7c22f10 100644 --- a/MSSlidingPanelController/MSSlidingPanelController.m +++ b/MSSlidingPanelController/MSSlidingPanelController.m @@ -616,7 +616,7 @@ - (void)loadView [self setStatusBarView:[[UIView alloc] initWithFrame:CGRectMake(0, 0, windowSize.width, 20)]]; [[self statusBarView] setBackgroundColor:[self centerViewStatusBarColor]]; [[self statusBarView] setAutoresizingMask:(UIViewAutoresizingFlexibleWidth)]; - [self statusBarView].userInteractionEnabled = NO; + [[self statusBarView] setUserInteractionEnabled:NO]; [self setCenterView:[[MSSlidingPanelCenterView alloc] initWithFrame:CGRectMake(0, 0, windowSize.width, windowSize.height)]]; [[self centerView] setSlidingPanelController:self];