Merge branch 'dev'
diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index 36140fd..b72177c 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -38,3 +38,8 @@
 ### 0.2.3 (Oct 9, 2013)
 * CB-4720: fixed incorrect feature tag in plugin.xml for wp
 * [CB-4915] Incremented plugin version on dev branch.
+
+ ### 0.2.4 (Oct 28, 2013)
+* CB-5199 - ios - Media Capture - UI issues under iOS 7
+* CB-5128: added repo + issue tag to plugin.xml for media capture plugin
+* [CB-5010] Incremented plugin version on dev branch.
diff --git a/plugin.xml b/plugin.xml
index 1a17b1b..cd22f66 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -3,12 +3,14 @@
 <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
 xmlns:android="http://schemas.android.com/apk/res/android"
            id="org.apache.cordova.media-capture"
-      version="0.2.3">
+      version="0.2.4">
     <name>Capture</name>
 
     <description>Cordova Media Capture Plugin</description>
     <license>Apache 2.0</license>
     <keywords>cordova,media,capture</keywords>
+    <repo>https://git-wip-us.apache.org/repos/asf/cordova-plugin-media-capture.git</repo>
+    <issue>https://issues.apache.org/jira/browse/CB/component/12320646</issue>
     
     <dependency id="org.apache.cordova.file" />
 
diff --git a/src/ios/CDVCapture.m b/src/ios/CDVCapture.m
index 3df4217..39219b7 100644
--- a/src/ios/CDVCapture.m
+++ b/src/ios/CDVCapture.m
@@ -45,6 +45,23 @@
     return UIAccessibilityTraitNone;
 }
 
+- (BOOL)prefersStatusBarHidden {
+    return YES;
+}
+    
+- (UIViewController*)childViewControllerForStatusBarHidden {
+    return nil;
+}
+    
+- (void)viewWillAppear:(BOOL)animated {
+    SEL sel = NSSelectorFromString(@"setNeedsStatusBarAppearanceUpdate");
+    if ([self respondsToSelector:sel]) {
+        [self performSelector:sel withObject:nil afterDelay:0];
+    }
+    
+    [super viewWillAppear:animated];
+}
+
 @end
 
 @implementation CDVCapture
@@ -580,6 +597,10 @@
 
 - (void)loadView
 {
+	if ([self respondsToSelector:@selector(edgesForExtendedLayout)]) {
+        self.edgesForExtendedLayout = UIRectEdgeNone;
+    }
+    
     // create view and display
     CGRect viewRect = [[UIScreen mainScreen] applicationFrame];
     UIView* tmp = [[UIView alloc] initWithFrame:viewRect];