From 11ebf282c8b02e3d71ae4f08679f48532b4111ae Mon Sep 17 00:00:00 2001 From: ImperatorS79 Date: Tue, 15 May 2018 19:59:49 +0200 Subject: [PATCH 01/10] Update DXVK to version 0.51 (#626) --- Engines/Wine/Verbs/DXVK/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engines/Wine/Verbs/DXVK/script.js b/Engines/Wine/Verbs/DXVK/script.js index 02c46490cc..5a9f308dc4 100644 --- a/Engines/Wine/Verbs/DXVK/script.js +++ b/Engines/Wine/Verbs/DXVK/script.js @@ -11,7 +11,7 @@ Wine.prototype.DXVK = function () { print("NOTE: you need a driver that supports Vulkan enough to run DXVK"); print("NOTE: wine version should be greater or equal to 3.5"); - var dxvkVersion = "0.50"; + var dxvkVersion = "0.51"; var setupFile = new Resource() .wizard(this.wizard()) From 2cdd8436763af6002eda772629482cfe81ab5877 Mon Sep 17 00:00:00 2001 From: Travis CI Date: Tue, 15 May 2018 18:02:38 +0000 Subject: [PATCH 02/10] Update JSDoc --- docs/jsdoc/Engines_Wine_Verbs_DXVK_script.js.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/jsdoc/Engines_Wine_Verbs_DXVK_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_DXVK_script.js.html index a7a60ca0a6..164be1cef4 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_DXVK_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_DXVK_script.js.html @@ -39,7 +39,7 @@

Source: Engines/Wine/Verbs/DXVK/script.js

print("NOTE: you need a driver that supports Vulkan enough to run DXVK"); print("NOTE: wine version should be greater or equal to 3.5"); - var dxvkVersion = "0.50"; + var dxvkVersion = "0.51"; var setupFile = new Resource() .wizard(this.wizard()) From cea8d0fda37372e7eda54e3408d1455094e69069 Mon Sep 17 00:00:00 2001 From: plata Date: Thu, 17 May 2018 19:17:48 +0200 Subject: [PATCH 03/10] Do not install gecko/mono if no URL available (#621) --- Engines/Wine/Engine/Implementation/script.js | 52 +++++++++++--------- 1 file changed, 28 insertions(+), 24 deletions(-) diff --git a/Engines/Wine/Engine/Implementation/script.js b/Engines/Wine/Engine/Implementation/script.js index e24c36fdb0..859bd67c9b 100644 --- a/Engines/Wine/Engine/Implementation/script.js +++ b/Engines/Wine/Engine/Implementation/script.js @@ -95,32 +95,36 @@ var engineImplementation = { .extract(); }, _installGecko: function (setupWizard, winePackage, localDirectory) { - var gecko = new Resource() - .wizard(setupWizard) - .url(winePackage.geckoUrl) - .checksum(winePackage.geckoMd5) - .algorithm("md5") - .name(winePackage.geckoFile) - .directory("gecko") - .get(); - - var wineGeckoDir = localDirectory + "/share/wine/gecko"; - - lns(new java.io.File(gecko).getParent(), wineGeckoDir); + if (winePackage.geckoUrl) { + var gecko = new Resource() + .wizard(setupWizard) + .url(winePackage.geckoUrl) + .checksum(winePackage.geckoMd5) + .algorithm("md5") + .name(winePackage.geckoFile) + .directory("gecko") + .get(); + + var wineGeckoDir = localDirectory + "/share/wine/gecko"; + + lns(new java.io.File(gecko).getParent(), wineGeckoDir); + } }, _installMono: function (setupWizard, winePackage, localDirectory) { - var mono = new Resource() - .wizard(setupWizard) - .url(winePackage.monoUrl) - .checksum(winePackage.monoMd5) - .algorithm("md5") - .name(winePackage.monoFile) - .directory("mono") - .get(); - - var wineMonoDir = localDirectory + "/share/wine/mono"; - - lns(new java.io.File(mono).getParent(), wineMonoDir); + if (winePackage.monoUrl) { + var mono = new Resource() + .wizard(setupWizard) + .url(winePackage.monoUrl) + .checksum(winePackage.monoMd5) + .algorithm("md5") + .name(winePackage.monoFile) + .directory("mono") + .get(); + + var wineMonoDir = localDirectory + "/share/wine/mono"; + + lns(new java.io.File(mono).getParent(), wineMonoDir); + } }, delete: function (subCategory, version) { if (this.isInstalled(subCategory, version)) { From ad4b75eb1003e7b8d446e023f1a80d4d4f0d1a4b Mon Sep 17 00:00:00 2001 From: plata Date: Thu, 17 May 2018 19:19:19 +0200 Subject: [PATCH 04/10] Update Wine LATEST_STABLE_VERSION to 3.0.1 (#628) --- Engines/Wine/Engine/Object/script.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Engines/Wine/Engine/Object/script.js b/Engines/Wine/Engine/Object/script.js index 134e195f53..7ada95497b 100644 --- a/Engines/Wine/Engine/Object/script.js +++ b/Engines/Wine/Engine/Object/script.js @@ -5,7 +5,7 @@ include(["utils", "functions", "net", "download"]); include(["utils", "functions", "net", "resource"]); /* exported LATEST_STABLE_VERSION */ -var LATEST_STABLE_VERSION = "3.0"; +var LATEST_STABLE_VERSION = "3.0.1"; /* exported LATEST_DEVELOPMENT_VERSION */ var LATEST_DEVELOPMENT_VERSION = "3.7"; /* exported LATEST_STAGING_VERSION */ @@ -264,4 +264,4 @@ Wine.prototype.system64directory = function () { */ Wine.prototype.fontDirectory = function () { return this.prefixDirectory() + "/drive_c/windows/Fonts"; -}; \ No newline at end of file +}; From f41758d74a454487a2c960d2d4e48384add0a6a6 Mon Sep 17 00:00:00 2001 From: plata Date: Thu, 17 May 2018 19:19:28 +0200 Subject: [PATCH 05/10] Update Wine LATEST_DEVELOPMENT_VERSION to 3.8 (#629) --- Engines/Wine/Engine/Object/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engines/Wine/Engine/Object/script.js b/Engines/Wine/Engine/Object/script.js index 7ada95497b..0117b66ac5 100644 --- a/Engines/Wine/Engine/Object/script.js +++ b/Engines/Wine/Engine/Object/script.js @@ -7,7 +7,7 @@ include(["utils", "functions", "net", "resource"]); /* exported LATEST_STABLE_VERSION */ var LATEST_STABLE_VERSION = "3.0.1"; /* exported LATEST_DEVELOPMENT_VERSION */ -var LATEST_DEVELOPMENT_VERSION = "3.7"; +var LATEST_DEVELOPMENT_VERSION = "3.8"; /* exported LATEST_STAGING_VERSION */ var LATEST_STAGING_VERSION = "2.21"; From bfda96f981c766e8189299fc07e4e876083f9f34 Mon Sep 17 00:00:00 2001 From: Travis CI Date: Thu, 17 May 2018 17:24:22 +0000 Subject: [PATCH 06/10] Update JSDoc --- ..._Wine_Engine_Implementation_script.js.html | 52 ++++++++++--------- .../Engines_Wine_Engine_Object_script.js.html | 7 +-- 2 files changed, 32 insertions(+), 27 deletions(-) diff --git a/docs/jsdoc/Engines_Wine_Engine_Implementation_script.js.html b/docs/jsdoc/Engines_Wine_Engine_Implementation_script.js.html index db8ae3fbd1..06cecf92e5 100644 --- a/docs/jsdoc/Engines_Wine_Engine_Implementation_script.js.html +++ b/docs/jsdoc/Engines_Wine_Engine_Implementation_script.js.html @@ -123,32 +123,36 @@

Source: Engines/Wine/Engine/Implementation/script.js

.extract(); }, _installGecko: function (setupWizard, winePackage, localDirectory) { - var gecko = new Resource() - .wizard(setupWizard) - .url(winePackage.geckoUrl) - .checksum(winePackage.geckoMd5) - .algorithm("md5") - .name(winePackage.geckoFile) - .directory("gecko") - .get(); - - var wineGeckoDir = localDirectory + "/share/wine/gecko"; - - lns(new java.io.File(gecko).getParent(), wineGeckoDir); + if (winePackage.geckoUrl) { + var gecko = new Resource() + .wizard(setupWizard) + .url(winePackage.geckoUrl) + .checksum(winePackage.geckoMd5) + .algorithm("md5") + .name(winePackage.geckoFile) + .directory("gecko") + .get(); + + var wineGeckoDir = localDirectory + "/share/wine/gecko"; + + lns(new java.io.File(gecko).getParent(), wineGeckoDir); + } }, _installMono: function (setupWizard, winePackage, localDirectory) { - var mono = new Resource() - .wizard(setupWizard) - .url(winePackage.monoUrl) - .checksum(winePackage.monoMd5) - .algorithm("md5") - .name(winePackage.monoFile) - .directory("mono") - .get(); - - var wineMonoDir = localDirectory + "/share/wine/mono"; - - lns(new java.io.File(mono).getParent(), wineMonoDir); + if (winePackage.monoUrl) { + var mono = new Resource() + .wizard(setupWizard) + .url(winePackage.monoUrl) + .checksum(winePackage.monoMd5) + .algorithm("md5") + .name(winePackage.monoFile) + .directory("mono") + .get(); + + var wineMonoDir = localDirectory + "/share/wine/mono"; + + lns(new java.io.File(mono).getParent(), wineMonoDir); + } }, delete: function (subCategory, version) { if (this.isInstalled(subCategory, version)) { diff --git a/docs/jsdoc/Engines_Wine_Engine_Object_script.js.html b/docs/jsdoc/Engines_Wine_Engine_Object_script.js.html index 81a53db601..7066953881 100644 --- a/docs/jsdoc/Engines_Wine_Engine_Object_script.js.html +++ b/docs/jsdoc/Engines_Wine_Engine_Object_script.js.html @@ -33,9 +33,9 @@

Source: Engines/Wine/Engine/Object/script.js

include(["utils", "functions", "net", "resource"]); /* exported LATEST_STABLE_VERSION */ -var LATEST_STABLE_VERSION = "3.0"; +var LATEST_STABLE_VERSION = "3.0.1"; /* exported LATEST_DEVELOPMENT_VERSION */ -var LATEST_DEVELOPMENT_VERSION = "3.7"; +var LATEST_DEVELOPMENT_VERSION = "3.8"; /* exported LATEST_STAGING_VERSION */ var LATEST_STAGING_VERSION = "2.21"; @@ -292,7 +292,8 @@

Source: Engines/Wine/Engine/Object/script.js

*/ Wine.prototype.fontDirectory = function () { return this.prefixDirectory() + "/drive_c/windows/Fonts"; -}; +}; + From 43dd53a01e9f13e9f5bf275808ecb0fc270822a0 Mon Sep 17 00:00:00 2001 From: plata Date: Thu, 17 May 2018 19:35:10 +0200 Subject: [PATCH 07/10] Implement ls (#624) --- Utils/Functions/Filesystem/Files/script.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Utils/Functions/Filesystem/Files/script.js b/Utils/Functions/Filesystem/Files/script.js index ddc4bdac87..08c0d75d6b 100644 --- a/Utils/Functions/Filesystem/Files/script.js +++ b/Utils/Functions/Filesystem/Files/script.js @@ -1,13 +1,22 @@ var fileAnalyser = Bean("fileAnalyser"); var fileUtilities = Bean("fileUtilities"); +/** +* lists files and directories +* @param {string} directoryPath directory path +* @returns {string[]} list of files and directories +*/ +function ls(directoryPath) { // eslint-disable-line no-unused-vars + return fileUtilities.ls(new java.io.File(directoryPath)); +} + /** * creates directory * @param {string} directoryPath directory path * @returns {void} */ function mkdir(directoryPath) { // eslint-disable-line no-unused-vars - fileUtilities.mkdir(new java.io.File(directoryPath)) + fileUtilities.mkdir(new java.io.File(directoryPath)); } /** From 700eb8a7b1e120d8d05abe353c21ae46d7fd6ab8 Mon Sep 17 00:00:00 2001 From: plata Date: Thu, 17 May 2018 19:35:39 +0200 Subject: [PATCH 08/10] Handle Wine archives with directory (#625) --- .eslintrc.yml | 1 + Engines/Wine/Engine/Implementation/script.js | 13 +++++++++++++ 2 files changed, 14 insertions(+) diff --git a/.eslintrc.yml b/.eslintrc.yml index e7923548bd..6112560d39 100644 --- a/.eslintrc.yml +++ b/.eslintrc.yml @@ -30,6 +30,7 @@ globals: # java Bean: false # files + ls: false mkdir: false fileExists: false cat: false diff --git a/Engines/Wine/Engine/Implementation/script.js b/Engines/Wine/Engine/Implementation/script.js index 859bd67c9b..c9e43ed0f5 100644 --- a/Engines/Wine/Engine/Implementation/script.js +++ b/Engines/Wine/Engine/Implementation/script.js @@ -93,6 +93,19 @@ var engineImplementation = { .archive(tmpFile) .to(localDirectory) .extract(); + + var files = ls(localDirectory); + if (files.length == 1) { + // probably the archive contained a folder (e.g. for Lutris Wine version) + // link folders so Phoenicis can find them + var extractedDir = files[0]; + + var forEach = Array.prototype.forEach; + forEach.call(ls(localDirectory + "/" + extractedDir), function (folder) { + lns(localDirectory + "/" + extractedDir + "/" + folder, localDirectory + "/" + folder); + } + ); + } }, _installGecko: function (setupWizard, winePackage, localDirectory) { if (winePackage.geckoUrl) { From 025db3c72bd1e02b59182463b44822ae10adaf99 Mon Sep 17 00:00:00 2001 From: Travis CI Date: Thu, 17 May 2018 17:40:01 +0000 Subject: [PATCH 09/10] Update JSDoc --- docs/jsdoc/AppResource.html | 2 +- docs/jsdoc/CabExtract.html | 2 +- docs/jsdoc/Checksum.html | 12 +- docs/jsdoc/Downloader.html | 2 +- ..._Wine_Engine_Implementation_script.js.html | 15 +- .../Engines_Wine_Engine_Object_script.js.html | 2 +- ...Plugins_DirectDraw renderer_script.js.html | 2 +- .../Engines_Wine_Plugins_GLSL_script.js.html | 2 +- ...Wine_Plugins_OpenGL version_script.js.html | 2 +- ...ine_Plugins_Windows version_script.js.html | 2 +- .../Engines_Wine_Plugins_csmt_script.js.html | 2 +- ...ngines_Wine_Plugins_managed_script.js.html | 2 +- ..._Plugins_native application_script.js.html | 2 +- ...ngines_Wine_Plugins_regedit_script.js.html | 2 +- ...gines_Wine_Plugins_regsvr32_script.js.html | 2 +- ...s_Wine_Plugins_sound driver_script.js.html | 2 +- ...ine_Plugins_virtual desktop_script.js.html | 2 +- ...ne_QuickScript_Quick Script_script.js.html | 2 +- ...ettings_DirectDraw renderer_script.js.html | 2 +- .../Engines_Wine_Settings_GLSL_script.js.html | 2 +- ...e_Settings_always offscreen_script.js.html | 2 +- ...ettings_mouse warp override_script.js.html | 2 +- ...Wine_Settings_multisampling_script.js.html | 2 +- ...gs_offscreen rendering mode_script.js.html | 2 +- ...ngs_render target lock mode_script.js.html | 2 +- ...ttings_strict draw ordering_script.js.html | 2 +- ..._Settings_video memory size_script.js.html | 2 +- ...gines_Wine_Shortcuts_Reader_script.js.html | 2 +- ...Engines_Wine_Shortcuts_Wine_script.js.html | 2 +- ...s_Wine_Tools_Configure Wine_script.js.html | 2 +- ...e_Tools_Kill Wine Processes_script.js.html | 2 +- ...ines_Wine_Tools_Reboot Wine_script.js.html | 2 +- ...ne_Tools_Repair Wine Prefix_script.js.html | 2 +- ..._Tools_Wine Registry Editor_script.js.html | 2 +- ...ine_Tools_Wine Task Manager_script.js.html | 2 +- ..._Tools_Wine Terminal Opener_script.js.html | 2 +- ...Wine_Tools_Wine Uninstaller_script.js.html | 2 +- ...ines_Wine_Tools_WineConsole_script.js.html | 2 +- .../Engines_Wine_Verbs_DXVK_script.js.html | 2 +- .../Engines_Wine_Verbs_PhysX_script.js.html | 2 +- ...es_Wine_Verbs_QuickTime 7.6_script.js.html | 2 +- .../Engines_Wine_Verbs_Tahoma_script.js.html | 2 +- .../Engines_Wine_Verbs_Uplay_script.js.html | 2 +- ..._Wine_Verbs_Windows XP SP 3_script.js.html | 2 +- ...ngines_Wine_Verbs_corefonts_script.js.html | 2 +- .../Engines_Wine_Verbs_crypt32_script.js.html | 2 +- .../Engines_Wine_Verbs_d3dx10_script.js.html | 2 +- .../Engines_Wine_Verbs_d3dx9_script.js.html | 2 +- ...Engines_Wine_Verbs_dotnet40_script.js.html | 2 +- ...ngines_Wine_Verbs_dotnet452_script.js.html | 2 +- ...Engines_Wine_Verbs_dotnet45_script.js.html | 2 +- .../Engines_Wine_Verbs_luna_script.js.html | 2 +- .../Engines_Wine_Verbs_mfc42_script.js.html | 2 +- .../Engines_Wine_Verbs_msls31_script.js.html | 2 +- ...Engines_Wine_Verbs_mspatcha_script.js.html | 2 +- .../Engines_Wine_Verbs_quartz_script.js.html | 2 +- .../Engines_Wine_Verbs_sandbox_script.js.html | 2 +- .../Engines_Wine_Verbs_secur32_script.js.html | 2 +- ...ngines_Wine_Verbs_vcrun2003_script.js.html | 2 +- ...ngines_Wine_Verbs_vcrun2005_script.js.html | 2 +- ...ngines_Wine_Verbs_vcrun2008_script.js.html | 2 +- ...ngines_Wine_Verbs_vcrun2010_script.js.html | 2 +- ...ngines_Wine_Verbs_vcrun2012_script.js.html | 2 +- ...ngines_Wine_Verbs_vcrun2013_script.js.html | 2 +- ...ngines_Wine_Verbs_vcrun2015_script.js.html | 2 +- ...ngines_Wine_Verbs_vcrun2017_script.js.html | 2 +- .../Engines_Wine_Verbs_xact_script.js.html | 2 +- docs/jsdoc/Extractor.html | 2 +- docs/jsdoc/Resource.html | 2 +- docs/jsdoc/ShortcutReader.html | 2 +- ...ls_Functions_Apps_Resources_script.js.html | 2 +- ...unctions_Filesystem_Extract_script.js.html | 2 +- ..._Functions_Filesystem_Files_script.js.html | 13 +- ...tils_Functions_Net_Download_script.js.html | 2 +- ...tils_Functions_Net_Resource_script.js.html | 2 +- docs/jsdoc/Wine.html | 2 +- docs/jsdoc/WineShortcut.html | 2 +- docs/jsdoc/global.html | 253 ++++++++++++++---- docs/jsdoc/index.html | 2 +- 79 files changed, 311 insertions(+), 132 deletions(-) diff --git a/docs/jsdoc/AppResource.html b/docs/jsdoc/AppResource.html index 23d69355cc..da032bc63f 100644 --- a/docs/jsdoc/AppResource.html +++ b/docs/jsdoc/AppResource.html @@ -471,7 +471,7 @@
Returns:

diff --git a/docs/jsdoc/CabExtract.html b/docs/jsdoc/CabExtract.html index e765c42798..52825a8f73 100644 --- a/docs/jsdoc/CabExtract.html +++ b/docs/jsdoc/CabExtract.html @@ -938,7 +938,7 @@
Returns:

diff --git a/docs/jsdoc/Checksum.html b/docs/jsdoc/Checksum.html index b016a34e24..94c334fb72 100644 --- a/docs/jsdoc/Checksum.html +++ b/docs/jsdoc/Checksum.html @@ -93,7 +93,7 @@

new Checksum<
Source:
@@ -199,7 +199,7 @@

getSource:
@@ -356,7 +356,7 @@
Parameters:
Source:
@@ -513,7 +513,7 @@
Parameters:
Source:
@@ -670,7 +670,7 @@
Parameters:
Source:
@@ -736,7 +736,7 @@
Returns:

diff --git a/docs/jsdoc/Downloader.html b/docs/jsdoc/Downloader.html index 09aa8f8433..3ca2784bb9 100644 --- a/docs/jsdoc/Downloader.html +++ b/docs/jsdoc/Downloader.html @@ -1521,7 +1521,7 @@
Returns:

diff --git a/docs/jsdoc/Engines_Wine_Engine_Implementation_script.js.html b/docs/jsdoc/Engines_Wine_Engine_Implementation_script.js.html index 06cecf92e5..2b89d5698f 100644 --- a/docs/jsdoc/Engines_Wine_Engine_Implementation_script.js.html +++ b/docs/jsdoc/Engines_Wine_Engine_Implementation_script.js.html @@ -121,6 +121,19 @@

Source: Engines/Wine/Engine/Implementation/script.js

.archive(tmpFile) .to(localDirectory) .extract(); + + var files = ls(localDirectory); + if (files.length == 1) { + // probably the archive contained a folder (e.g. for Lutris Wine version) + // link folders so Phoenicis can find them + var extractedDir = files[0]; + + var forEach = Array.prototype.forEach; + forEach.call(ls(localDirectory + "/" + extractedDir), function (folder) { + lns(localDirectory + "/" + extractedDir + "/" + folder, localDirectory + "/" + folder); + } + ); + } }, _installGecko: function (setupWizard, winePackage, localDirectory) { if (winePackage.geckoUrl) { @@ -313,7 +326,7 @@

Source: Engines/Wine/Engine/Implementation/script.js


diff --git a/docs/jsdoc/Engines_Wine_Engine_Object_script.js.html b/docs/jsdoc/Engines_Wine_Engine_Object_script.js.html index 7066953881..c9fdb4223f 100644 --- a/docs/jsdoc/Engines_Wine_Engine_Object_script.js.html +++ b/docs/jsdoc/Engines_Wine_Engine_Object_script.js.html @@ -303,7 +303,7 @@

Source: Engines/Wine/Engine/Object/script.js


diff --git a/docs/jsdoc/Engines_Wine_Plugins_DirectDraw renderer_script.js.html b/docs/jsdoc/Engines_Wine_Plugins_DirectDraw renderer_script.js.html index d6f1372fcc..9f67ce495d 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_DirectDraw renderer_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_DirectDraw renderer_script.js.html @@ -51,7 +51,7 @@

Source: Engines/Wine/Plugins/DirectDraw renderer/script.j
diff --git a/docs/jsdoc/Engines_Wine_Plugins_GLSL_script.js.html b/docs/jsdoc/Engines_Wine_Plugins_GLSL_script.js.html index 84fc1c7258..4828b265db 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_GLSL_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_GLSL_script.js.html @@ -52,7 +52,7 @@

Source: Engines/Wine/Plugins/GLSL/script.js


diff --git a/docs/jsdoc/Engines_Wine_Plugins_OpenGL version_script.js.html b/docs/jsdoc/Engines_Wine_Plugins_OpenGL version_script.js.html index efd01e86e9..6acb6709b5 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_OpenGL version_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_OpenGL version_script.js.html @@ -53,7 +53,7 @@

Source: Engines/Wine/Plugins/OpenGL version/script.js


diff --git a/docs/jsdoc/Engines_Wine_Plugins_Windows version_script.js.html b/docs/jsdoc/Engines_Wine_Plugins_Windows version_script.js.html index 3d62ce669e..cadf3b938e 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_Windows version_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_Windows version_script.js.html @@ -98,7 +98,7 @@

Source: Engines/Wine/Plugins/Windows version/script.js
diff --git a/docs/jsdoc/Engines_Wine_Plugins_csmt_script.js.html b/docs/jsdoc/Engines_Wine_Plugins_csmt_script.js.html index cf5eff2600..c8a7ec460b 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_csmt_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_csmt_script.js.html @@ -51,7 +51,7 @@

Source: Engines/Wine/Plugins/csmt/script.js


diff --git a/docs/jsdoc/Engines_Wine_Plugins_managed_script.js.html b/docs/jsdoc/Engines_Wine_Plugins_managed_script.js.html index 121b9a9bf5..ed2362b962 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_managed_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_managed_script.js.html @@ -91,7 +91,7 @@

Source: Engines/Wine/Plugins/managed/script.js


diff --git a/docs/jsdoc/Engines_Wine_Plugins_native application_script.js.html b/docs/jsdoc/Engines_Wine_Plugins_native application_script.js.html index 00b9f4f2cc..e41c46f139 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_native application_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_native application_script.js.html @@ -75,7 +75,7 @@

Source: Engines/Wine/Plugins/native application/script.js
diff --git a/docs/jsdoc/Engines_Wine_Plugins_regedit_script.js.html b/docs/jsdoc/Engines_Wine_Plugins_regedit_script.js.html index 0f5b3a4749..e0cedf2377 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_regedit_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_regedit_script.js.html @@ -102,7 +102,7 @@

Source: Engines/Wine/Plugins/regedit/script.js


diff --git a/docs/jsdoc/Engines_Wine_Plugins_regsvr32_script.js.html b/docs/jsdoc/Engines_Wine_Plugins_regsvr32_script.js.html index 3d035ac3f9..7af5367b21 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_regsvr32_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_regsvr32_script.js.html @@ -51,7 +51,7 @@

Source: Engines/Wine/Plugins/regsvr32/script.js


diff --git a/docs/jsdoc/Engines_Wine_Plugins_sound driver_script.js.html b/docs/jsdoc/Engines_Wine_Plugins_sound driver_script.js.html index face40c545..f58d9c7c9c 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_sound driver_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_sound driver_script.js.html @@ -52,7 +52,7 @@

Source: Engines/Wine/Plugins/sound driver/script.js


diff --git a/docs/jsdoc/Engines_Wine_Plugins_virtual desktop_script.js.html b/docs/jsdoc/Engines_Wine_Plugins_virtual desktop_script.js.html index 3a9874ef39..1ba1422339 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_virtual desktop_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_virtual desktop_script.js.html @@ -54,7 +54,7 @@

Source: Engines/Wine/Plugins/virtual desktop/script.js
diff --git a/docs/jsdoc/Engines_Wine_QuickScript_Quick Script_script.js.html b/docs/jsdoc/Engines_Wine_QuickScript_Quick Script_script.js.html index 112cba301b..cecb641c8f 100644 --- a/docs/jsdoc/Engines_Wine_QuickScript_Quick Script_script.js.html +++ b/docs/jsdoc/Engines_Wine_QuickScript_Quick Script_script.js.html @@ -168,7 +168,7 @@

Source: Engines/Wine/QuickScript/Quick Script/script.js
diff --git a/docs/jsdoc/Engines_Wine_Settings_DirectDraw renderer_script.js.html b/docs/jsdoc/Engines_Wine_Settings_DirectDraw renderer_script.js.html index 11e130a879..0004e343b9 100644 --- a/docs/jsdoc/Engines_Wine_Settings_DirectDraw renderer_script.js.html +++ b/docs/jsdoc/Engines_Wine_Settings_DirectDraw renderer_script.js.html @@ -84,7 +84,7 @@

Source: Engines/Wine/Settings/DirectDraw renderer/script.
diff --git a/docs/jsdoc/Engines_Wine_Settings_GLSL_script.js.html b/docs/jsdoc/Engines_Wine_Settings_GLSL_script.js.html index 93bd26a871..0550f6069a 100644 --- a/docs/jsdoc/Engines_Wine_Settings_GLSL_script.js.html +++ b/docs/jsdoc/Engines_Wine_Settings_GLSL_script.js.html @@ -84,7 +84,7 @@

Source: Engines/Wine/Settings/GLSL/script.js


diff --git a/docs/jsdoc/Engines_Wine_Settings_always offscreen_script.js.html b/docs/jsdoc/Engines_Wine_Settings_always offscreen_script.js.html index 033aed659b..c8152ffc3e 100644 --- a/docs/jsdoc/Engines_Wine_Settings_always offscreen_script.js.html +++ b/docs/jsdoc/Engines_Wine_Settings_always offscreen_script.js.html @@ -84,7 +84,7 @@

Source: Engines/Wine/Settings/always offscreen/script.js<
diff --git a/docs/jsdoc/Engines_Wine_Settings_mouse warp override_script.js.html b/docs/jsdoc/Engines_Wine_Settings_mouse warp override_script.js.html index 5e3890ae0e..b17bf35e02 100644 --- a/docs/jsdoc/Engines_Wine_Settings_mouse warp override_script.js.html +++ b/docs/jsdoc/Engines_Wine_Settings_mouse warp override_script.js.html @@ -84,7 +84,7 @@

Source: Engines/Wine/Settings/mouse warp override/script.
diff --git a/docs/jsdoc/Engines_Wine_Settings_multisampling_script.js.html b/docs/jsdoc/Engines_Wine_Settings_multisampling_script.js.html index 413cee9b3b..63e49d0e5e 100644 --- a/docs/jsdoc/Engines_Wine_Settings_multisampling_script.js.html +++ b/docs/jsdoc/Engines_Wine_Settings_multisampling_script.js.html @@ -84,7 +84,7 @@

Source: Engines/Wine/Settings/multisampling/script.js


diff --git a/docs/jsdoc/Engines_Wine_Settings_offscreen rendering mode_script.js.html b/docs/jsdoc/Engines_Wine_Settings_offscreen rendering mode_script.js.html index 3f994d8611..f915dfcba3 100644 --- a/docs/jsdoc/Engines_Wine_Settings_offscreen rendering mode_script.js.html +++ b/docs/jsdoc/Engines_Wine_Settings_offscreen rendering mode_script.js.html @@ -84,7 +84,7 @@

Source: Engines/Wine/Settings/offscreen rendering mode/sc
diff --git a/docs/jsdoc/Engines_Wine_Settings_render target lock mode_script.js.html b/docs/jsdoc/Engines_Wine_Settings_render target lock mode_script.js.html index 1ac127c480..3af2d424b3 100644 --- a/docs/jsdoc/Engines_Wine_Settings_render target lock mode_script.js.html +++ b/docs/jsdoc/Engines_Wine_Settings_render target lock mode_script.js.html @@ -84,7 +84,7 @@

Source: Engines/Wine/Settings/render target lock mode/scr
diff --git a/docs/jsdoc/Engines_Wine_Settings_strict draw ordering_script.js.html b/docs/jsdoc/Engines_Wine_Settings_strict draw ordering_script.js.html index d745c219ca..dcd9933ea9 100644 --- a/docs/jsdoc/Engines_Wine_Settings_strict draw ordering_script.js.html +++ b/docs/jsdoc/Engines_Wine_Settings_strict draw ordering_script.js.html @@ -84,7 +84,7 @@

Source: Engines/Wine/Settings/strict draw ordering/script
diff --git a/docs/jsdoc/Engines_Wine_Settings_video memory size_script.js.html b/docs/jsdoc/Engines_Wine_Settings_video memory size_script.js.html index ac92f63c17..bb3934b4b4 100644 --- a/docs/jsdoc/Engines_Wine_Settings_video memory size_script.js.html +++ b/docs/jsdoc/Engines_Wine_Settings_video memory size_script.js.html @@ -83,7 +83,7 @@

Source: Engines/Wine/Settings/video memory size/script.js
diff --git a/docs/jsdoc/Engines_Wine_Shortcuts_Reader_script.js.html b/docs/jsdoc/Engines_Wine_Shortcuts_Reader_script.js.html index a4fbdcbacd..666375643f 100644 --- a/docs/jsdoc/Engines_Wine_Shortcuts_Reader_script.js.html +++ b/docs/jsdoc/Engines_Wine_Shortcuts_Reader_script.js.html @@ -157,7 +157,7 @@

Source: Engines/Wine/Shortcuts/Reader/script.js


diff --git a/docs/jsdoc/Engines_Wine_Shortcuts_Wine_script.js.html b/docs/jsdoc/Engines_Wine_Shortcuts_Wine_script.js.html index 1442e6efa2..0d156869f0 100644 --- a/docs/jsdoc/Engines_Wine_Shortcuts_Wine_script.js.html +++ b/docs/jsdoc/Engines_Wine_Shortcuts_Wine_script.js.html @@ -181,7 +181,7 @@

Source: Engines/Wine/Shortcuts/Wine/script.js


diff --git a/docs/jsdoc/Engines_Wine_Tools_Configure Wine_script.js.html b/docs/jsdoc/Engines_Wine_Tools_Configure Wine_script.js.html index 3751b3e60b..9fcb5b4b49 100644 --- a/docs/jsdoc/Engines_Wine_Tools_Configure Wine_script.js.html +++ b/docs/jsdoc/Engines_Wine_Tools_Configure Wine_script.js.html @@ -52,7 +52,7 @@

Source: Engines/Wine/Tools/Configure Wine/script.js


diff --git a/docs/jsdoc/Engines_Wine_Tools_Kill Wine Processes_script.js.html b/docs/jsdoc/Engines_Wine_Tools_Kill Wine Processes_script.js.html index 5c4065929b..bffa28caa5 100644 --- a/docs/jsdoc/Engines_Wine_Tools_Kill Wine Processes_script.js.html +++ b/docs/jsdoc/Engines_Wine_Tools_Kill Wine Processes_script.js.html @@ -52,7 +52,7 @@

Source: Engines/Wine/Tools/Kill Wine Processes/script.js<
diff --git a/docs/jsdoc/Engines_Wine_Tools_Reboot Wine_script.js.html b/docs/jsdoc/Engines_Wine_Tools_Reboot Wine_script.js.html index 3685546a87..33e2e5ab7e 100644 --- a/docs/jsdoc/Engines_Wine_Tools_Reboot Wine_script.js.html +++ b/docs/jsdoc/Engines_Wine_Tools_Reboot Wine_script.js.html @@ -52,7 +52,7 @@

Source: Engines/Wine/Tools/Reboot Wine/script.js


diff --git a/docs/jsdoc/Engines_Wine_Tools_Repair Wine Prefix_script.js.html b/docs/jsdoc/Engines_Wine_Tools_Repair Wine Prefix_script.js.html index abd4fc4c73..87e975a273 100644 --- a/docs/jsdoc/Engines_Wine_Tools_Repair Wine Prefix_script.js.html +++ b/docs/jsdoc/Engines_Wine_Tools_Repair Wine Prefix_script.js.html @@ -52,7 +52,7 @@

Source: Engines/Wine/Tools/Repair Wine Prefix/script.js
diff --git a/docs/jsdoc/Engines_Wine_Tools_Wine Registry Editor_script.js.html b/docs/jsdoc/Engines_Wine_Tools_Wine Registry Editor_script.js.html index 03efa6c12b..9537416078 100644 --- a/docs/jsdoc/Engines_Wine_Tools_Wine Registry Editor_script.js.html +++ b/docs/jsdoc/Engines_Wine_Tools_Wine Registry Editor_script.js.html @@ -53,7 +53,7 @@

Source: Engines/Wine/Tools/Wine Registry Editor/script.js
diff --git a/docs/jsdoc/Engines_Wine_Tools_Wine Task Manager_script.js.html b/docs/jsdoc/Engines_Wine_Tools_Wine Task Manager_script.js.html index db29a86768..169c4b63dc 100644 --- a/docs/jsdoc/Engines_Wine_Tools_Wine Task Manager_script.js.html +++ b/docs/jsdoc/Engines_Wine_Tools_Wine Task Manager_script.js.html @@ -52,7 +52,7 @@

Source: Engines/Wine/Tools/Wine Task Manager/script.js
diff --git a/docs/jsdoc/Engines_Wine_Tools_Wine Terminal Opener_script.js.html b/docs/jsdoc/Engines_Wine_Tools_Wine Terminal Opener_script.js.html index ee0501ec9e..e18d642085 100644 --- a/docs/jsdoc/Engines_Wine_Tools_Wine Terminal Opener_script.js.html +++ b/docs/jsdoc/Engines_Wine_Tools_Wine Terminal Opener_script.js.html @@ -55,7 +55,7 @@

Source: Engines/Wine/Tools/Wine Terminal Opener/script.js
diff --git a/docs/jsdoc/Engines_Wine_Tools_Wine Uninstaller_script.js.html b/docs/jsdoc/Engines_Wine_Tools_Wine Uninstaller_script.js.html index 83606db0de..c4a8699bb9 100644 --- a/docs/jsdoc/Engines_Wine_Tools_Wine Uninstaller_script.js.html +++ b/docs/jsdoc/Engines_Wine_Tools_Wine Uninstaller_script.js.html @@ -53,7 +53,7 @@

Source: Engines/Wine/Tools/Wine Uninstaller/script.js


diff --git a/docs/jsdoc/Engines_Wine_Tools_WineConsole_script.js.html b/docs/jsdoc/Engines_Wine_Tools_WineConsole_script.js.html index 75d62e28f2..c87bd86ae5 100644 --- a/docs/jsdoc/Engines_Wine_Tools_WineConsole_script.js.html +++ b/docs/jsdoc/Engines_Wine_Tools_WineConsole_script.js.html @@ -52,7 +52,7 @@

Source: Engines/Wine/Tools/WineConsole/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_DXVK_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_DXVK_script.js.html index 164be1cef4..86790b40bf 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_DXVK_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_DXVK_script.js.html @@ -87,7 +87,7 @@

Source: Engines/Wine/Verbs/DXVK/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_PhysX_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_PhysX_script.js.html index c658216533..5e8449b570 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_PhysX_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_PhysX_script.js.html @@ -57,7 +57,7 @@

Source: Engines/Wine/Verbs/PhysX/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_QuickTime 7.6_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_QuickTime 7.6_script.js.html index 3013fcbfc1..f66597c288 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_QuickTime 7.6_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_QuickTime 7.6_script.js.html @@ -56,7 +56,7 @@

Source: Engines/Wine/Verbs/QuickTime 7.6/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_Tahoma_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_Tahoma_script.js.html index 625235dc90..a9727c0d3c 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_Tahoma_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_Tahoma_script.js.html @@ -70,7 +70,7 @@

Source: Engines/Wine/Verbs/Tahoma/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_Uplay_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_Uplay_script.js.html index d70df7e72a..5e4c0b910a 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_Uplay_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_Uplay_script.js.html @@ -55,7 +55,7 @@

Source: Engines/Wine/Verbs/Uplay/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_Windows XP SP 3_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_Windows XP SP 3_script.js.html index 04ae551c3b..e10aa1572e 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_Windows XP SP 3_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_Windows XP SP 3_script.js.html @@ -76,7 +76,7 @@

Source: Engines/Wine/Verbs/Windows XP SP 3/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_corefonts_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_corefonts_script.js.html index d7a1dfaea1..88acd5151a 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_corefonts_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_corefonts_script.js.html @@ -171,7 +171,7 @@

Source: Engines/Wine/Verbs/corefonts/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_crypt32_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_crypt32_script.js.html index ac4f5c1490..c676c117cf 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_crypt32_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_crypt32_script.js.html @@ -52,7 +52,7 @@

Source: Engines/Wine/Verbs/crypt32/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_d3dx10_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_d3dx10_script.js.html index abb444ddee..1eaf36f4c1 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_d3dx10_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_d3dx10_script.js.html @@ -111,7 +111,7 @@

Source: Engines/Wine/Verbs/d3dx10/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_d3dx9_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_d3dx9_script.js.html index e4d2e1c56a..63e230d18f 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_d3dx9_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_d3dx9_script.js.html @@ -118,7 +118,7 @@

Source: Engines/Wine/Verbs/d3dx9/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_dotnet40_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_dotnet40_script.js.html index 8b838e0e39..8ef55d5f1c 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_dotnet40_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_dotnet40_script.js.html @@ -79,7 +79,7 @@

Source: Engines/Wine/Verbs/dotnet40/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_dotnet452_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_dotnet452_script.js.html index cd42e5a48e..90f75ed9cb 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_dotnet452_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_dotnet452_script.js.html @@ -91,7 +91,7 @@

Source: Engines/Wine/Verbs/dotnet452/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_dotnet45_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_dotnet45_script.js.html index 8a72878bd3..4e920ec2cc 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_dotnet45_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_dotnet45_script.js.html @@ -92,7 +92,7 @@

Source: Engines/Wine/Verbs/dotnet45/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_luna_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_luna_script.js.html index 4c2b2b91b4..1f3d266f8c 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_luna_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_luna_script.js.html @@ -67,7 +67,7 @@

Source: Engines/Wine/Verbs/luna/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_mfc42_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_mfc42_script.js.html index 3a13261fc7..0c956d9a09 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_mfc42_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_mfc42_script.js.html @@ -72,7 +72,7 @@

Source: Engines/Wine/Verbs/mfc42/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_msls31_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_msls31_script.js.html index 8193b477dd..a2b7ecd014 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_msls31_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_msls31_script.js.html @@ -61,7 +61,7 @@

Source: Engines/Wine/Verbs/msls31/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_mspatcha_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_mspatcha_script.js.html index 7b7acec9c0..702dc92516 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_mspatcha_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_mspatcha_script.js.html @@ -75,7 +75,7 @@

Source: Engines/Wine/Verbs/mspatcha/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_quartz_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_quartz_script.js.html index fb55d41332..57043ab955 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_quartz_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_quartz_script.js.html @@ -76,7 +76,7 @@

Source: Engines/Wine/Verbs/quartz/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_sandbox_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_sandbox_script.js.html index fbc9d03179..f12aefff3c 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_sandbox_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_sandbox_script.js.html @@ -55,7 +55,7 @@

Source: Engines/Wine/Verbs/sandbox/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_secur32_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_secur32_script.js.html index b46c0b052f..443eb7c1a8 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_secur32_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_secur32_script.js.html @@ -88,7 +88,7 @@

Source: Engines/Wine/Verbs/secur32/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_vcrun2003_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_vcrun2003_script.js.html index 8b8b63d5d4..ab7a23946e 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun2003_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun2003_script.js.html @@ -67,7 +67,7 @@

Source: Engines/Wine/Verbs/vcrun2003/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_vcrun2005_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_vcrun2005_script.js.html index b681ca58dc..9ae10ab031 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun2005_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun2005_script.js.html @@ -69,7 +69,7 @@

Source: Engines/Wine/Verbs/vcrun2005/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_vcrun2008_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_vcrun2008_script.js.html index 3884182e52..b15a4293f9 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun2008_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun2008_script.js.html @@ -81,7 +81,7 @@

Source: Engines/Wine/Verbs/vcrun2008/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_vcrun2010_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_vcrun2010_script.js.html index af668e90b8..8e688c4033 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun2010_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun2010_script.js.html @@ -80,7 +80,7 @@

Source: Engines/Wine/Verbs/vcrun2010/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_vcrun2012_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_vcrun2012_script.js.html index dad1c668ad..3551d4960c 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun2012_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun2012_script.js.html @@ -80,7 +80,7 @@

Source: Engines/Wine/Verbs/vcrun2012/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_vcrun2013_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_vcrun2013_script.js.html index 78a65150ba..0b9d835001 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun2013_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun2013_script.js.html @@ -74,7 +74,7 @@

Source: Engines/Wine/Verbs/vcrun2013/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_vcrun2015_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_vcrun2015_script.js.html index 133360ca35..03dcf696ea 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun2015_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun2015_script.js.html @@ -90,7 +90,7 @@

Source: Engines/Wine/Verbs/vcrun2015/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_vcrun2017_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_vcrun2017_script.js.html index e792e73d91..6a19fe9429 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun2017_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun2017_script.js.html @@ -90,7 +90,7 @@

Source: Engines/Wine/Verbs/vcrun2017/script.js


diff --git a/docs/jsdoc/Engines_Wine_Verbs_xact_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_xact_script.js.html index 0456a60f70..1dc369c4b0 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_xact_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_xact_script.js.html @@ -212,7 +212,7 @@

Source: Engines/Wine/Verbs/xact/script.js


diff --git a/docs/jsdoc/Extractor.html b/docs/jsdoc/Extractor.html index 4ebbc3da41..0c779bfd70 100644 --- a/docs/jsdoc/Extractor.html +++ b/docs/jsdoc/Extractor.html @@ -889,7 +889,7 @@
Returns:

diff --git a/docs/jsdoc/Resource.html b/docs/jsdoc/Resource.html index 99201c15a2..d2ff5225a4 100644 --- a/docs/jsdoc/Resource.html +++ b/docs/jsdoc/Resource.html @@ -1207,7 +1207,7 @@
Returns:

diff --git a/docs/jsdoc/ShortcutReader.html b/docs/jsdoc/ShortcutReader.html index 1a922ee879..b1c8461e7e 100644 --- a/docs/jsdoc/ShortcutReader.html +++ b/docs/jsdoc/ShortcutReader.html @@ -779,7 +779,7 @@
Returns:

diff --git a/docs/jsdoc/Utils_Functions_Apps_Resources_script.js.html b/docs/jsdoc/Utils_Functions_Apps_Resources_script.js.html index 9300c4fc5c..c8c23a6c59 100644 --- a/docs/jsdoc/Utils_Functions_Apps_Resources_script.js.html +++ b/docs/jsdoc/Utils_Functions_Apps_Resources_script.js.html @@ -71,7 +71,7 @@

Source: Utils/Functions/Apps/Resources/script.js


diff --git a/docs/jsdoc/Utils_Functions_Filesystem_Extract_script.js.html b/docs/jsdoc/Utils_Functions_Filesystem_Extract_script.js.html index cf8e0e3397..8a55eb6662 100644 --- a/docs/jsdoc/Utils_Functions_Filesystem_Extract_script.js.html +++ b/docs/jsdoc/Utils_Functions_Filesystem_Extract_script.js.html @@ -178,7 +178,7 @@

Source: Utils/Functions/Filesystem/Extract/script.js


diff --git a/docs/jsdoc/Utils_Functions_Filesystem_Files_script.js.html b/docs/jsdoc/Utils_Functions_Filesystem_Files_script.js.html index 3c46a496eb..2687b17241 100644 --- a/docs/jsdoc/Utils_Functions_Filesystem_Files_script.js.html +++ b/docs/jsdoc/Utils_Functions_Filesystem_Files_script.js.html @@ -29,13 +29,22 @@

Source: Utils/Functions/Filesystem/Files/script.js

var fileAnalyser = Bean("fileAnalyser");
 var fileUtilities = Bean("fileUtilities");
 
+/**
+* lists files and directories
+* @param {string} directoryPath directory path
+* @returns {string[]} list of files and directories
+*/
+function ls(directoryPath) { // eslint-disable-line no-unused-vars
+    return fileUtilities.ls(new java.io.File(directoryPath));
+}
+
 /**
 * creates directory
 * @param {string} directoryPath directory path
 * @returns {void}
 */
 function mkdir(directoryPath) { // eslint-disable-line no-unused-vars
-    fileUtilities.mkdir(new java.io.File(directoryPath))
+    fileUtilities.mkdir(new java.io.File(directoryPath));
 }
 
 /**
@@ -197,7 +206,7 @@ 

Source: Utils/Functions/Filesystem/Files/script.js


diff --git a/docs/jsdoc/Utils_Functions_Net_Download_script.js.html b/docs/jsdoc/Utils_Functions_Net_Download_script.js.html index 6024688d64..ce06dccef1 100644 --- a/docs/jsdoc/Utils_Functions_Net_Download_script.js.html +++ b/docs/jsdoc/Utils_Functions_Net_Download_script.js.html @@ -179,7 +179,7 @@

Source: Utils/Functions/Net/Download/script.js


diff --git a/docs/jsdoc/Utils_Functions_Net_Resource_script.js.html b/docs/jsdoc/Utils_Functions_Net_Resource_script.js.html index 3ffecaca7f..a3ddc1e6ba 100644 --- a/docs/jsdoc/Utils_Functions_Net_Resource_script.js.html +++ b/docs/jsdoc/Utils_Functions_Net_Resource_script.js.html @@ -146,7 +146,7 @@

Source: Utils/Functions/Net/Resource/script.js


diff --git a/docs/jsdoc/Wine.html b/docs/jsdoc/Wine.html index 08aff08699..0caece0cb9 100644 --- a/docs/jsdoc/Wine.html +++ b/docs/jsdoc/Wine.html @@ -7535,7 +7535,7 @@
Returns:

diff --git a/docs/jsdoc/WineShortcut.html b/docs/jsdoc/WineShortcut.html index ca24edf5e9..051905a997 100644 --- a/docs/jsdoc/WineShortcut.html +++ b/docs/jsdoc/WineShortcut.html @@ -1522,7 +1522,7 @@
Returns:

diff --git a/docs/jsdoc/global.html b/docs/jsdoc/global.html index f94d6d2921..651286c1a2 100644 --- a/docs/jsdoc/global.html +++ b/docs/jsdoc/global.html @@ -166,7 +166,7 @@

- setting to configure strict draw ordering + setting to set the render target lock mode
@@ -204,7 +204,7 @@

Source:
@@ -228,7 +228,7 @@

- setting to set the video memory size + setting to set the offscreen rendering mode
@@ -266,7 +266,7 @@

Source:
@@ -290,7 +290,7 @@

- setting to set always offscreen + setting to configure multisampling
@@ -328,7 +328,7 @@

Source:
@@ -352,7 +352,7 @@

- setting to enable/disable GLSL + setting to configure mouse warp override
@@ -390,7 +390,7 @@

Source:
@@ -414,7 +414,7 @@

- setting to set the DirectDraw renderer + setting to set always offscreen
@@ -452,7 +452,7 @@

Source:
@@ -476,7 +476,7 @@

- setting to configure multisampling + setting to enable/disable GLSL
@@ -514,7 +514,7 @@

Source:
@@ -538,7 +538,7 @@

- setting to set the offscreen rendering mode + setting to set the DirectDraw renderer
@@ -576,7 +576,7 @@

Source:
@@ -600,7 +600,7 @@

- setting to set the render target lock mode + setting to set the video memory size
@@ -638,7 +638,7 @@

Source:
@@ -662,7 +662,7 @@

- setting to configure mouse warp override + setting to configure strict draw ordering
@@ -700,7 +700,7 @@

Source:
@@ -724,7 +724,7 @@

too
- tool to open a terminal in a Wine prefix + tool to open the Wine registry editor
@@ -762,7 +762,7 @@

too
Source:
@@ -786,7 +786,7 @@

too
- tool to open the Wine registry editor + tool to uninstall Wine
@@ -824,7 +824,7 @@

too
Source:
@@ -848,7 +848,7 @@

too
- tool to repair a Wine prefix + tool to open a terminal in a Wine prefix
@@ -886,7 +886,7 @@

too
Source:
@@ -910,7 +910,7 @@

too
- tool to reboot Wine + tool to open a Wine console
@@ -948,7 +948,7 @@

too
Source:
@@ -972,7 +972,7 @@

too
- tool to uninstall Wine + tool to configure Wine
@@ -1010,7 +1010,7 @@

too
Source:
@@ -1034,7 +1034,7 @@

too
- tool to kill running Wine processes + tool to open the Wine task manager
@@ -1072,7 +1072,7 @@

too
Source:
@@ -1096,7 +1096,7 @@

too
- tool to configure Wine + tool to kill running Wine processes
@@ -1134,7 +1134,7 @@

too
Source:
@@ -1158,7 +1158,7 @@

too
- tool to open a Wine console + tool to repair a Wine prefix
@@ -1196,7 +1196,7 @@

too
Source:
@@ -1220,7 +1220,7 @@

too
- tool to open the Wine task manager + tool to reboot Wine
@@ -1258,7 +1258,7 @@

too
Source:
@@ -1387,7 +1387,7 @@

Parameters:
Source:
@@ -1567,7 +1567,7 @@
Parameters:
Source:
@@ -1720,7 +1720,7 @@
Parameters:
Source:
@@ -1877,7 +1877,7 @@
Parameters:
Source:
@@ -2034,7 +2034,7 @@
Parameters:
Source:
@@ -2191,7 +2191,7 @@
Parameters:
Source:
@@ -2371,7 +2371,7 @@
Parameters:
Source:
@@ -2423,6 +2423,163 @@
Returns:
+

ls(directoryPath) → {Array.<string>}

+ + + + + + +
+ lists files and directories +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
directoryPath + + +string + + + + directory path
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ list of files and directories +
+ + + +
+
+ Type +
+
+ +Array.<string> + + +
+
+ + + + + + + + + + + + +

mkdir(directoryPath) → {void}

@@ -2524,7 +2681,7 @@
Parameters:
Source:
@@ -2677,7 +2834,7 @@
Parameters:
Source:
@@ -2830,7 +2987,7 @@
Parameters:
Source:
@@ -3006,7 +3163,7 @@
Parameters:
Source:
@@ -3068,7 +3225,7 @@
Returns:

diff --git a/docs/jsdoc/index.html b/docs/jsdoc/index.html index 50311d4a97..27522fed5f 100644 --- a/docs/jsdoc/index.html +++ b/docs/jsdoc/index.html @@ -50,7 +50,7 @@


From 37d0dcfdfb82fd741f24e8a523fe1b1cb9ccb283 Mon Sep 17 00:00:00 2001 From: Zemogiter Date: Thu, 17 May 2018 19:47:58 +0200 Subject: [PATCH 10/10] Fix Steam QuickScript (#630) --- Engines/Wine/QuickScript/Steam Script/script.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Engines/Wine/QuickScript/Steam Script/script.js b/Engines/Wine/QuickScript/Steam Script/script.js index ec983cbc0d..a285e5e961 100644 --- a/Engines/Wine/QuickScript/Steam Script/script.js +++ b/Engines/Wine/QuickScript/Steam Script/script.js @@ -94,12 +94,13 @@ SteamScript.prototype.go = function () { .to(tempFile) .get(); + setupWizard.wait(tr("Please follow the steps of the Steam setup.\n\nUncheck \"Run Steam\" or close Steam completely after the setup so that the installation of \"{0}\" can continue.", this._name)); + var wine = new Wine() .wizard(setupWizard) .prefix(this._name, this._wineDistribution, this._wineArchitecture, this._wineVersion) .luna() - .run(tempFile) - .wait(tr("Please follow the steps of the Steam setup.\n\nUncheck \"Run Steam\" or close Steam completely after the setup so that the installation of \"{0}\" can continue.", this._name)); + .run(tempFile, [], null, false, true); // Steam installation has finished setupWizard.wait(tr("Please wait ..."));