diff --git a/VERSION b/VERSION index 88c5fb89..347f5833 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.4.0 +1.4.1 diff --git a/framework/ext/src/com/phonegap/device/Device.java b/framework/ext/src/com/phonegap/device/Device.java index db1aef4b..2b509bb2 100644 --- a/framework/ext/src/com/phonegap/device/Device.java +++ b/framework/ext/src/com/phonegap/device/Device.java @@ -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); diff --git a/javascript/playbook/playBookPluginManager.js b/javascript/playbook/playBookPluginManager.js index fe69fdbb..122b82aa 100644 --- a/javascript/playbook/playBookPluginManager.js +++ b/javascript/playbook/playBookPluginManager.js @@ -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" } }; }