diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1594d12..f7dbcab 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,3 +1,24 @@ + + # Contributing to Apache Cordova Anyone can contribute to Cordova. And we need your contributions. diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 836bc27..9cb208a 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -80,3 +80,23 @@ * CB-6212: [iOS] fix warnings compiled under arm64 64-bit * [BlackBerry10] Add rim xml namespaces declaration * Add NOTICE file + +### 0.3.0 (Jun 05, 2014) +* CB-2083 documented saveToPhotoAlbum quirk on WP8 +* CB-5895 documented saveToPhotoAlbum quirk on WP8 +* Remove deprecated symbols for iOS < 6 +* documentation translation: cordova-plugin-camera +* Lisa testing pulling in plugins for plugin: cordova-plugin-camera +* Lisa testing pulling in plugins for plugin: cordova-plugin-camera +* Lisa testing pulling in plugins for plugin: cordova-plugin-camera +* Lisa testing pulling in plugins for plugin: cordova-plugin-camera +* ubuntu: use application directory for images +* CB-6795 Add license +* Little fix in code formatting +* CB-6613 Use WinJS functionality to get base64-encoded content of image instead of File plugin functionality +* CB-6612 camera.getPicture now always returns encoded JPEG image +* Removed invalid note from CB-5398 +* CB-6576 - Returns a specific error message when app has no access to library. +* CB-6491 add CONTRIBUTING.md +* CB-6546 android: Fix a couple bugs with allowEdit pull request +* CB-6546 android: Add support for allowEdit Camera option diff --git a/doc/index.md b/doc/index.md index e892620..66f0a19 100644 --- a/doc/index.md +++ b/doc/index.md @@ -291,6 +291,9 @@ Optional parameters to customize the camera settings. - Ignores the `cameraDirection` parameter. +- Ignores the `saveToPhotoAlbum` parameter. IMPORTANT: All images taken with the wp7/8 cordova camera API are always copied to the phone's camera roll. Depending on the user's settings, this could also mean the image is auto-uploaded to their OneDrive. This could potentially mean the image is available to a wider audience than your app intended. If this a blocker for your application, you will need to implement the CameraCaptureTask as documented on msdn : [http://msdn.microsoft.com/en-us/library/windowsphone/develop/hh394006.aspx](http://msdn.microsoft.com/en-us/library/windowsphone/develop/hh394006.aspx) +You may also comment or up-vote the related issue in the [issue tracker](https://issues.apache.org/jira/browse/CB-2083) + - Ignores the `mediaType` property of `cameraOptions` as the Windows Phone SDK does not provide a way to choose videos from PHOTOLIBRARY. diff --git a/plugin.xml b/plugin.xml index a51f172..e15de70 100644 --- a/plugin.xml +++ b/plugin.xml @@ -22,7 +22,7 @@ xmlns:android="http://schemas.android.com/apk/res/android" xmlns:rim="http://www.blackberry.com/ns/widgets" id="org.apache.cordova.camera" - version="0.2.10-dev"> + version="0.3.1-dev"> Camera Cordova Camera Plugin Apache 2.0 diff --git a/src/ios/CDVCamera.m b/src/ios/CDVCamera.m index 8c11e60..ab99297 100644 --- a/src/ios/CDVCamera.m +++ b/src/ios/CDVCamera.m @@ -151,13 +151,7 @@ static NSSet* org_apache_cordova_validArrowDirections; NSDictionary* options = [command.arguments objectAtIndex:10 withDefault:nil]; [self displayPopover:options]; } else { - SEL selector = NSSelectorFromString(@"presentViewController:animated:completion:"); - if ([self.viewController respondsToSelector:selector]) { - [self.viewController presentViewController:cameraPicker animated:YES completion:nil]; - } else { - // deprecated as of iOS >= 6.0 - [self.viewController presentModalViewController:cameraPicker animated:YES]; - } + [self.viewController presentViewController:cameraPicker animated:YES completion:nil]; } self.hasPendingOperation = YES; } @@ -266,11 +260,7 @@ static NSSet* org_apache_cordova_validArrowDirections; cameraPicker.popoverController.delegate = nil; cameraPicker.popoverController = nil; } else { - if ([cameraPicker respondsToSelector:@selector(presentingViewController)]) { - [[cameraPicker presentingViewController] dismissModalViewControllerAnimated:YES]; - } else { - [[cameraPicker parentViewController] dismissModalViewControllerAnimated:YES]; - } + [[cameraPicker presentingViewController] dismissViewControllerAnimated:YES completion:nil]; } CDVPluginResult* result = nil; @@ -386,12 +376,7 @@ static NSSet* org_apache_cordova_validArrowDirections; { CDVCameraPicker* cameraPicker = (CDVCameraPicker*)picker; - if ([cameraPicker respondsToSelector:@selector(presentingViewController)]) { - [[cameraPicker presentingViewController] dismissModalViewControllerAnimated:YES]; - } else { - [[cameraPicker parentViewController] dismissModalViewControllerAnimated:YES]; - } - // popoverControllerDidDismissPopover:(id)popoverController is called if popover is cancelled + [[cameraPicker presentingViewController] dismissViewControllerAnimated:YES completion:nil]; CDVPluginResult* result; if ([ALAssetsLibrary authorizationStatus] == ALAuthorizationStatusAuthorized) { diff --git a/src/ubuntu/CaptureWidget.qml b/src/ubuntu/CaptureWidget.qml index e3fe20e..0a332e2 100644 --- a/src/ubuntu/CaptureWidget.qml +++ b/src/ubuntu/CaptureWidget.qml @@ -40,7 +40,6 @@ Rectangle { console.log(errorString); } videoRecorder.audioBitRate: 128000 - videoRecorder.mediaContainer: "mp4" imageCapture { onImageSaved: { root.exec("Camera", "onImageSaved", [path]); @@ -100,7 +99,7 @@ Rectangle { MouseArea { anchors.fill: parent onClicked: { - camera.imageCapture.capture(); + camera.imageCapture.captureToLocation(ui.parent.plugin('Camera').generateLocation("jpg")); } } } diff --git a/src/ubuntu/camera.cpp b/src/ubuntu/camera.cpp index eada5dc..c58af32 100644 --- a/src/ubuntu/camera.cpp +++ b/src/ubuntu/camera.cpp @@ -38,7 +38,7 @@ function createObject() { \ component.statusChanged.connect(finishCreation); \ } \ function finishCreation() { \ - CordovaWrapper.object = component.createObject(root, \ + CordovaWrapper.global.cameraPluginWidget = component.createObject(root, \ {root: root, cordova: cordova}); \ } \ createObject()"; @@ -68,18 +68,15 @@ bool Camera::preprocessImage(QString &path) { const char *type; if (convertToPNG) { - newImage.setFileTemplate("imgXXXXXX.png"); + path = generateLocation("png"); type = "png"; } else { - newImage.setFileTemplate("imgXXXXXX.jpg"); + path = generateLocation("jpg"); type = "jpg"; } - newImage.open(); - newImage.setAutoRemove(false); - image.save(newImage.fileName(), type, quality); + image.save(path, type, quality); - path = newImage.fileName(); oldImage.remove(); return true; @@ -98,7 +95,7 @@ void Camera::onImageSaved(QString path) { cbParams = QString("\"%1\"").arg(content.data()); image.remove(); } else { - cbParams = CordovaInternal::format(QUrl::fromLocalFile(absolutePath).toString()); + cbParams = CordovaInternal::format(QString("file://localhost") + absolutePath); } } @@ -136,7 +133,7 @@ void Camera::takePicture(int scId, int ecId, int quality, int destinationType, i } void Camera::cancel() { - m_cordova->execQML("CordovaWrapper.object.destroy()"); + m_cordova->execQML("CordovaWrapper.global.cameraPluginWidget.destroy()"); this->cb(_lastEcId, "canceled"); _lastEcId = _lastScId = 0; diff --git a/src/ubuntu/camera.h b/src/ubuntu/camera.h index aa06698..6d96038 100644 --- a/src/ubuntu/camera.h +++ b/src/ubuntu/camera.h @@ -54,6 +54,16 @@ public slots: void onImageSaved(QString path); + QString generateLocation(const QString &extension) { + int i = 1; + for (;;++i) { + QString path = QString("%1/.local/share/%2/persistent/%3.%4").arg(QDir::homePath()) + .arg(QCoreApplication::applicationName()).arg(i).arg(extension); + + if (!QFileInfo(path).exists()) + return path; + } + } private: bool preprocessImage(QString &path);