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/27 22:34:13 UTC

[2/2] webworks commit: [CB-2575] - updating version

Updated Branches:
  refs/heads/master 3d43c0453 -> 780161d1e


[CB-2575] - updating 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/780161d1
Tree: http://git-wip-us.apache.org/repos/asf/cordova-blackberry/tree/780161d1
Diff: http://git-wip-us.apache.org/repos/asf/cordova-blackberry/diff/780161d1

Branch: refs/heads/master
Commit: 780161d1e9d3ee157dc3917cb7fb084ffba1dbbc
Parents: a1c430b
Author: Tim Kim <ti...@adobe.com>
Authored: Wed Feb 27 13:33:58 2013 -0800
Committer: Tim Kim <ti...@adobe.com>
Committed: Wed Feb 27 13:33:58 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/780161d1/VERSION
----------------------------------------------------------------------
diff --git a/VERSION b/VERSION
index aa0822f..437459c 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.5.0rc1
+2.5.0

http://git-wip-us.apache.org/repos/asf/cordova-blackberry/blob/780161d1/bin/templates/project/www/VERSION
----------------------------------------------------------------------
diff --git a/bin/templates/project/www/VERSION b/bin/templates/project/www/VERSION
index aa0822f..437459c 100644
--- a/bin/templates/project/www/VERSION
+++ b/bin/templates/project/www/VERSION
@@ -1 +1 @@
-2.5.0rc1
+2.5.0

http://git-wip-us.apache.org/repos/asf/cordova-blackberry/blob/780161d1/bin/templates/project/www/index.html
----------------------------------------------------------------------
diff --git a/bin/templates/project/www/index.html b/bin/templates/project/www/index.html
index ab0ca50..f083790 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.5.0rc1.js"></script>
+        <script type="text/javascript" src="cordova-2.5.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/780161d1/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 1e56cee..3bb4824 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.5.0rc1" );
+				device.put( FIELD_CORDOVA, "2.5.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()) );