You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ma...@apache.org on 2012/08/24 22:32:11 UTC

js commit: Tagging 2.1.0rc1

Updated Branches:
  refs/heads/master cc3e4d591 -> 69d652e9d


Tagging 2.1.0rc1


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

Branch: refs/heads/master
Commit: 69d652e9dcaaaf4bdaa55ec37329636dd5b20fbe
Parents: cc3e4d5
Author: macdonst <si...@gmail.com>
Authored: Fri Aug 24 16:27:11 2012 -0400
Committer: macdonst <si...@gmail.com>
Committed: Fri Aug 24 16:27:11 2012 -0400

----------------------------------------------------------------------
 VERSION                               |    2 +-
 lib/bada/plugin/bada/device.js        |    2 +-
 lib/tizen/plugin/tizen/Device.js      |    2 +-
 lib/webworks/air/plugin/air/device.js |    4 ++--
 lib/webworks/qnx/plugin/qnx/device.js |    2 +-
 5 files changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/69d652e9/VERSION
----------------------------------------------------------------------
diff --git a/VERSION b/VERSION
index 227cea2..0c271bc 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.0.0
+2.1.0rc1

http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/69d652e9/lib/bada/plugin/bada/device.js
----------------------------------------------------------------------
diff --git a/lib/bada/plugin/bada/device.js b/lib/bada/plugin/bada/device.js
index b1c8ad8..02e1f1b 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.0";
+           me.cordova = "2.1.0rc1";
            success(me);
        }
    };

http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/69d652e9/lib/tizen/plugin/tizen/Device.js
----------------------------------------------------------------------
diff --git a/lib/tizen/plugin/tizen/Device.js b/lib/tizen/plugin/tizen/Device.js
index 4d4287c..91015ed 100644
--- a/lib/tizen/plugin/tizen/Device.js
+++ b/lib/tizen/plugin/tizen/Device.js
@@ -8,7 +8,7 @@ function Device() {
     this.version = null;
     this.uuid = null;
     this.name = null;
-    this.cordova =  "2.0.0";
+    this.cordova =  "2.1.0rc1";
     this.platform = "Tizen";
 
     var me = this;

http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/69d652e9/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 a42191e..9ca55e9 100644
--- a/lib/webworks/air/plugin/air/device.js
+++ b/lib/webworks/air/plugin/air/device.js
@@ -11,10 +11,10 @@ module.exports = {
             version: blackberry.system.softwareVersion,
             name: blackberry.system.model,
             uuid: blackberry.identity.PIN,
-            cordova: "2.0.0"
+            cordova: "2.1.0rc1"
         });
 
         return { "status" : cordova.callbackStatus.NO_RESULT, "message" : "Device info returned" };
     }
 
-};
\ No newline at end of file
+};

http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/69d652e9/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 3d211aa..54520a4 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.0.0"
+            cordova: "2.1.0rc1"
         });
 
         return { "status" : cordova.callbackStatus.NO_RESULT, "message" : "Device info returned" };