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/01/30 15:13:00 UTC

js commit: Tagging 2.4.0rc2

Updated Branches:
  refs/heads/master 8f56179d7 -> e784eee3c
Updated Tags:  refs/tags/2.4.0rc2 [created] e784eee3c


Tagging 2.4.0rc2


Project: http://git-wip-us.apache.org/repos/asf/cordova-js/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-js/commit/e784eee3
Tree: http://git-wip-us.apache.org/repos/asf/cordova-js/tree/e784eee3
Diff: http://git-wip-us.apache.org/repos/asf/cordova-js/diff/e784eee3

Branch: refs/heads/master
Commit: e784eee3ce02dbd475e3c3f70031668f1706f2ec
Parents: 8f56179
Author: Andrew Grieve <ag...@chromium.org>
Authored: Wed Jan 30 09:11:48 2013 -0500
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Wed Jan 30 09:11:48 2013 -0500

----------------------------------------------------------------------
 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 +-
 5 files changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-js/blob/e784eee3/VERSION
----------------------------------------------------------------------
diff --git a/VERSION b/VERSION
index 2eca156..3c7011d 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.4.0rc1
+2.4.0rc2

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/e784eee3/lib/bada/plugin/bada/device.js
----------------------------------------------------------------------
diff --git a/lib/bada/plugin/bada/device.js b/lib/bada/plugin/bada/device.js
index cf2082b..3adb730 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.0rc1";
+           me.cordova = "2.4.0rc2";
            success(me);
        }
    };

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/e784eee3/lib/blackberry/plugin/air/device.js
----------------------------------------------------------------------
diff --git a/lib/blackberry/plugin/air/device.js b/lib/blackberry/plugin/air/device.js
index 6029b77..7eb8c20 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.0rc1"
+                    cordova: "2.4.0rc2"
                 });
             }),
             request = new blackberry.transport.RemoteFunctionCall("org/apache/cordova/getDeviceInfo");

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/e784eee3/lib/blackberry/plugin/qnx/device.js
----------------------------------------------------------------------
diff --git a/lib/blackberry/plugin/qnx/device.js b/lib/blackberry/plugin/qnx/device.js
index a32b114..0e17dcf 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.0rc1"
+            cordova: "2.4.0rc2"
         });
 
         return { "status" : cordova.callbackStatus.NO_RESULT, "message" : "Device info returned" };

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/e784eee3/lib/tizen/plugin/tizen/Device.js
----------------------------------------------------------------------
diff --git a/lib/tizen/plugin/tizen/Device.js b/lib/tizen/plugin/tizen/Device.js
index c478e10..186a27a 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.0rc1";
+    this.cordova = "2.4.0rc2";
     this.platform = "Tizen";
 
     var me = this;