You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ti...@apache.org on 2012/07/14 01:05:34 UTC

[1/2] webworks commit: 2.0.0rc1

Updated Branches:
  refs/heads/master adf5f56d6 -> e59602e3b


2.0.0rc1


Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-blackberry-webworks/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-blackberry-webworks/commit/e59602e3
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-blackberry-webworks/tree/e59602e3
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-blackberry-webworks/diff/e59602e3

Branch: refs/heads/master
Commit: e59602e3b010b4062ef158764d5a755d544b9cd2
Parents: cbee966
Author: Tim Kim <ti...@nitobi.com>
Authored: Fri Jul 13 16:05:07 2012 -0700
Committer: Tim Kim <ti...@nitobi.com>
Committed: Fri Jul 13 16:05:07 2012 -0700

----------------------------------------------------------------------
 VERSION                                            |    2 +-
 .../ext/src/org/apache/cordova/device/Device.java  |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-blackberry-webworks/blob/e59602e3/VERSION
----------------------------------------------------------------------
diff --git a/VERSION b/VERSION
index f8e233b..227cea2 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.9.0
+2.0.0

http://git-wip-us.apache.org/repos/asf/incubator-cordova-blackberry-webworks/blob/e59602e3/framework/ext/src/org/apache/cordova/device/Device.java
----------------------------------------------------------------------
diff --git a/framework/ext/src/org/apache/cordova/device/Device.java b/framework/ext/src/org/apache/cordova/device/Device.java
index d3128eb..c84acbb 100644
--- a/framework/ext/src/org/apache/cordova/device/Device.java
+++ b/framework/ext/src/org/apache/cordova/device/Device.java
@@ -53,7 +53,7 @@ public final class Device extends Plugin {
 				JSONObject device = new JSONObject();
 				device.put( FIELD_PLATFORM, new String(DeviceInfo.getPlatformVersion() ) );
 				device.put( FIELD_UUID, new Integer( DeviceInfo.getDeviceId()) );
-				device.put( FIELD_CORDOVA, "1.9.0" );
+				device.put( FIELD_CORDOVA, "2.0.0" );
 				device.put( FIELD_NAME, new String(DeviceInfo.getDeviceName()) );
 				device.put( FIELD_VERSION, new String(DeviceInfo.getSoftwareVersion()) );
 				result = new PluginResult(PluginResult.Status.OK, device);