forked from public/cordova-plugin-camera
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e0176cc61e | |||
| 703f6c68d8 | |||
| 4e6cf5cc2e | |||
| eab4822ae9 | |||
| a600de41eb |
@@ -41,3 +41,9 @@
|
|||||||
* CB-4633: We really should close cursors. It's just the right thing to do.
|
* CB-4633: We really should close cursors. It's just the right thing to do.
|
||||||
* No longer causes a stack trace, but it doesn't cause the error to be called.
|
* No longer causes a stack trace, but it doesn't cause the error to be called.
|
||||||
* CB-4889 renaming org.apache.cordova.core.camera to org.apache.cordova.camera
|
* CB-4889 renaming org.apache.cordova.core.camera to org.apache.cordova.camera
|
||||||
|
|
||||||
|
### 0.2.4 (Oct 28, 2013)
|
||||||
|
* CB-5128: added repo + issue tag to plugin.xml for camera plugin
|
||||||
|
* CB-4958 - iOS - Camera plugin should not show the status bar
|
||||||
|
* [CB-4919] updated plugin.xml for FxOS
|
||||||
|
* [CB-4915] Incremented plugin version on dev branch.
|
||||||
+7
-2
@@ -3,11 +3,13 @@
|
|||||||
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
id="org.apache.cordova.camera"
|
id="org.apache.cordova.camera"
|
||||||
version="0.2.3">
|
version="0.2.4">
|
||||||
<name>Camera</name>
|
<name>Camera</name>
|
||||||
<description>Cordova Camera Plugin</description>
|
<description>Cordova Camera Plugin</description>
|
||||||
<license>Apache 2.0</license>
|
<license>Apache 2.0</license>
|
||||||
<keywords>cordova,camera</keywords>
|
<keywords>cordova,camera</keywords>
|
||||||
|
<repo>https://git-wip-us.apache.org/repos/asf/cordova-plugin-camera.git</repo>
|
||||||
|
<issue>https://issues.apache.org/jira/browse/CB/component/12320645</issue>
|
||||||
|
|
||||||
<js-module src="www/CameraConstants.js" name="Camera">
|
<js-module src="www/CameraConstants.js" name="Camera">
|
||||||
<clobbers target="Camera" />
|
<clobbers target="Camera" />
|
||||||
@@ -144,7 +146,10 @@
|
|||||||
<feature name="Camera">
|
<feature name="Camera">
|
||||||
<param name="firefoxos-package" value="Camera" />
|
<param name="firefoxos-package" value="Camera" />
|
||||||
</feature>
|
</feature>
|
||||||
</config-file>
|
</config-file>
|
||||||
|
<js-module src="www/CameraPopoverHandle.js" name="CameraPopoverHandle">
|
||||||
|
<clobbers target="CameraPopoverHandle" />
|
||||||
|
</js-module>
|
||||||
<js-module src="src/firefoxos/CameraProxy.js" name="CameraProxy">
|
<js-module src="src/firefoxos/CameraProxy.js" name="CameraProxy">
|
||||||
<runs />
|
<runs />
|
||||||
</js-module>
|
</js-module>
|
||||||
|
|||||||
@@ -736,4 +736,21 @@ static NSSet* org_apache_cordova_validArrowDirections;
|
|||||||
@synthesize webView;
|
@synthesize webView;
|
||||||
@synthesize popoverSupported;
|
@synthesize popoverSupported;
|
||||||
|
|
||||||
|
- (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
|
@end
|
||||||
|
|||||||
Reference in New Issue
Block a user