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/11 22:04:26 UTC

webworks commit: [CB-2365] - updating bb version

Updated Branches:
  refs/heads/master 73cd7222f -> 3d0426254


[CB-2365] - updating bb version


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

Branch: refs/heads/master
Commit: 3d04262545ff6d273983b8df1bb48d32cf2a010e
Parents: 73cd722
Author: Tim Kim <ti...@adobe.com>
Authored: Mon Feb 11 13:04:18 2013 -0800
Committer: Tim Kim <ti...@adobe.com>
Committed: Mon Feb 11 13:04:18 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/3d042625/VERSION
----------------------------------------------------------------------
diff --git a/VERSION b/VERSION
index 2eca156..197c4d5 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.4.0rc1
+2.4.0

http://git-wip-us.apache.org/repos/asf/cordova-blackberry/blob/3d042625/bin/templates/project/www/VERSION
----------------------------------------------------------------------
diff --git a/bin/templates/project/www/VERSION b/bin/templates/project/www/VERSION
index 2eca156..197c4d5 100644
--- a/bin/templates/project/www/VERSION
+++ b/bin/templates/project/www/VERSION
@@ -1 +1 @@
-2.4.0rc1
+2.4.0

http://git-wip-us.apache.org/repos/asf/cordova-blackberry/blob/3d042625/bin/templates/project/www/index.html
----------------------------------------------------------------------
diff --git a/bin/templates/project/www/index.html b/bin/templates/project/www/index.html
index b5b9a09..f3c00e2 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.0rc1.js"></script>
+        <script type="text/javascript" src="cordova-2.4.0.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/3d042625/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 e11f924..027ebb7 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.0rc1" );
+				device.put( FIELD_CORDOVA, "2.4.0" );
 				device.put( FIELD_MODEL, new String(DeviceInfo.getDeviceName()) );
 				device.put( FIELD_NAME, new String(DeviceInfo.getDeviceName()) );
 				device.put( FIELD_VERSION, new String(DeviceInfo.getSoftwareVersion()) );