Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C7501EE7D for ; Tue, 25 Jun 2013 20:38:24 +0000 (UTC) Received: (qmail 31757 invoked by uid 500); 25 Jun 2013 20:38:24 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 31732 invoked by uid 500); 25 Jun 2013 20:38:24 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 31714 invoked by uid 99); 25 Jun 2013 20:38:24 -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, 25 Jun 2013 20:38:24 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 69E291C2CA; Tue, 25 Jun 2013 20:38:24 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: bowserj@apache.org To: commits@cordova.apache.org Date: Tue, 25 Jun 2013 20:38:24 -0000 Message-Id: <35fd65d44e0c4effa267d5049b97944f@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/9] js commit: 2.6.0rc1 Updated Branches: refs/heads/2.9.x 1777d2e90 -> d2ee43fd9 2.6.0rc1 Project: http://git-wip-us.apache.org/repos/asf/cordova-js/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-js/commit/47593b2b Tree: http://git-wip-us.apache.org/repos/asf/cordova-js/tree/47593b2b Diff: http://git-wip-us.apache.org/repos/asf/cordova-js/diff/47593b2b Branch: refs/heads/2.9.x Commit: 47593b2bc1dba9bf46545b1da24577f937966e12 Parents: bbf1562 Author: Fil Maj Authored: Thu Mar 21 10:06:28 2013 -0700 Committer: Fil Maj Committed: Thu Mar 21 10:06:28 2013 -0700 ---------------------------------------------------------------------- VERSION | 2 +- lib/bada/plugin/bada/device.js | 2 +- lib/blackberry/plugin/air/device.js | 2 +- lib/blackberry/plugin/qnx/device.js | 2 +- lib/tizen/plugin/tizen/Device.js | 2 +- lib/windows8/plugin/windows8/DeviceProxy.js | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-js/blob/47593b2b/VERSION ---------------------------------------------------------------------- diff --git a/VERSION b/VERSION index 437459c..f47de85 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.5.0 +2.6.0rc1 http://git-wip-us.apache.org/repos/asf/cordova-js/blob/47593b2b/lib/bada/plugin/bada/device.js ---------------------------------------------------------------------- diff --git a/lib/bada/plugin/bada/device.js b/lib/bada/plugin/bada/device.js index c2db705..da28e3a 100644 --- a/lib/bada/plugin/bada/device.js +++ b/lib/bada/plugin/bada/device.js @@ -69,7 +69,7 @@ Device.prototype.getDeviceInfo = function(success, fail, args) { me.platform = os_vendor + " " + os_name; me.version = os_version; me.uuid = uuid; - me.cordova = "2.5.0"; + me.cordova = "2.6.0rc1"; success(me); } }; http://git-wip-us.apache.org/repos/asf/cordova-js/blob/47593b2b/lib/blackberry/plugin/air/device.js ---------------------------------------------------------------------- diff --git a/lib/blackberry/plugin/air/device.js b/lib/blackberry/plugin/air/device.js index 4050a0a..2ddc4d4 100644 --- a/lib/blackberry/plugin/air/device.js +++ b/lib/blackberry/plugin/air/device.js @@ -35,7 +35,7 @@ module.exports = { model: "PlayBook", name: "PlayBook", // deprecated: please use device.model uuid: info.uuid, - cordova: "2.5.0" + cordova: "2.6.0rc1" }); }), request = new blackberry.transport.RemoteFunctionCall("org/apache/cordova/getDeviceInfo"); http://git-wip-us.apache.org/repos/asf/cordova-js/blob/47593b2b/lib/blackberry/plugin/qnx/device.js ---------------------------------------------------------------------- diff --git a/lib/blackberry/plugin/qnx/device.js b/lib/blackberry/plugin/qnx/device.js index 7c44ddd..9277863 100644 --- a/lib/blackberry/plugin/qnx/device.js +++ b/lib/blackberry/plugin/qnx/device.js @@ -33,7 +33,7 @@ module.exports = { model: "Dev Alpha", name: "Dev Alpha", // deprecated: please use device.model uuid: blackberry.identity.uuid, - cordova: "2.5.0" + cordova: "2.6.0rc1" }); return { "status" : cordova.callbackStatus.NO_RESULT, "message" : "Device info returned" }; http://git-wip-us.apache.org/repos/asf/cordova-js/blob/47593b2b/lib/tizen/plugin/tizen/Device.js ---------------------------------------------------------------------- diff --git a/lib/tizen/plugin/tizen/Device.js b/lib/tizen/plugin/tizen/Device.js index 8e5f83a..62de8ac 100644 --- a/lib/tizen/plugin/tizen/Device.js +++ b/lib/tizen/plugin/tizen/Device.js @@ -29,7 +29,7 @@ function Device() { this.version = null; this.uuid = null; this.name = null; - this.cordova = "2.5.0"; + this.cordova = "2.6.0rc1"; this.platform = "Tizen"; var me = this; http://git-wip-us.apache.org/repos/asf/cordova-js/blob/47593b2b/lib/windows8/plugin/windows8/DeviceProxy.js ---------------------------------------------------------------------- diff --git a/lib/windows8/plugin/windows8/DeviceProxy.js b/lib/windows8/plugin/windows8/DeviceProxy.js index 7826c72..6df00d2 100644 --- a/lib/windows8/plugin/windows8/DeviceProxy.js +++ b/lib/windows8/plugin/windows8/DeviceProxy.js @@ -50,7 +50,7 @@ module.exports = { } setTimeout(function () { - win({ platform: "windows8", version: "8", name: name, uuid: deviceId, cordova: "2.5.0" }); + win({ platform: "windows8", version: "8", name: name, uuid: deviceId, cordova: "2.6.0rc1" }); }, 0); }