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 2013/02/21 00:21:16 UTC

[2/2] webworks commit: [CB-2478] - update BB

Updated Branches:
  refs/heads/master fb75902da -> 3d43c0453


[CB-2478] - update BB


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

Branch: refs/heads/master
Commit: 3d43c0453789ec7e7361c19cda9f042e52c276d8
Parents: 3f9ccd1
Author: Tim Kim <ti...@adobe.com>
Authored: Wed Feb 20 15:17:44 2013 -0800
Committer: Tim Kim <ti...@adobe.com>
Committed: Wed Feb 20 15:17:44 2013 -0800

----------------------------------------------------------------------
 VERSION                                            |    2 +-
 bin/templates/project/www/VERSION                  |    2 +-
 bin/templates/project/www/index.html               |    2 +-
 .../ext/src/org/apache/cordova/device/Device.java  |    2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-blackberry/blob/3d43c045/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-blackberry/blob/3d43c045/bin/templates/project/www/VERSION
----------------------------------------------------------------------
diff --git a/bin/templates/project/www/VERSION b/bin/templates/project/www/VERSION
index 197c4d5..aa0822f 100644
--- a/bin/templates/project/www/VERSION
+++ b/bin/templates/project/www/VERSION
@@ -1 +1 @@
-2.4.0
+2.5.0rc1

http://git-wip-us.apache.org/repos/asf/cordova-blackberry/blob/3d43c045/bin/templates/project/www/index.html
----------------------------------------------------------------------
diff --git a/bin/templates/project/www/index.html b/bin/templates/project/www/index.html
index f3c00e2..ab0ca50 100644
--- a/bin/templates/project/www/index.html
+++ b/bin/templates/project/www/index.html
@@ -33,7 +33,7 @@
                 <p class="event received">Device is Ready</p>
             </div>
         </div>
-        <script type="text/javascript" src="cordova-2.4.0.js"></script>
+        <script type="text/javascript" src="cordova-2.5.0rc1.js"></script>
         <script type="text/javascript" src="js/index.js"></script>
         <script type="text/javascript">
             app.initialize();

http://git-wip-us.apache.org/repos/asf/cordova-blackberry/blob/3d43c045/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 027ebb7..1e56cee 100644
--- a/framework/ext/src/org/apache/cordova/device/Device.java
+++ b/framework/ext/src/org/apache/cordova/device/Device.java
@@ -54,7 +54,7 @@ public final class Device extends Plugin {
 				JSONObject device = new JSONObject();
 				device.put( FIELD_PLATFORM, "BlackBerry");
 				device.put( FIELD_UUID, new Integer( DeviceInfo.getDeviceId()) );
-				device.put( FIELD_CORDOVA, "2.4.0" );
+				device.put( FIELD_CORDOVA, "2.5.0rc1" );
 				device.put( FIELD_MODEL, new String(DeviceInfo.getDeviceName()) );
 				device.put( FIELD_NAME, new String(DeviceInfo.getDeviceName()) );
 				device.put( FIELD_VERSION, new String(DeviceInfo.getSoftwareVersion()) );