Return-Path: X-Original-To: apmail-incubator-callback-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-callback-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 81A80959B for ; Tue, 12 Jun 2012 22:00:12 +0000 (UTC) Received: (qmail 43879 invoked by uid 500); 12 Jun 2012 22:00:12 -0000 Delivered-To: apmail-incubator-callback-commits-archive@incubator.apache.org Received: (qmail 43855 invoked by uid 500); 12 Jun 2012 22:00:12 -0000 Mailing-List: contact callback-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: callback-dev@incubator.apache.org Delivered-To: mailing list callback-commits@incubator.apache.org Received: (qmail 43848 invoked by uid 99); 12 Jun 2012 22:00:12 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 12 Jun 2012 22:00:12 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id E65EA5C72; Tue, 12 Jun 2012 22:00:11 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: anis@apache.org To: callback-commits@incubator.apache.org X-Mailer: ASF-Git Admin Mailer Subject: bada-wac commit: rocking with the latest cordovajs Message-Id: <20120612220011.E65EA5C72@tyr.zones.apache.org> Date: Tue, 12 Jun 2012 22:00:11 +0000 (UTC) Updated Branches: refs/heads/master 62c656d9d -> 003380f95 rocking with the latest cordovajs Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-bada-wac/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-bada-wac/commit/003380f9 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-bada-wac/tree/003380f9 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-bada-wac/diff/003380f9 Branch: refs/heads/master Commit: 003380f95f239e210c1ad22ed890504e457c51b5 Parents: 62c656d Author: Anis Kadri Authored: Tue Jun 12 15:00:04 2012 -0700 Committer: Anis Kadri Committed: Tue Jun 12 15:00:04 2012 -0700 ---------------------------------------------------------------------- Res/js/cordova.js | 12 +++++++++--- 1 files changed, 9 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cordova-bada-wac/blob/003380f9/Res/js/cordova.js ---------------------------------------------------------------------- diff --git a/Res/js/cordova.js b/Res/js/cordova.js index 0174c3a..19e7796 100644 --- a/Res/js/cordova.js +++ b/Res/js/cordova.js @@ -1,6 +1,6 @@ -// commit 1d778ae19396ed44a459faa3849f97fa9e13a0fc +// commit 722ce5820b6fc3e371245927e00c7f9745eb041a -// File generated at :: Wed Jun 06 2012 15:17:05 GMT-0700 (Pacific Daylight Time) +// File generated at :: Tue Jun 12 2012 14:40:27 GMT-0700 (Pacific Daylight Time) /* Licensed to the Apache Software Foundation (ASF) under one @@ -1113,6 +1113,10 @@ cameraExport.getPicture = function(successCallback, errorCallback, options) { exec(successCallback, errorCallback, "Camera", "takePicture", [quality, destinationType, sourceType, targetWidth, targetHeight, encodingType, mediaType, allowEdit, correctOrientation, saveToPhotoAlbum, popoverOptions]); }; +cameraExport.cleanup = function(successCallback, errorCallback) { + exec(successCallback, errorCallback, "Camera", "cleanup", []); +} + module.exports = cameraExport; }); @@ -2420,6 +2424,8 @@ var DirectoryEntry = require('cordova/plugin/DirectoryEntry'); var FileSystem = function(name, root) { this.name = name || null; if (root) { + console.log('root.name ' + name); + console.log('root.root ' + root); this.root = new DirectoryEntry(root.name, root.fullPath); } }; @@ -4165,7 +4171,7 @@ Device.prototype.getInfo = function(success, fail, args) { me.platform = os_vendor + " " + os_name; me.version = os_version; me.uuid = uuid; - me.cordova = "1.8.0"; + me.cordova = "1.8.1"; success(me); } };