Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
purplecabbage committed Oct 31, 2012
2 parents 425ad0b + 02b91c5 commit 95efdcd
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
2.2.0rc2
2.2.0
2 changes: 1 addition & 1 deletion lib/bada/plugin/bada/device.js
Expand Up @@ -72,7 +72,7 @@ Device.prototype.getDeviceInfo = function(success, fail, args) {
me.platform = os_vendor + " " + os_name;
me.version = os_version;
me.uuid = uuid;
me.cordova = "2.2.0rc2";
me.cordova = "2.2.0";
success(me);
}
};
Expand Down
2 changes: 1 addition & 1 deletion lib/common/plugin/FileTransfer.js
Expand Up @@ -134,7 +134,7 @@ FileTransfer.prototype.download = function(source, target, successCallback, erro
errorCallback(error);
};

exec(win, errorCallback, 'FileTransfer', 'download', [source, target, trustAllHosts, this._id]);
exec(win, fail, 'FileTransfer', 'download', [source, target, trustAllHosts, this._id]);
};

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/tizen/plugin/tizen/Device.js
Expand Up @@ -29,7 +29,7 @@ function Device() {
this.version = null;
this.uuid = null;
this.name = null;
this.cordova = "2.2.0rc2";
this.cordova = "2.2.0";
this.platform = "Tizen";

var me = this;
Expand Down
2 changes: 1 addition & 1 deletion lib/webworks/air/plugin/air/device.js
Expand Up @@ -32,7 +32,7 @@ module.exports = {
version: blackberry.system.softwareVersion,
name: blackberry.system.model,
uuid: blackberry.identity.PIN,
cordova: "2.2.0rc2"
cordova: "2.2.0"
});

return { "status" : cordova.callbackStatus.NO_RESULT, "message" : "Device info returned" };
Expand Down
2 changes: 1 addition & 1 deletion lib/webworks/qnx/plugin/qnx/device.js
Expand Up @@ -32,7 +32,7 @@ module.exports = {
version: blackberry.system.softwareVersion,
name: "Dev Alpha",
uuid: blackberry.identity.uuid,
cordova: "2.2.0rc2"
cordova: "2.2.0"
});

return { "status" : cordova.callbackStatus.NO_RESULT, "message" : "Device info returned" };
Expand Down

0 comments on commit 95efdcd

Please sign in to comment.