Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ include(["Engines", "Wine", "Verbs", "msls31"]);

var appsManager = Bean("repositoryManager");
var application = appsManager.getApplication(["Applications", "Internet", "Internet Explorer 6.0"]);
var setupWizard = SetupWizardWithMiniature("Internet Explorer 6.0", application.getMainMiniature());
var setupWizard = SetupWizard(InstallationType.APPS, "Internet Explorer 6.0", application.getMainMiniature());

setupWizard.presentation("Internet Explorer 6.0", "Microsoft", "http://www.microsoft.com", "Quentin PÂRIS");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ include(["Engines", "Wine", "Verbs", "sandbox"]);

var appsManager = Bean("repositoryManager");
var application = appsManager.getApplication(["Applications", "Internet", "Internet Explorer 7.0"]);
var setupWizard = SetupWizardWithMiniature("Internet Explorer 7.0", application.getMainMiniature());
var setupWizard = SetupWizard(InstallationType.APPS, "Internet Explorer 7.0", application.getMainMiniature());

setupWizard.presentation("Internet Explorer 7.0", "Microsoft", "http://www.microsoft.com", "Quentin PÂRIS");

Expand Down
2 changes: 1 addition & 1 deletion Engines/Wine/Engine/Object/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ Wine.prototype.install = function (category, subCategory, version, userData) {
this.architecture(architecture);
this.version(version);
if (!this.installed()) {
var wizard = EngineProgressUi("Wine " + version + " " + distribution + " (" + architecture + ")");
var wizard = SetupWizard(InstallationType.ENGINES, "Wine " + version + " " + distribution + " (" + architecture + ")", java.util.Optional.empty());
this.wizard(wizard);
this._installVersion();
wizard.close();
Expand Down
2 changes: 1 addition & 1 deletion Engines/Wine/QuickScript/InstallerScript/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ InstallerScript.prototype.go = function() {

var appsManager = Bean("repositoryManager");
var application = appsManager.getApplication([this._type, this._category, this._name]);
var setupWizard = SetupWizardWithMiniature(this._name, application.getMainMiniature());
var setupWizard = SetupWizard(InstallationType.APPS, this._name, application.getMainMiniature());

// if no name given, ask user
if (this._name == "Custom Installer") {
Expand Down
2 changes: 1 addition & 1 deletion Engines/Wine/QuickScript/SteamScript/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ SteamScript.prototype.go = function() {

var appsManager = Bean("repositoryManager");
var application = appsManager.getApplication([this._type, this._category, this._name]);
var setupWizard = SetupWizardWithMiniature(this._name, application.getMainMiniature());
var setupWizard = SetupWizard(InstallationType.APPS, this._name, application.getMainMiniature());

setupWizard.presentation(this._name, this._editor, this._applicationHomepage, this._author);

Expand Down
2 changes: 1 addition & 1 deletion Engines/Wine/QuickScript/UplayScript/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ UplayScript.prototype.go = function() {

var appsManager = Bean("repositoryManager");
var application = appsManager.getApplication([this._type, this._category, this._name]);
var setupWizard = SetupWizardWithMiniature(this._name, application.getMainMiniature());
var setupWizard = SetupWizard(InstallationType.APPS, this._name, application.getMainMiniature());

setupWizard.presentation(this._name, this._editor, this._applicationHomepage, this._author);

Expand Down
2 changes: 1 addition & 1 deletion Engines/Wine/QuickScript/ZipScript/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ZipScript.prototype.checksum = function(checksum) {
ZipScript.prototype.go = function() {
var appsManager = Bean("repositoryManager");
var application = appsManager.getApplication([this._type, this._category, this._name]);
var setupWizard = SetupWizardWithMiniature(this._name, application.getMainMiniature());
var setupWizard = SetupWizard(InstallationType.APPS, this._name, application.getMainMiniature());

setupWizard.presentation(this._name, this._editor, this._applicationHomepage, this._author);

Expand Down