Updated Branches: refs/heads/master dc2699605 -> 143f5221a Updated Tags: refs/tags/2.1.0 a91a8f60b -> 143f5221a
Bumped version to 2.1.0. [Common] Fix CB-1366: remove PhoneGap global from common.js. Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/commit/143f5221 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/tree/143f5221 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/diff/143f5221 Branch: refs/heads/master Commit: 143f5221a6251c9cbccdedc57005c61551b97f12 Parents: dc26996 Author: Fil Maj <maj....@gmail.com> Authored: Wed Sep 12 12:08:27 2012 -0700 Committer: Fil Maj <maj....@gmail.com> Committed: Wed Sep 12 12:08:27 2012 -0700 ---------------------------------------------------------------------- VERSION | 2 +- lib/bada/plugin/bada/device.js | 2 +- lib/common/common.js | 7 ------- lib/webworks/air/plugin/air/device.js | 2 +- lib/webworks/qnx/plugin/qnx/device.js | 2 +- 5 files changed, 4 insertions(+), 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/143f5221/VERSION ---------------------------------------------------------------------- diff --git a/VERSION b/VERSION index 51c0fcb..7ec1d6d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.1.0rc2 +2.1.0 http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/143f5221/lib/bada/plugin/bada/device.js ---------------------------------------------------------------------- diff --git a/lib/bada/plugin/bada/device.js b/lib/bada/plugin/bada/device.js index 558cd93..b1c8ad8 100644 --- a/lib/bada/plugin/bada/device.js +++ b/lib/bada/plugin/bada/device.js @@ -51,7 +51,7 @@ Device.prototype.getDeviceInfo = function(success, fail, args) { me.platform = os_vendor + " " + os_name; me.version = os_version; me.uuid = uuid; - me.cordova = "2.1.0rc2"; + me.cordova = "2.1.0"; success(me); } }; http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/143f5221/lib/common/common.js ---------------------------------------------------------------------- diff --git a/lib/common/common.js b/lib/common/common.js index b3b4686..80d5604 100644 --- a/lib/common/common.js +++ b/lib/common/common.js @@ -18,13 +18,6 @@ module.exports = { } } }, - PhoneGap:{ - children: { - exec: { - path: 'cordova/exec' - } - } - }, navigator: { children: { notification: { http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/143f5221/lib/webworks/air/plugin/air/device.js ---------------------------------------------------------------------- diff --git a/lib/webworks/air/plugin/air/device.js b/lib/webworks/air/plugin/air/device.js index 36efa46..1f65409 100644 --- a/lib/webworks/air/plugin/air/device.js +++ b/lib/webworks/air/plugin/air/device.js @@ -11,7 +11,7 @@ module.exports = { version: blackberry.system.softwareVersion, name: blackberry.system.model, uuid: blackberry.identity.PIN, - cordova: "2.1.0rc2" + cordova: "2.1.0" }); return { "status" : cordova.callbackStatus.NO_RESULT, "message" : "Device info returned" }; http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/143f5221/lib/webworks/qnx/plugin/qnx/device.js ---------------------------------------------------------------------- diff --git a/lib/webworks/qnx/plugin/qnx/device.js b/lib/webworks/qnx/plugin/qnx/device.js index 54d62b3..a5c446b 100644 --- a/lib/webworks/qnx/plugin/qnx/device.js +++ b/lib/webworks/qnx/plugin/qnx/device.js @@ -11,7 +11,7 @@ module.exports = { version: blackberry.system.softwareVersion, name: "Dev Alpha", uuid: blackberry.identity.uuid, - cordova: "2.1.0rc2" + cordova: "2.1.0" }); return { "status" : cordova.callbackStatus.NO_RESULT, "message" : "Device info returned" };