You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ag...@apache.org on 2013/02/20 19:32:16 UTC

[1/2] js commit: 2.5.0rc1!

2.5.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/04e4ceaf
Tree: http://git-wip-us.apache.org/repos/asf/cordova-js/tree/04e4ceaf
Diff: http://git-wip-us.apache.org/repos/asf/cordova-js/diff/04e4ceaf

Branch: refs/heads/master
Commit: 04e4ceafdcd59cdd937e873cc9006766c1e5940a
Parents: efdf3ea
Author: Fil Maj <ma...@gmail.com>
Authored: Tue Feb 19 11:45:19 2013 -0800
Committer: Fil Maj <ma...@gmail.com>
Committed: Tue Feb 19 11:45:19 2013 -0800

----------------------------------------------------------------------
 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/04e4ceaf/VERSION
----------------------------------------------------------------------
diff --git a/VERSION b/VERSION
index 197c4d5..aa0822f 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.4.0
+2.5.0rc1

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/04e4ceaf/lib/bada/plugin/bada/device.js
----------------------------------------------------------------------
diff --git a/lib/bada/plugin/bada/device.js b/lib/bada/plugin/bada/device.js
index 1957343..0a97e91 100644
--- a/lib/bada/plugin/bada/device.js
+++ b/lib/bada/plugin/bada/device.js
@@ -72,7 +72,7 @@ Device.prototype.getDeviceInfo = function(success, fail, args) {
            me.platform = os_vendor + " " + os_name;
            me.version = os_version;
            me.uuid = uuid;
-           me.cordova = "2.4.0";
+           me.cordova = "2.5.0rc1";
            success(me);
        }
    };

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/04e4ceaf/lib/blackberry/plugin/air/device.js
----------------------------------------------------------------------
diff --git a/lib/blackberry/plugin/air/device.js b/lib/blackberry/plugin/air/device.js
index 691ca85..d66dd28 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.4.0"
+                    cordova: "2.5.0rc1"
                 });
             }),
             request = new blackberry.transport.RemoteFunctionCall("org/apache/cordova/getDeviceInfo");

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/04e4ceaf/lib/blackberry/plugin/qnx/device.js
----------------------------------------------------------------------
diff --git a/lib/blackberry/plugin/qnx/device.js b/lib/blackberry/plugin/qnx/device.js
index 778e9b0..e085f0c 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.4.0"
+            cordova: "2.5.0rc1"
         });
 
         return { "status" : cordova.callbackStatus.NO_RESULT, "message" : "Device info returned" };

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/04e4ceaf/lib/tizen/plugin/tizen/Device.js
----------------------------------------------------------------------
diff --git a/lib/tizen/plugin/tizen/Device.js b/lib/tizen/plugin/tizen/Device.js
index f576603..7a2628f 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.4.0";
+    this.cordova = "2.5.0rc1";
     this.platform = "Tizen";
 
     var me = this;

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/04e4ceaf/lib/windows8/plugin/windows8/DeviceProxy.js
----------------------------------------------------------------------
diff --git a/lib/windows8/plugin/windows8/DeviceProxy.js b/lib/windows8/plugin/windows8/DeviceProxy.js
index 48ada47..a89c971 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.4.0" });
+            win({ platform: "windows8", version: "8", name: name, uuid: deviceId, cordova: "2.5.0rc1" });
         }, 0);
     }