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

Commit

Permalink
1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Fil Maj committed Feb 1, 2012
1 parent 88da53c commit f89b4c4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
1.4.0
1.4.1
2 changes: 1 addition & 1 deletion framework/ext/src/com/phonegap/device/Device.java
Expand Up @@ -41,7 +41,7 @@ public PluginResult execute(String action, JSONArray args, String callbackId) {
JSONObject device = new JSONObject();
device.put( FIELD_PLATFORM, new String(DeviceInfo.getPlatformVersion() ) );
device.put( FIELD_UUID, new Integer( DeviceInfo.getDeviceId()) );
device.put( FIELD_PHONEGAP, "1.4.0" );
device.put( FIELD_PHONEGAP, "1.4.1" );
device.put( FIELD_NAME, new String(DeviceInfo.getDeviceName()) );
device.put( FIELD_VERSION, new String(DeviceInfo.getSoftwareVersion()) );
result = new PluginResult(PluginResult.Status.OK, device);
Expand Down
2 changes: 1 addition & 1 deletion javascript/playbook/playBookPluginManager.js
Expand Up @@ -35,7 +35,7 @@ phonegap.PluginManager = (function (webworksPluginManager) {
"name" : blackberry.system.model,
"uuid" : blackberry.identity.PIN,
"platform" : "PlayBook",
"phonegap" : "1.4.0"
"phonegap" : "1.4.1"
}
};
}
Expand Down

0 comments on commit f89b4c4

Please sign in to comment.