Skip to content
This repository has been archived by the owner on Apr 18, 2019. It is now read-only.

Commit

Permalink
[CB-1647] - updating to 2.2.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Kim committed Oct 16, 2012
1 parent ee91b5e commit e72c24c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Original file line Diff line number Diff line change
@@ -1 +1 @@
2.1.0 2.2.0rc1
2 changes: 1 addition & 1 deletion bin/templates/project/www/VERSION
Original file line number Original file line Diff line number Diff line change
@@ -1 +1 @@
2.1.0 2.2.0rc1
2 changes: 1 addition & 1 deletion bin/templates/project/www/index.html
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ <h1>Apache Cordova</h1>
<p class="event received">Device is Ready</p> <p class="event received">Device is Ready</p>
</div> </div>
</div> </div>
<script type="text/javascript" src="cordova-2.2.0.js"></script> <script type="text/javascript" src="cordova-2.2.0rc1.js"></script>
<script type="text/javascript" src="js/index.js"></script> <script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript"> <script type="text/javascript">
app.initialize(); app.initialize();
Expand Down
2 changes: 1 addition & 1 deletion framework/ext/src/org/apache/cordova/device/Device.java
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public PluginResult execute(String action, JSONArray args, String callbackId) {
JSONObject device = new JSONObject(); JSONObject device = new JSONObject();
device.put( FIELD_PLATFORM, new String(DeviceInfo.getPlatformVersion() ) ); device.put( FIELD_PLATFORM, new String(DeviceInfo.getPlatformVersion() ) );
device.put( FIELD_UUID, new Integer( DeviceInfo.getDeviceId()) ); device.put( FIELD_UUID, new Integer( DeviceInfo.getDeviceId()) );
device.put( FIELD_CORDOVA, "2.1.0rc1" ); device.put( FIELD_CORDOVA, "2.2.0rc1" );
device.put( FIELD_NAME, new String(DeviceInfo.getDeviceName()) ); device.put( FIELD_NAME, new String(DeviceInfo.getDeviceName()) );
device.put( FIELD_VERSION, new String(DeviceInfo.getSoftwareVersion()) ); device.put( FIELD_VERSION, new String(DeviceInfo.getSoftwareVersion()) );
result = new PluginResult(PluginResult.Status.OK, device); result = new PluginResult(PluginResult.Status.OK, device);
Expand Down

0 comments on commit e72c24c

Please sign in to comment.