diff --git a/Applications/Games/Age of Empires III: Complete Collection/Steam/script.js b/Applications/Games/Age of Empires III: Complete Collection/Steam/script.js index 11a3195d94..ecf1837fb5 100644 --- a/Applications/Games/Age of Empires III: Complete Collection/Steam/script.js +++ b/Applications/Games/Age of Empires III: Complete Collection/Steam/script.js @@ -1,6 +1,6 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); include("engines.wine.plugins.override_dll"); -include("engines.wine.verbs.mfc42"); +const Mfc42 = include("engines.wine.verbs.mfc42"); new SteamScript() .name("Age of Empires® III: Complete Collection") @@ -8,9 +8,9 @@ new SteamScript() .author("Quentin PARIS") .appId(105450) .postInstall(function (wine /*, wizard*/) { - wine.mfc42(); - wine - .overrideDLL() + new Mfc42(wine).go(); + + wine.overrideDLL() .set("native, builtin", ["pidgen"]) .do(); }); diff --git a/Applications/Games/Anno 2070/Local/script.js b/Applications/Games/Anno 2070/Local/script.js index d33e46a7a5..aea813fcf5 100644 --- a/Applications/Games/Anno 2070/Local/script.js +++ b/Applications/Games/Anno 2070/Local/script.js @@ -1,11 +1,11 @@ const LocalInstallerScript = include("engines.wine.quick_script.local_installer_script"); -const {touch, writeToFile, chmod} = include("utils.functions.filesystem.files"); +const { touch, writeToFile, chmod } = include("utils.functions.filesystem.files"); include("engines.wine.plugins.virtual_desktop"); include("engines.wine.plugins.override_dll"); -include("engines.wine.verbs.corefonts"); -include("engines.wine.verbs.crypt32"); -include("engines.wine.verbs.d3dx10"); +const Corefonts = include("engines.wine.verbs.corefonts"); +const Crypt32 = include("engines.wine.verbs.crypt32"); +const D3DX10 = include("engines.wine.verbs.d3dx10"); new LocalInstallerScript() .name("Anno 2070") @@ -18,11 +18,10 @@ new LocalInstallerScript() .wineDistribution("upstream") .preInstall(function (wine) { wine.setVirtualDesktop(); - wine.crypt32(); - wine.corefonts(); - wine.d3dx10(); - wine - .overrideDLL() + new Crypt32(wine).go(); + new Corefonts(wine).go(); + new D3DX10(wine).go(); + wine.overrideDLL() .set("native, builtin", ["winhttp", "msvcrt40", "msvcr100", "crypt32"]) .do(); }) diff --git a/Applications/Games/Anno 2070/Uplay/script.js b/Applications/Games/Anno 2070/Uplay/script.js index e06786875c..44ed3dd27e 100644 --- a/Applications/Games/Anno 2070/Uplay/script.js +++ b/Applications/Games/Anno 2070/Uplay/script.js @@ -1,6 +1,6 @@ const UplayScript = include("engines.wine.quick_script.uplay_script"); -include("engines.wine.verbs.corefonts"); +const Corefonts = include("engines.wine.verbs.corefonts"); include("engines.wine.plugins.virtual_desktop"); new UplayScript() @@ -13,5 +13,5 @@ new UplayScript() .appId(22) .preInstall(function (wine /*, wizard*/) { wine.setVirtualDesktop(); - wine.corefonts(); + new Corefonts(wine).go(); }); diff --git a/Applications/Games/Assassin's Creed IV Black Flag/Steam/script.js b/Applications/Games/Assassin's Creed IV Black Flag/Steam/script.js index af3a61e84a..b5748e78a7 100644 --- a/Applications/Games/Assassin's Creed IV Black Flag/Steam/script.js +++ b/Applications/Games/Assassin's Creed IV Black Flag/Steam/script.js @@ -1,7 +1,7 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); -include("engines.wine.verbs.uplay"); +const Uplay = include("engines.wine.verbs.uplay"); new SteamScript() .name("Assassin’s Creed® IV Black Flag™") @@ -12,5 +12,5 @@ new SteamScript() .wineDistribution("staging") .postInstall(function (wine /*, wizard*/) { // the automatically installed Uplay version does not update properly - wine.uplay(); + new Uplay(wine).go(); }); diff --git a/Applications/Games/Assassin's Creed Revelations/Steam/script.js b/Applications/Games/Assassin's Creed Revelations/Steam/script.js index c155e4f1f3..791b6f560b 100644 --- a/Applications/Games/Assassin's Creed Revelations/Steam/script.js +++ b/Applications/Games/Assassin's Creed Revelations/Steam/script.js @@ -1,7 +1,7 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); -include("engines.wine.verbs.uplay"); +const Uplay = include("engines.wine.verbs.uplay"); new SteamScript() .name("Assassin's Creed® Revelations") @@ -11,5 +11,5 @@ new SteamScript() .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") .postInstall(function (wine /*, wizard*/) { - wine.uplay(); + new Uplay(wine).go(); }); diff --git a/Applications/Games/Assassin's Creed: Brotherhood/Steam/script.js b/Applications/Games/Assassin's Creed: Brotherhood/Steam/script.js index 7bfe4d26d2..e0bd6b60cc 100644 --- a/Applications/Games/Assassin's Creed: Brotherhood/Steam/script.js +++ b/Applications/Games/Assassin's Creed: Brotherhood/Steam/script.js @@ -1,7 +1,7 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); -include("engines.wine.verbs.uplay"); +const Uplay = include("engines.wine.verbs.uplay"); new SteamScript() .name("Assassin’s Creed® Brotherhood") @@ -11,5 +11,5 @@ new SteamScript() .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") .postInstall(function (wine /*, wizard*/) { - wine.uplay(); + new Uplay(wine).go(); }); diff --git a/Applications/Games/Audiosurf/Steam/script.js b/Applications/Games/Audiosurf/Steam/script.js index fa19015cb3..f6dc7c2a25 100644 --- a/Applications/Games/Audiosurf/Steam/script.js +++ b/Applications/Games/Audiosurf/Steam/script.js @@ -1,7 +1,8 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); -include("engines.wine.verbs.quicktime76"); -include("engines.wine.verbs.corefonts"); -include("engines.wine.verbs.tahoma"); + +const QuickTime76 = include("engines.wine.verbs.quicktime76"); +const Corefonts = include("engines.wine.verbs.corefonts"); +const Tahoma = include("engines.wine.verbs.tahoma"); new SteamScript() .name("Audiosurf") @@ -9,7 +10,7 @@ new SteamScript() .author("Brainzyy") .appId(12900) .preInstall(function (wine /*, wizard*/) { - wine.quicktime76(); - wine.corefonts(); - wine.tahoma(); + new QuickTime76(wine).go(); + new Corefonts(wine).go(); + new Tahoma(wine).go(); }); diff --git a/Applications/Games/Blizzard app/Online/script.js b/Applications/Games/Blizzard app/Online/script.js index 1c87463cb7..2c50620cf2 100644 --- a/Applications/Games/Blizzard app/Online/script.js +++ b/Applications/Games/Blizzard app/Online/script.js @@ -1,6 +1,7 @@ const OnlineInstallerScript = include("engines.wine.quick_script.online_installer_script"); -include("engines.wine.verbs.vcrun2015"); -include("engines.wine.verbs.corefonts"); + +const Vcrun2015 = include("engines.wine.verbs.vcrun2015"); +const Corefonts = include("engines.wine.verbs.corefonts"); new OnlineInstallerScript() .name("Blizzard app") @@ -15,6 +16,6 @@ new OnlineInstallerScript() .wineVersion("3.19") .wineDistribution("staging") .preInstall(function (wine /*, wizard*/) { - wine.vcrun2015(); - wine.corefonts(); + new Vcrun2015(wine).go(); + new Corefonts(wine).go(); }); diff --git a/Applications/Games/Command and Conquer - Tiberium Wars/Local/script.js b/Applications/Games/Command and Conquer - Tiberium Wars/Local/script.js index 79babe2b94..cf77e55e82 100644 --- a/Applications/Games/Command and Conquer - Tiberium Wars/Local/script.js +++ b/Applications/Games/Command and Conquer - Tiberium Wars/Local/script.js @@ -3,7 +3,7 @@ const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); include("engines.wine.plugins.csmt"); include("engines.wine.plugins.windows_version"); -include("engines.wine.verbs.d3dx9"); +const D3DX9 = include("engines.wine.verbs.d3dx9"); new LocalInstallerScript() .name("Command and Conquer - Tiberium Wars") @@ -15,6 +15,6 @@ new LocalInstallerScript() .wineDistribution("staging") .preInstall(function (wine /*, wizard*/) { wine.windowsVersion("winxp"); - wine.d3dx9(); + new D3DX9(wine).go(); wine.enableCSMT(); }); diff --git a/Applications/Games/DC Universe Online/Online/script.js b/Applications/Games/DC Universe Online/Online/script.js index 57328bdc1d..f3d14e1dab 100644 --- a/Applications/Games/DC Universe Online/Online/script.js +++ b/Applications/Games/DC Universe Online/Online/script.js @@ -1,6 +1,7 @@ const OnlineInstallerScript = include("engines.wine.quick_script.online_installer_script"); -include("engines.wine.verbs.vcrun2012"); -include("engines.wine.verbs.d3dx9"); + +const Vcrun2012 = include("engines.wine.verbs.vcrun2012"); +const D3DX9 = include("engines.wine.verbs.d3dx9"); new OnlineInstallerScript() .name("DC Universe Online") @@ -11,6 +12,6 @@ new OnlineInstallerScript() .category("Games") .executable("LaunchPad.exe") .preInstall(function (wine /*, wizard*/) { - wine.vcrun2012(); - wine.d3dx9(); + new Vcrun2012(wine).go(); + new D3DX9(wine).go(); }); diff --git a/Applications/Games/Earth Eternal - Valkal's Shadow/Online/script.js b/Applications/Games/Earth Eternal - Valkal's Shadow/Online/script.js index 3aa44d3ab8..619ac527b6 100644 --- a/Applications/Games/Earth Eternal - Valkal's Shadow/Online/script.js +++ b/Applications/Games/Earth Eternal - Valkal's Shadow/Online/script.js @@ -1,10 +1,10 @@ const OnlineInstallerScript = include("engines.wine.quick_script.online_installer_script"); -const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); +const { LATEST_STAGING_VERSION } = include("engines.wine.engine.versions"); include("engines.wine.plugins.windows_version"); -include("engines.wine.verbs.corefonts"); -include("engines.wine.verbs.d3dx9"); -include("engines.wine.verbs.vcrun2008"); +const Corefonts = include("engines.wine.verbs.corefonts"); +const D3DX9 = include("engines.wine.verbs.d3dx9"); +const Vcrun2008 = include("engines.wine.verbs.vcrun2008"); new OnlineInstallerScript() .name("Earth Eternal - Valkal's Shadow") @@ -19,7 +19,7 @@ new OnlineInstallerScript() .wineDistribution("staging") .preInstall(function (wine /*, wizard*/) { wine.windowsVersion("winxp"); - wine.corefonts(); - wine.d3dx9(); - wine.vcrun2008(); + new Corefonts(wine).go(); + new D3DX9(wine).go(); + new Vcrun2008(wine).go(); }); diff --git a/Applications/Games/Elite:Dangerous/Steam/script.js b/Applications/Games/Elite:Dangerous/Steam/script.js index f11e544a7d..a246f38f40 100644 --- a/Applications/Games/Elite:Dangerous/Steam/script.js +++ b/Applications/Games/Elite:Dangerous/Steam/script.js @@ -1,9 +1,9 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); -include("engines.wine.verbs.corefonts"); -include("engines.wine.verbs.dotnet45"); -include("engines.wine.verbs.vcrun2015"); -include("engines.wine.verbs.dxvk"); +const Corefonts = include("engines.wine.verbs.corefonts"); +const DotNET45 = include("engines.wine.verbs.dotnet45"); +const Vcrun2015 = include("engines.wine.verbs.vcrun2015"); +const DXVK = include("engines.wine.verbs.dxvk"); new SteamScript() .name("Elite:Dangerous") @@ -11,9 +11,9 @@ new SteamScript() .author("ImperatorS79") .wineArchitecture("amd64") .preInstall(function (wine /*, wizard*/) { - wine.dotnet45(); - wine.corefonts(); - wine.vcrun2015(); - wine.DXVK(); + new DotNET45(wine).go(); + new Corefonts(wine).go(); + new Vcrun2015(wine).go(); + new DXVK(wine).go(); }) .appId(359320); diff --git a/Applications/Games/Far Cry 2/Steam/script.js b/Applications/Games/Far Cry 2/Steam/script.js index 537ca09e13..7a01f71ba2 100644 --- a/Applications/Games/Far Cry 2/Steam/script.js +++ b/Applications/Games/Far Cry 2/Steam/script.js @@ -1,8 +1,8 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); -const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); +const { LATEST_STAGING_VERSION } = include("engines.wine.engine.versions"); include("engines.wine.plugins.csmt"); -include("engines.wine.verbs.secur32"); +const Secur32 = include("engines.wine.verbs.secur32"); new SteamScript() .name("Far Cry® 2") @@ -12,6 +12,6 @@ new SteamScript() .wineDistribution("staging") .appId(19900) .preInstall(function (wine /*, wizard*/) { - wine.secur32(); + new Secur32(wine).go(); wine.enableCSMT(); }); diff --git a/Applications/Games/GOG Galaxy/Online/script.js b/Applications/Games/GOG Galaxy/Online/script.js index cac6089505..44cfd37bce 100644 --- a/Applications/Games/GOG Galaxy/Online/script.js +++ b/Applications/Games/GOG Galaxy/Online/script.js @@ -1,10 +1,10 @@ const OnlineInstallerScript = include("engines.wine.quick_script.online_installer_script"); -const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); -const {remove, lns} = include("utils.functions.filesystem.files"); +const { LATEST_STAGING_VERSION } = include("engines.wine.engine.versions"); +const { remove, lns } = include("utils.functions.filesystem.files"); -include("engines.wine.verbs.corefonts"); -include("engines.wine.verbs.vcrun2017"); -include("engines.wine.verbs.xact"); +const Corefonts = include("engines.wine.verbs.corefonts"); +const Vcrun2017 = include("engines.wine.verbs.vcrun2017"); +const Xact = include("engines.wine.verbs.xact"); new OnlineInstallerScript() .name("GOG Galaxy") @@ -19,9 +19,11 @@ new OnlineInstallerScript() .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") .preInstall(function (wine /*, wizard*/) { - wine.corefonts(); - wine.vcrun2017(); // Probably needed for self-updater - wine.xact(); // Required by a couple of games + new Corefonts(wine).go(); + // Probably needed for self-updater + new Vcrun2017(wine).go(); + // Required by a couple of games + new Xact(wine).go(); // GOG Galaxy doesn't properly install without a symlink between // drive_c/ProgramData and drive_c/users/Public diff --git a/Applications/Games/Hearthstone/Online/script.js b/Applications/Games/Hearthstone/Online/script.js index d03168076d..981ee1780e 100644 --- a/Applications/Games/Hearthstone/Online/script.js +++ b/Applications/Games/Hearthstone/Online/script.js @@ -1,8 +1,8 @@ const OnlineInstallerScript = include("engines.wine.quick_script.online_installer_script"); -const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); +const { LATEST_STAGING_VERSION } = include("engines.wine.engine.versions"); -include("engines.wine.verbs.vcrun2015"); -include("engines.wine.verbs.corefonts"); +const Vcrun2015 = include("engines.wine.verbs.vcrun2015"); +const Corefonts = include("engines.wine.verbs.corefonts"); new OnlineInstallerScript() .name("Hearthstone") @@ -15,6 +15,6 @@ new OnlineInstallerScript() .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") .preInstall(function (wine /*, wizard*/) { - wine.vcrun2015(); - wine.corefonts(); + new Vcrun2015(wine).go(); + new Corefonts(wine).go(); }); diff --git a/Applications/Games/Heroes of the Storm/Online/script.js b/Applications/Games/Heroes of the Storm/Online/script.js index e96431a03c..820adfc8db 100644 --- a/Applications/Games/Heroes of the Storm/Online/script.js +++ b/Applications/Games/Heroes of the Storm/Online/script.js @@ -1,9 +1,9 @@ const OnlineInstallerScript = include("engines.wine.quick_script.online_installer_script"); -const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); +const { LATEST_STAGING_VERSION } = include("engines.wine.engine.versions"); include("engines.wine.plugins.windows_version"); -include("engines.wine.verbs.vcrun2015"); -include("engines.wine.verbs.corefonts"); +const Vcrun2015 = include("engines.wine.verbs.vcrun2015"); +const Corefonts = include("engines.wine.verbs.corefonts"); new OnlineInstallerScript() .name("Heroes of the Storm") @@ -13,11 +13,12 @@ new OnlineInstallerScript() .url("https://eu.battle.net/download/getInstaller?os=win&installer=Heroes-of-the-Storm-Setup.exe") .category("Games") .executable("Heroes of the Storm.exe") -//The checksum is different each time you download + //The checksum is different each time you download .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") .preInstall(function (wine /*, wizard*/) { wine.windowsVersion("winxp"); - wine.vcrun2015(); - wine.corefonts(); + + new Vcrun2015(wine).go(); + new Corefonts(wine).go(); }); diff --git a/Applications/Games/It came from space and ate our brains/Steam/script.js b/Applications/Games/It came from space and ate our brains/Steam/script.js index dbc54270cd..4e34bbdccb 100644 --- a/Applications/Games/It came from space and ate our brains/Steam/script.js +++ b/Applications/Games/It came from space and ate our brains/Steam/script.js @@ -1,6 +1,6 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); -include("engines.wine.verbs.d3dx10"); +const D3DX10 = include("engines.wine.verbs.d3dx10"); new SteamScript() .name("It came from space, and ate our brains") @@ -8,5 +8,5 @@ new SteamScript() .author("madoar") .appId(342620) .preInstall(function (wine /*, wizard*/) { - wine.d3dx10(); + new D3DX10(wine).go(); }); diff --git a/Applications/Games/League of Legends/Online/script.js b/Applications/Games/League of Legends/Online/script.js index 30590ba83d..91f235e9b1 100644 --- a/Applications/Games/League of Legends/Online/script.js +++ b/Applications/Games/League of Legends/Online/script.js @@ -6,8 +6,7 @@ const Resource = include("utils.functions.net.resource"); include("engines.wine.plugins.csmt"); include("engines.wine.plugins.override_dll"); include("engines.wine.plugins.windows_version"); -include("engines.wine.verbs.sandbox"); -include("engines.wine.verbs.d3dx9"); +const D3DX9 = include("engines.wine.verbs.d3dx9"); // Installs League of Legends @@ -100,7 +99,7 @@ new CustomInstallerScript() .wineVersion(LATEST_STAGING_VERSION) .preInstall(function (wine /*, wizard*/) { wine.windowsVersion("winxp"); - wine.d3dx9(); + new D3DX9(wine).go(); wine .overrideDLL() .set("native, builtin", ["atl120", "msvcp120", "msvcr120", "vcomp120", "msvcp140"]) diff --git a/Applications/Games/Lego Rock Raiders/Local/script.js b/Applications/Games/Lego Rock Raiders/Local/script.js index e3babe66ac..86bd86fe0b 100644 --- a/Applications/Games/Lego Rock Raiders/Local/script.js +++ b/Applications/Games/Lego Rock Raiders/Local/script.js @@ -1,11 +1,11 @@ const LocalInstallerScript = include("engines.wine.quick_script.local_installer_script"); const Downloader = include("utils.functions.net.download"); -const {Extractor} = include("utils.functions.filesystem.extract"); +const { Extractor } = include("utils.functions.filesystem.extract"); -include("engines.wine.verbs.amstream"); -include("engines.wine.verbs.quartz"); -include("engines.wine.verbs.devenum"); -include("engines.wine.verbs.d3drm"); +const Amstream = include("engines.wine.verbs.amstream"); +const Quartz = include("engines.wine.verbs.quartz"); +const Devenum = include("engines.wine.verbs.devenum"); +const D3drm = include("engines.wine.verbs.d3drm"); new LocalInstallerScript() .name("Lego Rock Raiders") @@ -16,10 +16,11 @@ new LocalInstallerScript() .wineVersion("3.0.3") .wineDistribution("upstream") .preInstall(function (wine, wizard) { - wine.amstream(); - wine.quartz(); - wine.devenum(); - wine.d3drm(); + new Amstream(wine).go(); + new Quartz(wine).go(); + new Devenum(wine).go(); + new D3drm(wine).go(); + wizard.message(tr("When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.")); }) .postInstall(function (wine, wizard) { diff --git a/Applications/Games/Magic The Gathering Arena/Online/script.js b/Applications/Games/Magic The Gathering Arena/Online/script.js index 86875a4569..7358800662 100644 --- a/Applications/Games/Magic The Gathering Arena/Online/script.js +++ b/Applications/Games/Magic The Gathering Arena/Online/script.js @@ -1,7 +1,7 @@ const OnlineInstallerScript = include("engines.wine.quick_script.online_installer_script"); -const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); +const { LATEST_STAGING_VERSION } = include("engines.wine.engine.versions"); -include("engines.wine.verbs.dxvk"); +const DXVK = include("engines.wine.verbs.dxvk"); include("engines.wine.plugins.usetakefocus"); new OnlineInstallerScript() @@ -13,7 +13,7 @@ new OnlineInstallerScript() .wineDistribution("staging") .wineVersion(LATEST_STAGING_VERSION) .preInstall(function (wine /*, wizard*/) { - wine.DXVK(); + new DXVK(wine).go(); wine.UseTakeFocus("N"); }) .executable("MtgaLauncher.exe"); diff --git a/Applications/Games/Mirror's Edge/Steam/script.js b/Applications/Games/Mirror's Edge/Steam/script.js index 31485b018d..19df757bcf 100644 --- a/Applications/Games/Mirror's Edge/Steam/script.js +++ b/Applications/Games/Mirror's Edge/Steam/script.js @@ -1,6 +1,6 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); include("engines.wine.plugins.managed"); -include("engines.wine.verbs.physx"); +const PhysX = include("engines.wine.verbs.physx"); new SteamScript() .name("Mirror's Edge™") @@ -8,9 +8,9 @@ new SteamScript() .author("Plata") .appId(17410) .preInstall(function (wine /*, wizard*/) { - wine.physx(); - wine - .setManagedForApplication() + new PhysX(wine).go(); + + wine.setManagedForApplication() .set("MirrorsEdge.exe", false) .do(); }); diff --git a/Applications/Games/Niko: Through The Dream/Steam/script.js b/Applications/Games/Niko: Through The Dream/Steam/script.js index ae4933a52d..34903db857 100644 --- a/Applications/Games/Niko: Through The Dream/Steam/script.js +++ b/Applications/Games/Niko: Through The Dream/Steam/script.js @@ -1,6 +1,6 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); include("engines.wine.plugins.managed"); -include("engines.wine.verbs.dotnet40"); +const DotNET40 = include("engines.wine.verbs.dotnet40"); new SteamScript() .name("Niko: Through The Dream") @@ -8,7 +8,7 @@ new SteamScript() .author("Plata") .appId(296550) .postInstall(function (wine /*, wizard*/) { - wine.dotnet40(); + new DotNET40(wine).go(); wine .setManagedForApplication() .set("NIKO.exe", false) diff --git a/Applications/Games/Overwatch/Online/script.js b/Applications/Games/Overwatch/Online/script.js index bd61d6a9fa..6d7424d44c 100644 --- a/Applications/Games/Overwatch/Online/script.js +++ b/Applications/Games/Overwatch/Online/script.js @@ -1,11 +1,11 @@ const OnlineInstallerScript = include("engines.wine.quick_script.online_installer_script"); -const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); +const { LATEST_STAGING_VERSION } = include("engines.wine.engine.versions"); include("engines.wine.plugins.windows_version"); include("engines.wine.plugins.override_dll"); -include("engines.wine.verbs.vcrun2015"); -include("engines.wine.verbs.corefonts"); -include("engines.wine.verbs.dxvk"); +const Vcrun2015 = include("engines.wine.verbs.vcrun2015"); +const Corefonts = include("engines.wine.verbs.corefonts"); +const DXVK = include("engines.wine.verbs.dxvk"); new OnlineInstallerScript() .name("Overwatch") @@ -13,7 +13,7 @@ new OnlineInstallerScript() .applicationHomepage("http://www.playoverwatch.com/") .author("ImperatorS79, kreyren") .url("https://eu.battle.net/download/getInstaller?os=win&installer=Overwatch-Setup.exe") -//The checksum is different each time you download + //The checksum is different each time you download .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") .wineArchitecture("amd64") @@ -21,11 +21,13 @@ new OnlineInstallerScript() .executable("Battle.net.exe") .preInstall(function (wine /*, wizard*/) { wine.windowsVersion("win7"); - wine.vcrun2015(); - wine.corefonts(); - wine - .overrideDLL() + + new Vcrun2015(wine).go(); + new Corefonts(wine).go(); + + wine.overrideDLL() .set("disabled", ["nvapi", "nvapi64"]) .do(); - wine.DXVK(); + + new DXVK(wine).go(); }); diff --git a/Applications/Games/PC Building Simulator/Steam/script.js b/Applications/Games/PC Building Simulator/Steam/script.js index 750dcc015c..45231debb7 100644 --- a/Applications/Games/PC Building Simulator/Steam/script.js +++ b/Applications/Games/PC Building Simulator/Steam/script.js @@ -2,7 +2,7 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); const {LATEST_DEVELOPMENT_VERSION} = include("engines.wine.engine.versions"); include("engines.wine.plugins.virtual_desktop"); -include("engines.wine.verbs.corefonts"); +const Corefonts = include("engines.wine.verbs.corefonts"); new SteamScript() @@ -19,7 +19,7 @@ new SteamScript() "The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue." ) ); - wine.corefonts(); + new Corefonts(wine).go(); wine.setVirtualDesktop(); }) .gameOverlay(false); diff --git a/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js b/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js index 533f2c7e67..0206194f73 100644 --- a/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js +++ b/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js @@ -1,5 +1,5 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); -include("engines.wine.verbs.dotnet40"); +const DotNET40 = include("engines.wine.verbs.dotnet40"); new SteamScript() .name("QUBE: Director's Cut") @@ -7,5 +7,5 @@ new SteamScript() .author("Plata") .appId(239430) .preInstall(function (wine /*, wizard*/) { - wine.dotnet40(); + new DotNET40(wine).go(); }); diff --git a/Applications/Games/Quantum Conundrum/Steam/script.js b/Applications/Games/Quantum Conundrum/Steam/script.js index 089952c418..11805b14aa 100644 --- a/Applications/Games/Quantum Conundrum/Steam/script.js +++ b/Applications/Games/Quantum Conundrum/Steam/script.js @@ -1,5 +1,6 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); -include("engines.wine.verbs.vcrun2008"); + +const Vcrun2008 = include("engines.wine.verbs.vcrun2008"); new SteamScript() .name("Quantum Conundrum") @@ -7,5 +8,5 @@ new SteamScript() .author("Plata") .appId(200010) .preInstall(function (wine /*, wizard*/) { - wine.vcrun2008(); + new Vcrun2008(wine).go(); }); diff --git a/Applications/Games/Rayman Legends/Steam (Demo)/script.js b/Applications/Games/Rayman Legends/Steam (Demo)/script.js index 4658717b7d..6c3f832b2d 100644 --- a/Applications/Games/Rayman Legends/Steam (Demo)/script.js +++ b/Applications/Games/Rayman Legends/Steam (Demo)/script.js @@ -1,7 +1,7 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); -include("engines.wine.verbs.uplay"); +const Uplay = include("engines.wine.verbs.uplay"); new SteamScript() .name("Rayman® Legends (Demo)") @@ -11,5 +11,5 @@ new SteamScript() .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") .postInstall(function (wine /*, wizard*/) { - wine.uplay(); + new Uplay(wine).go(); }); diff --git a/Applications/Games/Rayman Legends/Steam/script.js b/Applications/Games/Rayman Legends/Steam/script.js index e6208af6c4..e927f232ae 100644 --- a/Applications/Games/Rayman Legends/Steam/script.js +++ b/Applications/Games/Rayman Legends/Steam/script.js @@ -1,7 +1,7 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); -include("engines.wine.verbs.uplay"); +const Uplay = include("engines.wine.verbs.uplay"); new SteamScript() .name("Rayman® Legends") @@ -11,5 +11,5 @@ new SteamScript() .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") .postInstall(function (wine /*, wizard*/) { - wine.uplay(); + new Uplay(wine).go(); }); diff --git a/Applications/Games/RimWorld/Local/script.js b/Applications/Games/RimWorld/Local/script.js index 950289572b..59706c713d 100644 --- a/Applications/Games/RimWorld/Local/script.js +++ b/Applications/Games/RimWorld/Local/script.js @@ -1,7 +1,8 @@ const LocalInstallerScript = include("engines.wine.quick_script.local_installer_script"); -include("engines.wine.verbs.vcrun2017"); -include("engines.wine.verbs.d3dx9"); -include("engines.wine.verbs.corefonts"); + +const Vcrun2017 = include("engines.wine.verbs.vcrun2017"); +const D3DX9 = include("engines.wine.verbs.d3dx9"); +const Corefonts = include("engines.wine.verbs.corefonts"); new LocalInstallerScript() .name("RimWorld") @@ -11,7 +12,7 @@ new LocalInstallerScript() .wineArchitecture("amd64") .executable("RimWorld.exe") .preInstall(function (wine) { - wine.vcrun2017(); - wine.d3dx9(); - wine.corefonts(); + new Vcrun2017(wine).go(); + new D3DX9(wine).go(); + new Corefonts(wine).go(); }); diff --git a/Applications/Games/RimWorld/Steam/script.js b/Applications/Games/RimWorld/Steam/script.js index 90c3da90b5..a862281515 100644 --- a/Applications/Games/RimWorld/Steam/script.js +++ b/Applications/Games/RimWorld/Steam/script.js @@ -1,7 +1,8 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); -include("engines.wine.verbs.vcrun2017"); -include("engines.wine.verbs.d3dx9"); -include("engines.wine.verbs.corefonts"); + +const Vcrun2017 = include("engines.wine.verbs.vcrun2017"); +const D3DX9 = include("engines.wine.verbs.d3dx9"); +const Corefonts = include("engines.wine.verbs.corefonts"); new SteamScript() .name("RimWorld") @@ -11,7 +12,7 @@ new SteamScript() .wineArchitecture("amd64") .appId(294100) .preInstall(function (wine) { - wine.corefonts(); - wine.vcrun2017(); - wine.d3dx9(); + new Corefonts(wine).go(); + new Vcrun2017(wine).go(); + new D3DX9(wine).go(); }); diff --git a/Applications/Games/STAR WARS - Empire at War - Gold Pack/Local/script.js b/Applications/Games/STAR WARS - Empire at War - Gold Pack/Local/script.js index d265e1c33d..37682923cb 100644 --- a/Applications/Games/STAR WARS - Empire at War - Gold Pack/Local/script.js +++ b/Applications/Games/STAR WARS - Empire at War - Gold Pack/Local/script.js @@ -1,7 +1,7 @@ const LocalInstallerScript = include("engines.wine.quick_script.local_installer_script"); const Downloader = include("utils.functions.net.download"); -include("engines.wine.verbs.d3dx9"); +const D3DX9 = include("engines.wine.verbs.d3dx9"); new LocalInstallerScript() .name("STAR WARS™ Empire at War: Gold Pack") @@ -10,7 +10,7 @@ new LocalInstallerScript() .category("Games") .executable("LaunchEAW.exe") .preInstall(function (wine/*, wizard */) { - wine.d3dx9(); + new D3DX9(wine).go(); }) .postInstall(function (wine, wizard) { new Downloader() diff --git a/Applications/Games/STAR WARS - Empire at War - Gold Pack/Steam/script.js b/Applications/Games/STAR WARS - Empire at War - Gold Pack/Steam/script.js index 8cebbd2e77..11a2dade4c 100644 --- a/Applications/Games/STAR WARS - Empire at War - Gold Pack/Steam/script.js +++ b/Applications/Games/STAR WARS - Empire at War - Gold Pack/Steam/script.js @@ -1,5 +1,5 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); -include("engines.wine.verbs.d3dx9"); +const D3DX9 = include("engines.wine.verbs.d3dx9"); new SteamScript() .name("STAR WARS™ Empire at War: Gold Pack") @@ -7,5 +7,5 @@ new SteamScript() .author("ImperatorS79") .appId(32470) .preInstall(function (wine /*, wizard*/) { - wine.d3dx9(); + new D3DX9(wine).go(); }); diff --git a/Applications/Games/STAR WARS: The Old Republic/Online/script.js b/Applications/Games/STAR WARS: The Old Republic/Online/script.js index fa807d6d67..dda359d21b 100644 --- a/Applications/Games/STAR WARS: The Old Republic/Online/script.js +++ b/Applications/Games/STAR WARS: The Old Republic/Online/script.js @@ -2,7 +2,7 @@ const OnlineInstallerScript = include("engines.wine.quick_script.online_installe const {writeToFile} = include("utils.functions.filesystem.files"); const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); -include("engines.wine.verbs.d3dx9"); +const D3DX9 = include("engines.wine.verbs.d3dx9"); new OnlineInstallerScript() .name("STAR WARS™: The Old Republic") @@ -17,7 +17,7 @@ new OnlineInstallerScript() .executable("launcher.exe") .preInstall(function (wine /*, wizard*/) { //it seems it brings better performance - wine.d3dx9(); + new D3DX9(wine).go(); }) .postInstall(function (wine /*, wizard*/) { //without that the launcher is unable to download the game diff --git a/Applications/Games/Space Colony/Steam/script.js b/Applications/Games/Space Colony/Steam/script.js index f46597bd02..9f5f70824a 100644 --- a/Applications/Games/Space Colony/Steam/script.js +++ b/Applications/Games/Space Colony/Steam/script.js @@ -1,9 +1,9 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); -const {LATEST_DEVELOPMENT_VERSION} = include("engines.wine.engine.versions"); +const { LATEST_DEVELOPMENT_VERSION } = include("engines.wine.engine.versions"); -include("engines.wine.verbs.vcrun2010"); -include("engines.wine.verbs.dotnet40"); -include("engines.wine.verbs.d3dx9"); +const Vcrun2010 = include("engines.wine.verbs.vcrun2010"); +const DotNET40 = include("engines.wine.verbs.dotnet40"); +const D3DX9 = include("engines.wine.verbs.d3dx9"); new SteamScript() .name("Space Colony") @@ -13,7 +13,7 @@ new SteamScript() .wineVersion(LATEST_DEVELOPMENT_VERSION) .appId(297920) .preInstall(function (wine) { - wine.vcrun2010(); - wine.dotnet40(); - wine.d3dx9(); + new Vcrun2010(wine).go(); + new DotNET40(wine).go(); + new D3DX9(wine).go(); }); diff --git a/Applications/Games/Space Engineers/Steam/script.js b/Applications/Games/Space Engineers/Steam/script.js index 2179ddf4c6..1d194da5c4 100644 --- a/Applications/Games/Space Engineers/Steam/script.js +++ b/Applications/Games/Space Engineers/Steam/script.js @@ -1,27 +1,53 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); -include("engines.wine.verbs.dotnet472"); -include("engines.wine.verbs.vcrun2017"); -include("engines.wine.verbs.dxvk"); -include("engines.wine.verbs.faudio"); + +const DotNET472 = include("engines.wine.verbs.dotnet472"); +const Vcrun2017 = include("engines.wine.verbs.vcrun2017"); +const DXVK = include("engines.wine.verbs.dxvk"); +const FAudio = include("engines.wine.verbs.faudio"); include("engines.wine.plugins.override_dll"); new SteamScript() .name("Space Engineers") .editor("Keen Software House") .author("Zemogiter") - .appId(244850) - .wineVersion("4.11") + .appId("244850") + .wineVersion("4.14") .wineDistribution("upstream") .wineArchitecture("amd64") .preInstall(function (wine, wizard) { - wine.dotnet472(); - wine.vcrun2017(); - wine.DXVK(); - wine.faudio(); + new DotNET472(wine).go(); + new Vcrun2017(wine).go(); + new DXVK(wine).go(); + new FAudio(wine).go(); wine.overrideDLL() - .set("native, builtin", ["msvcr120", "xaudio2_0", "xaudio2_1", "xaudio2_2", "xaudio2_3", "xaudio2_4", "xaudio2_5", "xaudio2_6", "xaudio2_7", "xaudio2_8", "xaudio2_9", "x3daudio1_3", "x3daudio1_4", "x3daudio1_5", "x3daudio1_6", "x3daudio1_7"]) + .set("native, builtin", [ + "msvcr120", + "xaudio2_0", + "xaudio2_1", + "xaudio2_2", + "xaudio2_3", + "xaudio2_4", + "xaudio2_5", + "xaudio2_6", + "xaudio2_7", + "xaudio2_8", + "xaudio2_9", + "x3daudio1_3", + "x3daudio1_4", + "x3daudio1_5", + "x3daudio1_6", + "x3daudio1_7" + ]) .do(); - wizard.message(tr("You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.")); - wizard.message(tr("Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.")); + wizard.message( + tr( + "You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles." + ) + ); + wizard.message( + tr( + "Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048." + ) + ); }) - .executable("Steam.exe", ["-silent", "-applaunch", 244850, "-no-ces-sandbox", "-skipintro"]) + .executable("Steam.exe", ["-silent", "-applaunch", "244850", "-no-cef-sandbox", "-skipintro"]); diff --git a/Applications/Games/Sprouts Adventure/Local/script.js b/Applications/Games/Sprouts Adventure/Local/script.js index 84255cbe93..4860a3a656 100644 --- a/Applications/Games/Sprouts Adventure/Local/script.js +++ b/Applications/Games/Sprouts Adventure/Local/script.js @@ -1,5 +1,5 @@ const LocalInstallerScript = include("engines.wine.quick_script.local_installer_script"); -include("engines.wine.verbs.vcrun2005"); +const Vcrun2005 = include("engines.wine.verbs.vcrun2005"); new LocalInstallerScript() .name("Sprouts Adventure") @@ -12,5 +12,6 @@ new LocalInstallerScript() wizard.message( tr("This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).") ); - wine.vcrun2005(); + + new Vcrun2005(wine).go(); }); diff --git a/Applications/Games/Star Craft II/Online/script.js b/Applications/Games/Star Craft II/Online/script.js index 1cec491f82..24d33e1c0f 100644 --- a/Applications/Games/Star Craft II/Online/script.js +++ b/Applications/Games/Star Craft II/Online/script.js @@ -1,6 +1,7 @@ const OnlineInstallerScript = include("engines.wine.quick_script.online_installer_script"); -include("engines.wine.verbs.vcrun2015"); -include("engines.wine.verbs.corefonts"); + +const Vcrun2015 = include("engines.wine.verbs.vcrun2015"); +const Corefonts = include("engines.wine.verbs.corefonts"); new OnlineInstallerScript() .name("Star Craft II") @@ -8,10 +9,10 @@ new OnlineInstallerScript() .applicationHomepage("http://eu.battle.net/sc2/") .author("ImperatorS79") .url("https://eu.battle.net/download/getInstaller?os=win&installer=StarCraft-II-Setup.exe") -// The checksum changes each time you download + // The checksum changes each time you download .category("Games") .executable("Battle.net.exe") .preInstall(function (wine /*, wizard*/) { - wine.vcrun2015(); - wine.corefonts(); + new Vcrun2015(wine).go(); + new Corefonts(wine).go(); }); diff --git a/Applications/Games/Steam/Online/script.js b/Applications/Games/Steam/Online/script.js index 795b0b4027..1ce97d57da 100644 --- a/Applications/Games/Steam/Online/script.js +++ b/Applications/Games/Steam/Online/script.js @@ -1,7 +1,7 @@ const OnlineInstallerScript = include("engines.wine.quick_script.online_installer_script"); const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); -include("engines.wine.verbs.corefonts"); +const Corefonts = include("engines.wine.verbs.corefonts"); include("engines.wine.plugins.windows_version"); new OnlineInstallerScript() @@ -23,6 +23,6 @@ new OnlineInstallerScript() .setOsForApplication() .set("steamwebhelper.exe", "winxp") .do(); - wine.corefonts(); + new Corefonts(wine).go(); }) .executable("Steam.exe", ["-no-cef-sandbox"]); diff --git a/Applications/Games/Subnautica Below Zero/Steam/script.js b/Applications/Games/Subnautica Below Zero/Steam/script.js index 7b415e70e7..b0573ff2af 100644 --- a/Applications/Games/Subnautica Below Zero/Steam/script.js +++ b/Applications/Games/Subnautica Below Zero/Steam/script.js @@ -1,10 +1,10 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); -const {LATEST_STABLE_VERSION} = include("engines.wine.engine.versions"); +const { LATEST_STABLE_VERSION } = include("engines.wine.engine.versions"); include("engines.wine.plugins.virtual_desktop"); -include("engines.wine.verbs.vcrun2013"); -include("engines.wine.verbs.corefonts"); -include("engines.wine.verbs.dxvk"); +const Vcrun2013 = include("engines.wine.verbs.vcrun2013"); +const Corefonts = include("engines.wine.verbs.corefonts"); +const DXVK = include("engines.wine.verbs.dxvk"); new SteamScript() .name("Subnautica Below Zero") @@ -19,9 +19,11 @@ new SteamScript() wizard.message( tr("You can make the game smoother by using this: https://github.com/lutris/lutris/wiki/How-to:-Esync") ); - wine.vcrun2013(); - wine.corefonts(); - wine.DXVK(); + + new Vcrun2013(wine).go(); + new Corefonts(wine).go(); + new DXVK(wine).go(); + wine.setVirtualDesktop(); }) .gameOverlay(false); diff --git a/Applications/Games/Subnautica/Steam/script.js b/Applications/Games/Subnautica/Steam/script.js index c084fd03a1..aae2ac146b 100644 --- a/Applications/Games/Subnautica/Steam/script.js +++ b/Applications/Games/Subnautica/Steam/script.js @@ -1,10 +1,10 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); -const {LATEST_STABLE_VERSION} = include("engines.wine.engine.versions"); +const { LATEST_STABLE_VERSION } = include("engines.wine.engine.versions"); include("engines.wine.plugins.virtual_desktop"); -include("engines.wine.verbs.vcrun2013"); -include("engines.wine.verbs.corefonts"); -include("engines.wine.verbs.dxvk"); +const Vcrun2013 = include("engines.wine.verbs.vcrun2013"); +const Corefonts = include("engines.wine.verbs.corefonts"); +const DXVK = include("engines.wine.verbs.dxvk"); new SteamScript() .name("Subnautica") @@ -19,9 +19,11 @@ new SteamScript() wizard.message( tr("You can make the game smoother by using this: https://github.com/lutris/lutris/wiki/How-to:-Esync") ); - wine.vcrun2013(); - wine.corefonts(); - wine.DXVK(); + + new Vcrun2013(wine).go(); + new Corefonts(wine).go(); + new DXVK(wine).go(); + wine.setVirtualDesktop(); }) .postInstall(function (wine, wizard) { diff --git a/Applications/Games/The Sims 3/Local/script.js b/Applications/Games/The Sims 3/Local/script.js index bcfee1977c..8bac5668b7 100644 --- a/Applications/Games/The Sims 3/Local/script.js +++ b/Applications/Games/The Sims 3/Local/script.js @@ -1,9 +1,9 @@ const LocalInstallerScript = include("engines.wine.quick_script.local_installer_script"); -include("engines.wine.verbs.vcrun2010"); -include("engines.wine.verbs.tahoma"); -include("engines.wine.verbs.mfc42"); -include("engines.wine.verbs.dotnet20"); +const Vcrun2010 = include("engines.wine.verbs.vcrun2010"); +const Tahoma = include("engines.wine.verbs.tahoma"); +const Mfc42 = include("engines.wine.verbs.mfc42"); +const DotNET20 = include("engines.wine.verbs.dotnet20"); new LocalInstallerScript() .name("The Sims 3") @@ -13,8 +13,8 @@ new LocalInstallerScript() .category("Games") .executable("Sims3Launcher.exe", ["xgamma -gamma 1"]) .preInstall(function (wine) { - wine.mfc42(); - wine.tahoma(); - wine.vcrun2010(); - wine.dotnet20(); + new Mfc42(wine).go(); + new Tahoma(wine).go(); + new Vcrun2010(wine).go(); + new DotNET20(wine).go(); }); diff --git a/Applications/Games/The Sims 3/Steam/script.js b/Applications/Games/The Sims 3/Steam/script.js index 71a44b4094..20382e416d 100644 --- a/Applications/Games/The Sims 3/Steam/script.js +++ b/Applications/Games/The Sims 3/Steam/script.js @@ -1,9 +1,9 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); -include("engines.wine.verbs.dotnet20"); -include("engines.wine.verbs.vcrun2010"); -include("engines.wine.verbs.tahoma"); -include("engines.wine.verbs.mfc42"); +const DotNET20 = include("engines.wine.verbs.dotnet20"); +const Vcrun2010 = include("engines.wine.verbs.vcrun2010"); +const Tahoma = include("engines.wine.verbs.tahoma"); +const Mfc42 = include("engines.wine.verbs.mfc42"); new SteamScript() .name("The Sims 3") @@ -14,10 +14,10 @@ new SteamScript() .wineVersion("4.0-rc2") .appId(47890) .preInstall(function (wine /*, wizard*/) { - wine.dotnet20(); - wine.mfc42(); - wine.tahoma(); - wine.vcrun2010(); + new DotNET20(wine).go(); + new Mfc42(wine).go(); + new Tahoma(wine).go(); + new Vcrun2010(wine).go(); }) .gameOverlay(false) .executable("Steam.exe", ["-silent", "-applaunch", 47890, "-no-ces-sandbox", "xgamma -gamma 1"]); diff --git a/Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js b/Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js index 4056cfdd9b..0adde3e2ee 100644 --- a/Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js +++ b/Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js @@ -1,7 +1,7 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); -const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); +const { LATEST_STAGING_VERSION } = include("engines.wine.engine.versions"); -include("engines.wine.verbs.dxvk"); +const DXVK = include("engines.wine.verbs.dxvk"); new SteamScript() .name("The Witcher 3: Wild Hunt") @@ -17,5 +17,6 @@ new SteamScript() "Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work." ) ); - wine.DXVK(); + + new DXVK(wine).go(); }); diff --git a/Applications/Games/Tom Clancy's The Division/Steam (Demo)/script.js b/Applications/Games/Tom Clancy's The Division/Steam (Demo)/script.js index a8e18666ce..83432eb259 100644 --- a/Applications/Games/Tom Clancy's The Division/Steam (Demo)/script.js +++ b/Applications/Games/Tom Clancy's The Division/Steam (Demo)/script.js @@ -1,7 +1,7 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); -include("engines.wine.verbs.uplay"); +const Uplay = include("engines.wine.verbs.uplay"); new SteamScript() .name("Tom Clancy’s The Division™ (Demo)") @@ -12,5 +12,5 @@ new SteamScript() .wineDistribution("staging") .wineArchitecture("amd64") .postInstall(function (wine /*, wizard*/) { - wine.uplay(); + new Uplay(wine).go(); }); diff --git a/Applications/Games/Tom Clancy's The Division/Steam/script.js b/Applications/Games/Tom Clancy's The Division/Steam/script.js index 55bd0c6463..51e0455201 100644 --- a/Applications/Games/Tom Clancy's The Division/Steam/script.js +++ b/Applications/Games/Tom Clancy's The Division/Steam/script.js @@ -1,7 +1,7 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); -include("engines.wine.verbs.uplay"); +const Uplay = include("engines.wine.verbs.uplay"); new SteamScript() .name("Tom Clancy’s The Division™") @@ -12,5 +12,5 @@ new SteamScript() .wineDistribution("staging") .wineArchitecture("amd64") .postInstall(function (wine /*, wizard*/) { - wine.uplay(); + new Uplay(wine).go(); }); diff --git a/Applications/Games/Total War Rome II/Steam/script.js b/Applications/Games/Total War Rome II/Steam/script.js index 67586821df..856a26e8a9 100644 --- a/Applications/Games/Total War Rome II/Steam/script.js +++ b/Applications/Games/Total War Rome II/Steam/script.js @@ -1,10 +1,10 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); -const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); +const { LATEST_STAGING_VERSION } = include("engines.wine.engine.versions"); -include("engines.wine.verbs.d3dx9"); -include("engines.wine.verbs.vcrun2005"); -include("engines.wine.verbs.vcrun2008"); -include("engines.wine.verbs.vcrun2010"); +const D3DX9 = include("engines.wine.verbs.d3dx9"); +const Vcrun2005 = include("engines.wine.verbs.vcrun2005"); +const Vcrun2008 = include("engines.wine.verbs.vcrun2008"); +const Vcrun2010 = include("engines.wine.verbs.vcrun2010"); new SteamScript() .name("Total War: ROME II") @@ -14,10 +14,11 @@ new SteamScript() .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") .postInstall(function (wine, wizard) { - wine.d3dx9(); - wine.vcrun2005(); - wine.vcrun2008(); - wine.vcrun2010(); + new D3DX9(wine).go(); + new Vcrun2005(wine).go(); + new Vcrun2008(wine).go(); + new Vcrun2010(wine).go(); + wizard.message( tr( "If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying :\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt", diff --git a/Applications/Games/Trackmania Turbo/Steam (Demo)/script.js b/Applications/Games/Trackmania Turbo/Steam (Demo)/script.js index 4a3255a455..9369748516 100644 --- a/Applications/Games/Trackmania Turbo/Steam (Demo)/script.js +++ b/Applications/Games/Trackmania Turbo/Steam (Demo)/script.js @@ -1,7 +1,7 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); -include("engines.wine.verbs.uplay"); +const Uplay = include("engines.wine.verbs.uplay"); new SteamScript() .name("Trackmania® Turbo (Demo)") @@ -11,5 +11,5 @@ new SteamScript() .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") .postInstall(function (wine /*, wizard*/) { - wine.uplay(); + new Uplay(wine).go(); }); diff --git a/Applications/Games/Trackmania Turbo/Steam/script.js b/Applications/Games/Trackmania Turbo/Steam/script.js index 4603d5b03d..2ac62a309d 100644 --- a/Applications/Games/Trackmania Turbo/Steam/script.js +++ b/Applications/Games/Trackmania Turbo/Steam/script.js @@ -1,7 +1,7 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); -include("engines.wine.verbs.uplay"); +const Uplay = include("engines.wine.verbs.uplay"); new SteamScript() .name("Trackmania® Turbo") @@ -11,5 +11,5 @@ new SteamScript() .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") .postInstall(function (wine /*, wizard*/) { - wine.uplay(); + new Uplay(wine).go(); }); diff --git a/Applications/Games/Unholy Heights/Steam/script.js b/Applications/Games/Unholy Heights/Steam/script.js index fbb639b6f0..636c6a7241 100644 --- a/Applications/Games/Unholy Heights/Steam/script.js +++ b/Applications/Games/Unholy Heights/Steam/script.js @@ -1,7 +1,7 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); -include("engines.wine.verbs.dotnet40"); +const DotNET40 = include("engines.wine.verbs.dotnet40"); new SteamScript() .name("Unholy Heights") @@ -11,5 +11,5 @@ new SteamScript() .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") .preInstall(function (wine /*, wizard*/) { - wine.dotnet40(); + new DotNET40(wine).go(); }); diff --git a/Applications/Games/Uplay/Online/script.js b/Applications/Games/Uplay/Online/script.js index 50175073e2..50682c6d11 100644 --- a/Applications/Games/Uplay/Online/script.js +++ b/Applications/Games/Uplay/Online/script.js @@ -2,7 +2,7 @@ const OnlineInstallerScript = include("engines.wine.quick_script.online_installe const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); include("engines.wine.plugins.windows_version"); -include("engines.wine.verbs.corefonts"); +const Corefonts = include("engines.wine.verbs.corefonts"); new OnlineInstallerScript() .name("Uplay") @@ -15,7 +15,7 @@ new OnlineInstallerScript() .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") .preInstall(function (wine /*, wizard*/) { - wine.corefonts(); + new Corefonts(wine).go(); wine .setOsForApplication() .set("upc.exe", "winvista") diff --git a/Applications/Games/Warcraft III Expansion Set/Online/script.js b/Applications/Games/Warcraft III Expansion Set/Online/script.js index 3175214141..699a402159 100644 --- a/Applications/Games/Warcraft III Expansion Set/Online/script.js +++ b/Applications/Games/Warcraft III Expansion Set/Online/script.js @@ -1,9 +1,9 @@ const OnlineInstallerScript = include("engines.wine.quick_script.online_installer_script"); -const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); +const { LATEST_STAGING_VERSION } = include("engines.wine.engine.versions"); include("engines.wine.plugins.windows_version"); -include("engines.wine.verbs.vcrun2015"); -include("engines.wine.verbs.corefonts"); +const Vcrun2015 = include("engines.wine.verbs.vcrun2015"); +const Corefonts = include("engines.wine.verbs.corefonts"); new OnlineInstallerScript() .name("Warcraft III Expansion Set") @@ -11,13 +11,14 @@ new OnlineInstallerScript() .applicationHomepage("http://www.blizzard.com/en-gb/games/war3/") .author("Grimler91") .url("https://www.battle.net/download/getInstaller?os=win&installer=Warcraft-III-Setup.exe") -// The checksum changes each time you download + // The checksum changes each time you download .category("Games") .executable("Warcraft III.exe") .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") .preInstall(function (wine /*, wizard*/) { wine.windowsVersion("winxp"); - wine.corefonts(); - wine.vcrun2015(); + + new Corefonts(wine).go(); + new Vcrun2015(wine).go(); }); diff --git a/Applications/Games/Warlock - Master of the Arcane/Steam/script.js b/Applications/Games/Warlock - Master of the Arcane/Steam/script.js index ff014f703f..6ad541aef4 100644 --- a/Applications/Games/Warlock - Master of the Arcane/Steam/script.js +++ b/Applications/Games/Warlock - Master of the Arcane/Steam/script.js @@ -1,11 +1,11 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); -const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); +const { LATEST_STAGING_VERSION } = include("engines.wine.engine.versions"); -include("engines.wine.verbs.corefonts"); -include("engines.wine.verbs.d3dx9"); -include("engines.wine.verbs.tahoma"); -include("engines.wine.verbs.vcrun2005"); -include("engines.wine.verbs.vcrun2008"); +const Corefonts = include("engines.wine.verbs.corefonts"); +const D3DX9 = include("engines.wine.verbs.d3dx9"); +const Tahoma = include("engines.wine.verbs.tahoma"); +const Vcrun2005 = include("engines.wine.verbs.vcrun2005"); +const Vcrun2008 = include("engines.wine.verbs.vcrun2008"); new SteamScript() .name("Warlock - Master of the Arcane") @@ -15,9 +15,9 @@ new SteamScript() .wineVersion(LATEST_STAGING_VERSION) .wineDistribution("staging") .preInstall(function (wine /*, wizard*/) { - wine.corefonts(); - wine.d3dx9(); - wine.tahoma(); - wine.vcrun2005(); - wine.vcrun2008(); + new Corefonts(wine).go(); + new D3DX9(wine).go(); + new Tahoma(wine).go(); + new Vcrun2005(wine).go(); + new Vcrun2008(wine).go(); }); diff --git a/Applications/Games/Wildlife Park 2/Local/script.js b/Applications/Games/Wildlife Park 2/Local/script.js index 00ae2b32a5..49a2ef32da 100644 --- a/Applications/Games/Wildlife Park 2/Local/script.js +++ b/Applications/Games/Wildlife Park 2/Local/script.js @@ -1,6 +1,7 @@ const LocalInstallerScript = include("engines.wine.quick_script.local_installer_script"); + include("engines.wine.plugins.virtual_desktop"); -include("engines.wine.verbs.quartz"); +const Quartz = include("engines.wine.verbs.quartz"); new LocalInstallerScript() .name("Wildlife Park 2") @@ -15,6 +16,7 @@ new LocalInstallerScript() "On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen." ) ); - wine.quartz(); + + new Quartz(wine).go(); wine.setVirtualDesktop(); }); diff --git a/Applications/Games/Wildlife Park 2/Steam/script.js b/Applications/Games/Wildlife Park 2/Steam/script.js index 9170435d04..286ebb006e 100644 --- a/Applications/Games/Wildlife Park 2/Steam/script.js +++ b/Applications/Games/Wildlife Park 2/Steam/script.js @@ -1,6 +1,7 @@ const SteamScript = include("engines.wine.quick_script.steam_script"); + include("engines.wine.plugins.virtual_desktop"); -include("engines.wine.verbs.quartz"); +const Quartz = include("engines.wine.verbs.quartz"); new SteamScript() .name("Wildlife Park 2") @@ -14,7 +15,8 @@ new SteamScript() "On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen." ) ); - wine.quartz(); + + new Quartz(wine).go(); wine.setVirtualDesktop(); }) .gameOverlay(false); diff --git a/Applications/Games/osu!/Online/script.js b/Applications/Games/osu!/Online/script.js index f239e5f96b..05a5df54bb 100644 --- a/Applications/Games/osu!/Online/script.js +++ b/Applications/Games/osu!/Online/script.js @@ -1,8 +1,8 @@ const OnlineInstallerScript = include("engines.wine.quick_script.online_installer_script"); const {LATEST_DEVELOPMENT_VERSION} = include("engines.wine.engine.versions"); -include("engines.wine.verbs.dotnet45"); -include("engines.wine.verbs.corefonts"); +const DotNET45 = include("engines.wine.verbs.dotnet45"); +const Corefonts = include("engines.wine.verbs.corefonts"); new OnlineInstallerScript() .name("osu!") @@ -15,6 +15,6 @@ new OnlineInstallerScript() .url("https://m1.ppy.sh/r/osu!install.exe") .preInstall(function (wine /*, wizard*/) { //maybe needs cjkfonts or set sound driver to alsa - wine.corefonts(); - wine.dotnet45(); + new Corefonts(wine).go(); + new DotNET45(wine).go(); }); diff --git a/Applications/Internet/Internet Explorer 6.0/Online/script.js b/Applications/Internet/Internet Explorer 6.0/Online/script.js index cda3b54039..cf20433138 100644 --- a/Applications/Internet/Internet Explorer 6.0/Online/script.js +++ b/Applications/Internet/Internet Explorer 6.0/Online/script.js @@ -1,9 +1,9 @@ const PlainInstaller = include("utils.functions.apps.plain_installer"); const Resource = include("utils.functions.net.resource"); -const {CabExtract} = include("utils.functions.filesystem.extract"); +const { CabExtract } = include("utils.functions.filesystem.extract"); const Wine = include("engines.wine.engine.object"); -const {LATEST_STABLE_VERSION} = include("engines.wine.engine.versions"); -const {remove} = include("utils.functions.filesystem.files"); +const { LATEST_STABLE_VERSION } = include("engines.wine.engine.versions"); +const { remove } = include("utils.functions.filesystem.files"); const WineShortcut = include("engines.wine.shortcuts.wine"); const AppResource = include("utils.functions.apps.resources"); @@ -11,7 +11,7 @@ include("engines.wine.plugins.override_dll"); include("engines.wine.plugins.regedit"); include("engines.wine.plugins.regsvr32"); include("engines.wine.plugins.windows_version"); -include("engines.wine.verbs.msls31"); +const Msls31 = include("engines.wine.verbs.msls31"); new PlainInstaller().withScript(() => { var appsManager = Bean("repositoryManager"); @@ -30,8 +30,9 @@ new PlainInstaller().withScript(() => { var wine = new Wine() .wizard(setupWizard) .prefix("InternetExplorer6", "upstream", "x86", LATEST_STABLE_VERSION) - .create() - .msls31(); + .create(); + + new Msls31(wine).go(); wine.windowsVersion("win2k"); @@ -65,13 +66,11 @@ new PlainInstaller().withScript(() => { .extract(["-F", "inseng.dll"]); wine.run("iexplore", ["-unregserver"], null, false, true); - wine - .overrideDLL() + wine.overrideDLL() .set("native", ["inseng"]) .do(); wine.runInsidePrefix("IE 6.0 Full/IE6SETUP.EXE", [], true); - wine - .overrideDLL() + wine.overrideDLL() .set("native,builtin", [ "inetcpl.cpl", "itircl", diff --git a/Applications/Internet/Internet Explorer 7.0/Online/script.js b/Applications/Internet/Internet Explorer 7.0/Online/script.js index d3020199a2..22f0c564fa 100644 --- a/Applications/Internet/Internet Explorer 7.0/Online/script.js +++ b/Applications/Internet/Internet Explorer 7.0/Online/script.js @@ -1,14 +1,14 @@ const PlainInstaller = include("utils.functions.apps.plain_installer"); const Resource = include("utils.functions.net.resource"); const Wine = include("engines.wine.engine.object"); -const {LATEST_STABLE_VERSION} = include("engines.wine.engine.versions"); -const {remove} = include("utils.functions.filesystem.files"); +const { LATEST_STABLE_VERSION } = include("engines.wine.engine.versions"); +const { remove } = include("utils.functions.filesystem.files"); const WineShortcut = include("engines.wine.shortcuts.wine"); include("engines.wine.plugins.override_dll"); include("engines.wine.plugins.regsvr32"); include("engines.wine.plugins.windows_version"); -include("engines.wine.verbs.sandbox"); +const Sandbox = include("engines.wine.verbs.sandbox"); new PlainInstaller().withScript(() => { var appsManager = Bean("repositoryManager"); @@ -20,12 +20,13 @@ new PlainInstaller().withScript(() => { var wine = new Wine() .wizard(setupWizard) .prefix("InternetExplorer7", "upstream", "x86", LATEST_STABLE_VERSION) - .create() - .sandbox(); + .create(); + + new Sandbox(wine).go(); + wine.run("iexplore", ["-unregserver"], null, false, true); - wine - .overrideDLL() + wine.overrideDLL() .set("native,builtin", [ "itircl", "itss", @@ -84,145 +85,145 @@ new PlainInstaller().withScript(() => { switch (setupLanguage) { case "English": ie7link = - "http://download.microsoft.com/download/3/8/8/38889dc1-848c-4bf2-8335-86c573ad86d9/IE7-WindowsXP-x86-enu.exe"; + "http://download.microsoft.com/download/3/8/8/38889dc1-848c-4bf2-8335-86c573ad86d9/IE7-WindowsXP-x86-enu.exe"; ie7installer = "IE7-WindowsXP-x86-enu.exe"; ie7md5 = "ea16789f6fc1d2523f704e8f9afbe906"; break; case "French": ie7link = - "http://download.microsoft.com/download/d/7/6/d7635233-5433-45aa-981b-4690ae90b785/IE7-WindowsXP-x86-fra.exe"; + "http://download.microsoft.com/download/d/7/6/d7635233-5433-45aa-981b-4690ae90b785/IE7-WindowsXP-x86-fra.exe"; ie7installer = "IE7-WindowsXP-x86-fra.exe"; ie7md5 = "77c9bdd28f220f2c31fc23d73125eef7"; break; case "German": ie7link = - "http://download.microsoft.com/download/6/b/c/6bcfcbcd-d634-44f9-8231-c4b05323770a/IE7-WindowsXP-x86-deu.exe"; + "http://download.microsoft.com/download/6/b/c/6bcfcbcd-d634-44f9-8231-c4b05323770a/IE7-WindowsXP-x86-deu.exe"; ie7installer = "IE7-WindowsXP-x86-deu.exe"; ie7md5 = "b704d4f7956af137294e72c30799cabe"; break; case "Arabic": ie7link = - "http://download.microsoft.com/download/f/5/e/f5ec8dec-a76d-4866-88a3-8bd6be368c8d/IE7-WindowsXP-x86-ara.exe"; + "http://download.microsoft.com/download/f/5/e/f5ec8dec-a76d-4866-88a3-8bd6be368c8d/IE7-WindowsXP-x86-ara.exe"; ie7installer = "IE7-WindowsXP-x86-ara.exe"; ie7md5 = "d6788008595b2e241b0616b4d84652b1"; break; case "Chinese (Simplified)": ie7link = - "http://download.microsoft.com/download/4/1/8/418981a4-6ef9-4de6-befc-1a53e886cb62/IE7-WindowsXP-x86-chs.exe"; + "http://download.microsoft.com/download/4/1/8/418981a4-6ef9-4de6-befc-1a53e886cb62/IE7-WindowsXP-x86-chs.exe"; ie7installer = "IE7-WindowsXP-x86-chs.exe"; ie7md5 = "9bbf568537e6ff060954bc710b5e648e"; break; case "Chinese (Traditional, Taiwan)": ie7link = - "http://download.microsoft.com/download/4/a/5/4a5a86de-af85-432e-979c-fa69e5d781db/IE7-WindowsXP-x86-cht.exe"; + "http://download.microsoft.com/download/4/a/5/4a5a86de-af85-432e-979c-fa69e5d781db/IE7-WindowsXP-x86-cht.exe"; ie7installer = "IE7-WindowsXP-x86-cht.exe"; ie7md5 = "193bf89a4556eca1ac244bedbe7ab5aa"; break; case "Czech": ie7link = - "http://download.microsoft.com/download/6/c/9/6c933e30-c659-438e-9bc0-6e050e329d14/IE7-WindowsXP-x86-csy.exe"; + "http://download.microsoft.com/download/6/c/9/6c933e30-c659-438e-9bc0-6e050e329d14/IE7-WindowsXP-x86-csy.exe"; ie7installer = "IE7-WindowsXP-x86-csy.exe"; ie7md5 = "88859df39f3048a742756eb629483c02"; break; case "Danish": ie7link = - "http://download.microsoft.com/download/9/f/b/9fbfc1cb-47ea-4364-9829-830e5c5b8b09/IE7-WindowsXP-x86-dan.exe"; + "http://download.microsoft.com/download/9/f/b/9fbfc1cb-47ea-4364-9829-830e5c5b8b09/IE7-WindowsXP-x86-dan.exe"; ie7installer = "IE7-WindowsXP-x86-dan.exe"; ie7md5 = "1d752313b9bcfc088392a204bd00a130"; break; case "Dutch": ie7link = - "http://download.microsoft.com/download/4/3/3/433d9e80-2b31-4bf3-844f-c11eece20da5/IE7-WindowsXP-x86-nld.exe"; + "http://download.microsoft.com/download/4/3/3/433d9e80-2b31-4bf3-844f-c11eece20da5/IE7-WindowsXP-x86-nld.exe"; ie7installer = "IE7-WindowsXP-x86-nld.exe"; ie7md5 = "752244327d5fb2bb9d3f4636a3ce10c7"; break; case "Finnish": ie7link = - "http://download.microsoft.com/download/3/9/6/396ee8cb-0f76-47ab-86b1-3c2ad0752bc3/IE7-WindowsXP-x86-fin.exe"; + "http://download.microsoft.com/download/3/9/6/396ee8cb-0f76-47ab-86b1-3c2ad0752bc3/IE7-WindowsXP-x86-fin.exe"; ie7installer = "IE7-WindowsXP-x86-fin.exe"; ie7md5 = "bc67ebaf7bf69763bcc7a6109360527d"; break; case "Greek": ie7link = - "http://download.microsoft.com/download/f/3/f/f3fc00ed-8b5d-4e36-81f0-fe0d722993e2/IE7-WindowsXP-x86-ell.exe"; + "http://download.microsoft.com/download/f/3/f/f3fc00ed-8b5d-4e36-81f0-fe0d722993e2/IE7-WindowsXP-x86-ell.exe"; ie7installer = "IE7-WindowsXP-x86-ell.exe"; ie7md5 = "9974e80af2c470581cb3c58332cd9f0a"; break; case "Hebrew": ie7link = - "http://download.microsoft.com/download/5/8/7/587bbf05-6132-4a49-a81d-765082ce8246/IE7-WindowsXP-x86-heb.exe"; + "http://download.microsoft.com/download/5/8/7/587bbf05-6132-4a49-a81d-765082ce8246/IE7-WindowsXP-x86-heb.exe"; ie7installer = "IE7-WindowsXP-x86-heb.exe"; ie7md5 = "19eb048477c1cb70e0b68405d2569d22"; break; case "Hungarian": ie7link = - "http://download.microsoft.com/download/7/2/c/72c09e25-5635-43f9-9f62-56a8f87c58a5/IE7-WindowsXP-x86-hun.exe"; + "http://download.microsoft.com/download/7/2/c/72c09e25-5635-43f9-9f62-56a8f87c58a5/IE7-WindowsXP-x86-hun.exe"; ie7installer = "IE7-WindowsXP-x86-hun.exe"; ie7md5 = "ae8e824392642166d52d33a5dab55c5d"; break; case "Italian": ie7link = - "http://download.microsoft.com/download/3/9/0/3907f96d-1bbd-499a-b6bd-5d69789ddb54/IE7-WindowsXP-x86-ita.exe"; + "http://download.microsoft.com/download/3/9/0/3907f96d-1bbd-499a-b6bd-5d69789ddb54/IE7-WindowsXP-x86-ita.exe"; ie7installer = "IE7-WindowsXP-x86-ita.exe"; ie7md5 = "510a2083dfb4e42209d845968861a2df"; break; case "Japanese": ie7link = - "http://download.microsoft.com/download/d/4/8/d488b16c-877d-474d-912f-bb88e358055d/IE7-WindowsXP-x86-jpn.exe"; + "http://download.microsoft.com/download/d/4/8/d488b16c-877d-474d-912f-bb88e358055d/IE7-WindowsXP-x86-jpn.exe"; ie7installer = "IE7-WindowsXP-x86-jpn.exe"; ie7md5 = "13934f80870d549493197b5cb0995112"; break; case "Korean": ie7link = - "http://download.microsoft.com/download/1/0/a/10ad8b7f-2354-420d-aae3-ddcff81554fb/IE7-WindowsXP-x86-kor.exe"; + "http://download.microsoft.com/download/1/0/a/10ad8b7f-2354-420d-aae3-ddcff81554fb/IE7-WindowsXP-x86-kor.exe"; ie7installer = "IE7-WindowsXP-x86-kor.exe"; ie7md5 = "3cc8e93f191f726e5ec9b23349a261c0"; break; case "Norwegian": ie7link = - "http://download.microsoft.com/download/a/a/3/aa317f65-e818-458c-a36f-9f0feb017744/IE7-WindowsXP-x86-nor.exe"; + "http://download.microsoft.com/download/a/a/3/aa317f65-e818-458c-a36f-9f0feb017744/IE7-WindowsXP-x86-nor.exe"; ie7installer = "IE7-WindowsXP-x86-nor.exe"; ie7md5 = "7450388c1dd004f63b39ade2868da9bd"; break; case "Polish": ie7link = - "http://download.microsoft.com/download/6/a/0/6a01b4fa-66e5-4447-8f36-9330a8725ecd/IE7-WindowsXP-x86-plk.exe"; + "http://download.microsoft.com/download/6/a/0/6a01b4fa-66e5-4447-8f36-9330a8725ecd/IE7-WindowsXP-x86-plk.exe"; ie7installer = "IE7-WindowsXP-x86-plk.exe"; ie7md5 = "09677cc0df807cd9fb0a834eeecbfec9"; break; case "Portuguese (Brazil)": ie7link = - "http://download.microsoft.com/download/e/9/8/e98bd8ac-3122-4079-bb70-d19b5d5ef875/IE7-WindowsXP-x86-ptb.exe"; + "http://download.microsoft.com/download/e/9/8/e98bd8ac-3122-4079-bb70-d19b5d5ef875/IE7-WindowsXP-x86-ptb.exe"; ie7installer = "IE7-WindowsXP-x86-ptb.exe"; ie7md5 = "ec5098a90641f4c3c248582ed8d7cf8c"; break; case "Portuguese (Portugal)": ie7link = - "http://download.microsoft.com/download/9/9/0/99012553-0eea-402d-99e9-bdc2f4ee26a9/IE7-WindowsXP-x86-ptg.exe"; + "http://download.microsoft.com/download/9/9/0/99012553-0eea-402d-99e9-bdc2f4ee26a9/IE7-WindowsXP-x86-ptg.exe"; ie7installer = "IE7-WindowsXP-x86-ptg.exe"; ie7md5 = "5882c9721261d564220e4f776a811197"; break; case "Russian": ie7link = - "http://download.microsoft.com/download/d/4/e/d4e2d315-2493-44a4-8135-b5310b4a50a4/IE7-WindowsXP-x86-rus.exe"; + "http://download.microsoft.com/download/d/4/e/d4e2d315-2493-44a4-8135-b5310b4a50a4/IE7-WindowsXP-x86-rus.exe"; ie7installer = "IE7-WindowsXP-x86-rus.exe"; ie7md5 = "db8d6f76a16a690458c65b831bfe14a4"; break; case "Spanish": ie7link = - "http://download.microsoft.com/download/4/c/4/4c4fc47b-974c-4dc9-b189-2820f68b4535/IE7-WindowsXP-x86-esn.exe"; + "http://download.microsoft.com/download/4/c/4/4c4fc47b-974c-4dc9-b189-2820f68b4535/IE7-WindowsXP-x86-esn.exe"; ie7installer = "IE7-WindowsXP-x86-esn.exe"; ie7md5 = "0b90933978f8f39589b4bd6e457d8899"; break; case "Swedish": ie7link = - "http://download.microsoft.com/download/1/2/3/12311242-faa8-4edf-a0c4-86bf4e029a54/IE7-WindowsXP-x86-sve.exe"; + "http://download.microsoft.com/download/1/2/3/12311242-faa8-4edf-a0c4-86bf4e029a54/IE7-WindowsXP-x86-sve.exe"; ie7installer = "IE7-WindowsXP-x86-sve.exe"; ie7md5 = "7a569708bd72ab99289064008609bfa8"; break; case "Turkish": ie7link = - "http://download.microsoft.com/download/4/e/7/4e77d531-5c33-4f9b-a5c9-ea29fb79cc56/IE7-WindowsXP-x86-trk.exe"; + "http://download.microsoft.com/download/4/e/7/4e77d531-5c33-4f9b-a5c9-ea29fb79cc56/IE7-WindowsXP-x86-trk.exe"; ie7installer = "IE7-WindowsXP-x86-trk.exe"; ie7md5 = "71a39c77bcfd1e2299e99cb7433e5856"; break; diff --git a/Applications/Office/Adobe Acrobat Reader DC/Online/script.js b/Applications/Office/Adobe Acrobat Reader DC/Online/script.js index 8708c175a2..7c28d592c4 100644 --- a/Applications/Office/Adobe Acrobat Reader DC/Online/script.js +++ b/Applications/Office/Adobe Acrobat Reader DC/Online/script.js @@ -1,7 +1,7 @@ const OnlineInstallerScript = include("engines.wine.quick_script.online_installer_script"); -const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); +const { LATEST_STAGING_VERSION } = include("engines.wine.engine.versions"); -include("engines.wine.verbs.mspatcha"); +const Mspatcha = include("engines.wine.verbs.mspatcha"); include("engines.wine.plugins.windows_version"); new OnlineInstallerScript() @@ -16,7 +16,7 @@ new OnlineInstallerScript() .category("Office") .executable("AcroRd32.exe") .preInstall(function (wine /*, wizard*/) { - wine.mspatcha(); + new Mspatcha(wine).go(); }) .postInstall(function (wine /*, wizard*/) { // fix broken dialogs (e.g. preferences) diff --git a/Applications/Office/ElsterFormular/Online/script.js b/Applications/Office/ElsterFormular/Online/script.js index 800bad768e..8308267aa8 100644 --- a/Applications/Office/ElsterFormular/Online/script.js +++ b/Applications/Office/ElsterFormular/Online/script.js @@ -1,7 +1,7 @@ const LocalInstallerScript = include("engines.wine.quick_script.local_installer_script"); include("engines.wine.plugins.native_application"); -include("engines.wine.verbs.vcrun2017"); +const Vcrun2017 = include("engines.wine.verbs.vcrun2017"); new LocalInstallerScript() .name("ElsterFormular") @@ -14,6 +14,7 @@ new LocalInstallerScript() .category("Office") .executable("pica.exe") .preInstall(function (wine /*, wizard*/) { - wine.vcrun2017(); + new Vcrun2017(wine).go(); + wine.nativeApplication("pdf"); }); diff --git a/Engines/Wine/Engine/Implementation/script.js b/Engines/Wine/Engine/Implementation/script.js index d26a5613ae..2371e68d90 100644 --- a/Engines/Wine/Engine/Implementation/script.js +++ b/Engines/Wine/Engine/Implementation/script.js @@ -26,6 +26,7 @@ module.default = class WineEngine { this._wineWebServiceUrl = propertyReader.getProperty("webservice.wine.url"); this._wizard = null; this._workingContainer = ""; + this._fetchedRuntimeJson = false; } getLocalDirectory(subCategory, version) { @@ -109,6 +110,11 @@ module.default = class WineEngine { } } _installRuntime(setupWizard) { + // avoid that runtime is installed multiple times during one installation + if (this._fetchedRuntimeJson) { + return; + } + const runtimeJsonPath = this._wineEnginesDirectory + "/runtime.json"; let runtimeJson; let runtimeJsonFile; @@ -261,6 +267,8 @@ module.default = class WineEngine { remove(this._wineEnginesDirectory + "/TMP"); } + + this._fetchedRuntimeJson = true; } _installGecko(setupWizard, winePackage, localDirectory) { diff --git a/Engines/Wine/Engine/Versions/script.js b/Engines/Wine/Engine/Versions/script.js index 9fb13113b5..769972240b 100644 --- a/Engines/Wine/Engine/Versions/script.js +++ b/Engines/Wine/Engine/Versions/script.js @@ -1,8 +1,8 @@ /* exported LATEST_STABLE_VERSION */ -module.LATEST_STABLE_VERSION = "4.0.1"; +module.LATEST_STABLE_VERSION = "4.0.2"; /* exported LATEST_DEVELOPMENT_VERSION */ -module.LATEST_DEVELOPMENT_VERSION = "4.14"; +module.LATEST_DEVELOPMENT_VERSION = "4.17"; /* exported LATEST_STAGING_VERSION */ -module.LATEST_STAGING_VERSION = "4.14"; +module.LATEST_STAGING_VERSION = "4.17"; /* exported LATEST_DOS_SUPPORT_VERSION */ module.LATEST_DOS_SUPPORT_VERSION = "4.0"; diff --git a/Engines/Wine/QuickScript/GoG Script/script.js b/Engines/Wine/QuickScript/GoG Script/script.js index 02ddf652a0..d6bbc17841 100644 --- a/Engines/Wine/QuickScript/GoG Script/script.js +++ b/Engines/Wine/QuickScript/GoG Script/script.js @@ -1,9 +1,9 @@ const Wine = include("engines.wine.engine.object"); const QuickScript = include("engines.wine.quick_script.quick_script"); const Downloader = include("utils.functions.net.download"); -const {createTempDir} = include("utils.functions.filesystem.files"); +const { createTempDir } = include("utils.functions.filesystem.files"); -include("engines.wine.verbs.gdiplus"); +const GDIPlus = include("engines.wine.verbs.gdiplus"); module.default = class GogScript extends QuickScript { constructor() { @@ -76,7 +76,7 @@ module.default = class GogScript extends QuickScript { .wizard(setupWizard) .to(tmpDirectory) .headers({ - "Authorization": "Bearer " + this._token["access_token"], + Authorization: "Bearer " + this._token["access_token"], "User-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:64.0) Gecko/20100101 Firefox/64.0" }) .get(); @@ -112,7 +112,8 @@ module.default = class GogScript extends QuickScript { this._preInstall(wine, setupWizard); - wine.gdiplus(); + new GDIPlus(wine).go(); + wine.run(setupFile, [], wine.prefixDirectory() + "/drive_c/", true, true); this._postInstall(wine, setupWizard); @@ -121,4 +122,4 @@ module.default = class GogScript extends QuickScript { setupWizard.close(); } -} +}; diff --git a/Engines/Wine/QuickScript/Installer Script/script.js b/Engines/Wine/QuickScript/Installer Script/script.js index 0a566e8377..92ac9b5d41 100644 --- a/Engines/Wine/QuickScript/Installer Script/script.js +++ b/Engines/Wine/QuickScript/Installer Script/script.js @@ -3,7 +3,7 @@ const Wine = include("engines.wine.engine.object"); const {LATEST_STABLE_VERSION} = include("engines.wine.engine.versions"); const {fileName} = include("utils.functions.filesystem.files"); -include("engines.wine.verbs.luna"); +const Luna = include("engines.wine.verbs.luna"); const operatingSystemFetcher = Bean("operatingSystemFetcher"); @@ -76,7 +76,9 @@ module.default = class InstallerScript extends QuickScript { } // setup the prefix - wine.prefix(this._name, this._wineDistribution, this._wineArchitecture, this._wineVersion).luna(); + wine.prefix(this._name, this._wineDistribution, this._wineArchitecture, this._wineVersion); + + new Luna(wine).go(); this._preInstall(wine, setupWizard); diff --git a/Engines/Wine/QuickScript/Origin Script/script.js b/Engines/Wine/QuickScript/Origin Script/script.js index f393b5a59b..e23133355b 100644 --- a/Engines/Wine/QuickScript/Origin Script/script.js +++ b/Engines/Wine/QuickScript/Origin Script/script.js @@ -3,7 +3,7 @@ const Downloader = include("utils.functions.net.download"); const Wine = include("engines.wine.engine.object"); const {createTempFile} = include("utils.functions.filesystem.files"); -include("engines.wine.verbs.luna"); +const Luna = include("engines.wine.verbs.luna"); module.default = class OriginScript extends QuickScript { constructor() { @@ -38,8 +38,9 @@ module.default = class OriginScript extends QuickScript { const wine = new Wine() .wizard(setupWizard) - .prefix(this._name, this._wineDistribution, this._wineArchitecture, this._wineVersion) - .luna(); + .prefix(this._name, this._wineDistribution, this._wineArchitecture, this._wineVersion); + + new Luna(wine).go(); //Origin does not have an install command setupWizard.message(tr("Download \"{0}\" in Origin and shut it down once \"{0}\" is installed", this._name)); diff --git a/Engines/Wine/QuickScript/Steam Script/script.js b/Engines/Wine/QuickScript/Steam Script/script.js index 606ce6f73f..45ff616ea2 100644 --- a/Engines/Wine/QuickScript/Steam Script/script.js +++ b/Engines/Wine/QuickScript/Steam Script/script.js @@ -1,13 +1,15 @@ const QuickScript = include("engines.wine.quick_script.quick_script"); const Downloader = include("utils.functions.net.download"); const Wine = include("engines.wine.engine.object"); -const {cat, fileExists, writeToFile, createTempFile} = include("utils.functions.filesystem.files"); +const { cat, fileExists, writeToFile, createTempFile } = include("utils.functions.filesystem.files"); -include("engines.wine.verbs.luna"); -include("engines.wine.verbs.corefonts"); +const Luna = include("engines.wine.verbs.luna"); +const Corefonts = include("engines.wine.verbs.corefonts"); include("engines.wine.plugins.override_dll"); include("engines.wine.plugins.windows_version"); +const Thread = Java.type("java.lang.Thread"); + module.default = class SteamScript extends QuickScript { constructor() { super(); @@ -36,30 +38,44 @@ module.default = class SteamScript extends QuickScript { manifest(wine) { if (!this._manifest) { // cache manifest path (will not change during the installation) - this._manifest = wine.prefixDirectory() + "/drive_c/" + wine.programFiles() + "/Steam/steamapps/appmanifest_" + this._appId + ".acf"; + this._manifest = `${wine.prefixDirectory()}/drive_c/${wine.programFiles()}/Steam/steamapps/appmanifest_${this._appId}.acf`; } + return this._manifest; } + /** + * Checks whether the software download has started + * + * @param {Wine} wine The wine engine object + * @returns {boolean} True if the download has started, false otherwise + */ downloadStarted(wine) { if (fileExists(this.manifest(wine))) { const manifest = cat(this.manifest(wine)); - const state = Number(manifest.match(/\"StateFlags\"\s+\"(\d+)\"/)[1]); + const state = parseInt(manifest.match(/"StateFlags"\s+"(\d+)"/)[1], 10); + return state == 1026 || state == 1042 || state == 1062 || state == 1030; - } - else { + } else { return false; } } + /** + * Checks whether the software download has finished. + * To get a valid result with this method `downloadStarted(wine)` needs to return `true` first + * + * @param {Wine} wine The wine engine object + * @returns {boolean} True if the download has finished, false otherwise + */ downloadFinished(wine) { // check if download already finished (download folder has been deleted) if (fileExists(this.manifest(wine))) { const manifest = cat(this.manifest(wine)); - const state = Number(manifest.match(/\"StateFlags\"\s+\"(\d+)\"/)[1]); + const state = parseInt(manifest.match(/"StateFlags"\s+"(\d+)"/)[1], 10); + return state != 1026 && state != 1042 && state != 1062 && state != 1030; - } - else { + } else { return false; } } @@ -67,8 +83,9 @@ module.default = class SteamScript extends QuickScript { configVdf(wine) { if (!this._configVdf) { // cache config.vdf path (will not change during the installation) - this._configVdf = wine.prefixDirectory() + "/drive_c/" + wine.programFiles() + "/Steam/config/config.vdf"; + this._configVdf = `${wine.prefixDirectory()}/drive_c/${wine.programFiles()}/Steam/config/config.vdf`; } + return this._configVdf; } @@ -76,21 +93,22 @@ module.default = class SteamScript extends QuickScript { fixCertificateIssue(wine) { const steamConfigFile = this.configVdf(wine); const steamConfig = cat(steamConfigFile); - const cmPos = steamConfig.indexOf("\"CM\""); - const csConfig = "\"CS\" \"valve511.steamcontent.com;valve501.steamcontent.com;valve517.steamcontent.com;valve557.steamcontent.com;valve513.steamcontent.com;valve535.steamcontent.com;valve546.steamcontent.com;valve538.steamcontent.com;valve536.steamcontent.com;valve530.steamcontent.com;valve559.steamcontent.com;valve545.steamcontent.com;valve518.steamcontent.com;valve548.steamcontent.com;valve555.steamcontent.com;valve556.steamcontent.com;valve506.steamcontent.com;valve544.steamcontent.com;valve525.steamcontent.com;valve567.steamcontent.com;valve521.steamcontent.com;valve510.steamcontent.com;valve542.steamcontent.com;valve519.steamcontent.com;valve526.steamcontent.com;valve504.steamcontent.com;valve500.steamcontent.com;valve554.steamcontent.com;valve562.steamcontent.com;valve524.steamcontent.com;valve502.steamcontent.com;valve505.steamcontent.com;valve547.steamcontent.com;valve560.steamcontent.com;valve503.steamcontent.com;valve507.steamcontent.com;valve553.steamcontent.com;valve520.steamcontent.com;valve550.steamcontent.com;valve531.steamcontent.com;valve558.steamcontent.com;valve552.steamcontent.com;valve563.steamcontent.com;valve540.steamcontent.com;valve541.steamcontent.com;valve537.steamcontent.com;valve528.steamcontent.com;valve523.steamcontent.com;valve512.steamcontent.com;valve532.steamcontent.com;valve561.steamcontent.com;valve549.steamcontent.com;valve522.steamcontent.com;valve514.steamcontent.com;valve551.steamcontent.com;valve564.steamcontent.com;valve543.steamcontent.com;valve565.steamcontent.com;valve529.steamcontent.com;valve539.steamcontent.com;valve566.steamcontent.com;valve165.steamcontent.com;valve959.steamcontent.com;valve164.steamcontent.com;valve1611.steamcontent.com;valve1601.steamcontent.com;valve1617.steamcontent.com;valve1603.steamcontent.com;valve1602.steamcontent.com;valve1610.steamcontent.com;valve1615.steamcontent.com;valve909.steamcontent.com;valve900.steamcontent.com;valve905.steamcontent.com;valve954.steamcontent.com;valve955.steamcontent.com;valve1612.steamcontent.com;valve1607.steamcontent.com;valve1608.steamcontent.com;valve1618.steamcontent.com;valve1619.steamcontent.com;valve1606.steamcontent.com;valve1605.steamcontent.com;valve1609.steamcontent.com;valve907.steamcontent.com;valve901.steamcontent.com;valve902.steamcontent.com;valve1604.steamcontent.com;valve908.steamcontent.com;valve950.steamcontent.com;valve957.steamcontent.com;valve903.steamcontent.com;valve1614.steamcontent.com;valve904.steamcontent.com;valve952.steamcontent.com;valve1616.steamcontent.com;valve1613.steamcontent.com;valve958.steamcontent.com;valve956.steamcontent.com;valve906.steamcontent.com\"\n"; + const cmPos = steamConfig.indexOf(`"CM"`); + const csConfig = `"CS" "valve511.steamcontent.com;valve501.steamcontent.com;valve517.steamcontent.com;valve557.steamcontent.com;valve513.steamcontent.com;valve535.steamcontent.com;valve546.steamcontent.com;valve538.steamcontent.com;valve536.steamcontent.com;valve530.steamcontent.com;valve559.steamcontent.com;valve545.steamcontent.com;valve518.steamcontent.com;valve548.steamcontent.com;valve555.steamcontent.com;valve556.steamcontent.com;valve506.steamcontent.com;valve544.steamcontent.com;valve525.steamcontent.com;valve567.steamcontent.com;valve521.steamcontent.com;valve510.steamcontent.com;valve542.steamcontent.com;valve519.steamcontent.com;valve526.steamcontent.com;valve504.steamcontent.com;valve500.steamcontent.com;valve554.steamcontent.com;valve562.steamcontent.com;valve524.steamcontent.com;valve502.steamcontent.com;valve505.steamcontent.com;valve547.steamcontent.com;valve560.steamcontent.com;valve503.steamcontent.com;valve507.steamcontent.com;valve553.steamcontent.com;valve520.steamcontent.com;valve550.steamcontent.com;valve531.steamcontent.com;valve558.steamcontent.com;valve552.steamcontent.com;valve563.steamcontent.com;valve540.steamcontent.com;valve541.steamcontent.com;valve537.steamcontent.com;valve528.steamcontent.com;valve523.steamcontent.com;valve512.steamcontent.com;valve532.steamcontent.com;valve561.steamcontent.com;valve549.steamcontent.com;valve522.steamcontent.com;valve514.steamcontent.com;valve551.steamcontent.com;valve564.steamcontent.com;valve543.steamcontent.com;valve565.steamcontent.com;valve529.steamcontent.com;valve539.steamcontent.com;valve566.steamcontent.com;valve165.steamcontent.com;valve959.steamcontent.com;valve164.steamcontent.com;valve1611.steamcontent.com;valve1601.steamcontent.com;valve1617.steamcontent.com;valve1603.steamcontent.com;valve1602.steamcontent.com;valve1610.steamcontent.com;valve1615.steamcontent.com;valve909.steamcontent.com;valve900.steamcontent.com;valve905.steamcontent.com;valve954.steamcontent.com;valve955.steamcontent.com;valve1612.steamcontent.com;valve1607.steamcontent.com;valve1608.steamcontent.com;valve1618.steamcontent.com;valve1619.steamcontent.com;valve1606.steamcontent.com;valve1605.steamcontent.com;valve1609.steamcontent.com;valve907.steamcontent.com;valve901.steamcontent.com;valve902.steamcontent.com;valve1604.steamcontent.com;valve908.steamcontent.com;valve950.steamcontent.com;valve957.steamcontent.com;valve903.steamcontent.com;valve1614.steamcontent.com;valve904.steamcontent.com;valve952.steamcontent.com;valve1616.steamcontent.com;valve1613.steamcontent.com;valve958.steamcontent.com;valve956.steamcontent.com;valve906.steamcontent.com"\n`; const newSteamConfig = steamConfig.slice(0, cmPos) + csConfig + steamConfig.slice(cmPos); - writeToFile(steamConfigFile, newSteamConfig) + + writeToFile(steamConfigFile, newSteamConfig); } go() { // default application homepage if not specified if (!this._applicationHomepage) { - this._applicationHomepage = "https://store.steampowered.com/app/" + this._appId; + this._applicationHomepage = `https://store.steampowered.com/app/${this._appId}`; } // default executable args if not specified if (!this._executableArgs) { - this._executableArgs = ["-no-cef-sandbox", "-silent", "-applaunch", this._appId]; + this._executableArgs = ["-no-cef-sandbox", "-silent", "-applaunch", `${this._appId}`]; } const setupWizard = SetupWizard(InstallationType.APPS, this._name, this.miniature()); @@ -108,29 +126,42 @@ module.default = class SteamScript extends QuickScript { const wine = new Wine() .wizard(setupWizard) - .prefix(this._name, this._wineDistribution, this._wineArchitecture, this._wineVersion) - .luna(); + .prefix(this._name, this._wineDistribution, this._wineArchitecture, this._wineVersion); - wine.corefonts(); + new Luna(wine).go(); + new Corefonts(wine).go(); // Steam must be started once such that config.vdf is created (see fixCertificateIssue()) - setupWizard.wait(tr("Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of \"{0}\" can continue.", this._name)); + setupWizard.wait( + tr( + 'Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue.', + this._name + ) + ); wine.run(tempFile, [], null, false, true); // Set windows environment for executable that needs it - wine.setOsForApplication().set("steam.exe", "winxp").do(); - wine.setOsForApplication().set("steamwebhelper.exe", "winxp").do(); + wine.setOsForApplication() + .set("steam.exe", "winxp") + .do(); + wine.setOsForApplication() + .set("steamwebhelper.exe", "winxp") + .do(); // Fix for Uplay games that are executed on steam - wine.setOsForApplication().set("upc.exe", "winvista").do(); - wine.setOsForApplication().set("UbisoftGameLauncher.exe", "winvista").do(); + wine.setOsForApplication() + .set("upc.exe", "winvista") + .do(); + wine.setOsForApplication() + .set("UbisoftGameLauncher.exe", "winvista") + .do(); // ensure that Steam is running (user might have unchecked "run Steam after installation finished") - wine.runInsidePrefix(wine.programFiles() + "/Steam/Steam.exe", ["steam://nav/games"], false); + wine.runInsidePrefix(`${wine.programFiles()}/Steam/Steam.exe`, ["steam://nav/games"], false); // wait until config.vdf exists while (!fileExists(this.configVdf(wine))) { - java.lang.Thread.sleep(1000); + Thread.sleep(1000); } // wait until Steam and Wine are closed @@ -146,22 +177,22 @@ module.default = class SteamScript extends QuickScript { // back to generic wait (might have been changed in preInstall) setupWizard.wait(tr("Please wait...")); - wine.runInsidePrefix(wine.programFiles() + "/Steam/Steam.exe", ["steam://install/" + this._appId], false); + wine.runInsidePrefix(`${wine.programFiles()}/Steam/Steam.exe`, [`steam://install/${this._appId}`], false); setupWizard.wait(tr("Please wait until Steam has finished the download...")); // wait until download started while (!this.downloadStarted(wine)) { - java.lang.Thread.sleep(100); + Thread.sleep(100); } // make sure download is finished while (!this.downloadFinished(wine)) { - java.lang.Thread.sleep(1000); + Thread.sleep(1000); } // close Steam - wine.runInsidePrefix(wine.programFiles() + "/Steam/Steam.exe", "-shutdown", true); + wine.runInsidePrefix(`${wine.programFiles()}/Steam/Steam.exe`, "-shutdown", true); // back to generic wait setupWizard.wait(tr("Please wait...")); @@ -183,4 +214,4 @@ module.default = class SteamScript extends QuickScript { setupWizard.close(); } -} +}; diff --git a/Engines/Wine/QuickScript/Uplay Script/script.js b/Engines/Wine/QuickScript/Uplay Script/script.js index abbe38c387..e136c87ae6 100644 --- a/Engines/Wine/QuickScript/Uplay Script/script.js +++ b/Engines/Wine/QuickScript/Uplay Script/script.js @@ -3,8 +3,8 @@ const Downloader = include("utils.functions.net.download"); const Wine = include("engines.wine.engine.object"); const {fileExists, createTempFile} = include("utils.functions.filesystem.files"); -include("engines.wine.verbs.luna"); -include("engines.wine.verbs.corefonts"); +const Luna = include("engines.wine.verbs.luna"); +const Corefonts = include("engines.wine.verbs.corefonts"); include("engines.wine.plugins.windows_version"); module.default = class UplayScript extends QuickScript { @@ -49,10 +49,10 @@ module.default = class UplayScript extends QuickScript { const wine = new Wine() .wizard(setupWizard) - .prefix(this._name, this._wineDistribution, this._wineArchitecture, this._wineVersion) - .luna(); + .prefix(this._name, this._wineDistribution, this._wineArchitecture, this._wineVersion); - wine.corefonts(); + new Luna(wine).go(); + new Corefonts(wine).go(); setupWizard.message(tr("Please ensure that winbind is installed before you continue.")); setupWizard.wait(tr("Please follow the steps of the Uplay setup.\n\nUncheck \"Run Uplay\" or close Uplay completely after the setup so that the installation of \"{0}\" can continue.", this._name)); diff --git a/Engines/Wine/QuickScript/Zip Script/script.js b/Engines/Wine/QuickScript/Zip Script/script.js index 65e3d316e3..af9de0e887 100644 --- a/Engines/Wine/QuickScript/Zip Script/script.js +++ b/Engines/Wine/QuickScript/Zip Script/script.js @@ -1,9 +1,9 @@ const QuickScript = include("engines.wine.quick_script.quick_script"); const Downloader = include("utils.functions.net.download"); const Wine = include("engines.wine.engine.object"); -const {Extractor} = include("utils.functions.filesystem.extract"); +const { Extractor } = include("utils.functions.filesystem.extract"); -include("engines.wine.verbs.luna"); +const Luna = include("engines.wine.verbs.luna"); module.default = class ZipScript extends QuickScript { constructor() { @@ -28,9 +28,11 @@ module.default = class ZipScript extends QuickScript { const wine = new Wine() .wizard(setupWizard) .prefix(this._name, this._wineDistribution, this._wineArchitecture, this._wineVersion) - .create() - .luna() - .wait(); + .create(); + + new Luna(wine).go(); + + wine.wait(); this._preInstall(wine, setupWizard); @@ -65,4 +67,4 @@ module.default = class ZipScript extends QuickScript { setupWizard.close(); } -} +}; diff --git a/Engines/Wine/Verbs/D9VK/script.js b/Engines/Wine/Verbs/D9VK/script.js index afa41ff970..daaa7fed17 100644 --- a/Engines/Wine/Verbs/D9VK/script.js +++ b/Engines/Wine/Verbs/D9VK/script.js @@ -1,93 +1,118 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -const {Extractor} = include("utils.functions.filesystem.extract"); -const {ls, cp, remove} = include("utils.functions.filesystem.files"); +const { Extractor } = include("utils.functions.filesystem.extract"); +const { ls, cp, remove } = include("utils.functions.filesystem.files"); + +const operatingSystemFetcher = Bean("operatingSystemFetcher"); + +const Optional = Java.type("java.util.Optional"); include("engines.wine.plugins.override_dll"); /** * Verb to install D9VK * see: https://github.com/Joshua-Ashton/d9vk/ - * - * @param {String} d9vkVersion D9VK version to download - * @returns {Wine} Wine object */ -Wine.prototype.D9VK = function (d9vkVersion) { - var operatingSystemFetcher = Bean("operatingSystemFetcher"); +class D9VK { + constructor(wine) { + this.wine = wine; + } - print("NOTE: Wine version should be greater or equal to 3.10"); + /** + * Specifies the D9VK version to download + * + * @param {string} d9vkVersion The D9VK version to download + * @returns {D9VK} The D9VK object + */ + withVersion(d9vkVersion) { + this.d9vkVersion = d9vkVersion; - if (operatingSystemFetcher.fetchCurrentOperationSystem() != "Linux") { - this.wizard().message(tr("D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement")); - } - else { - this.wizard().message(tr("Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.")); + return this; } - if (typeof d9vkVersion !== 'string') { - d9vkVersion = "0.12"; - } + go() { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + const system32directory = this.wine.system32directory(); + const architecture = this.wine.architecture(); + + print("NOTE: Wine version should be greater or equal to 3.10"); - var setupFile = new Resource() - .wizard(this.wizard()) - .url("https://github.com/Joshua-Ashton/d9vk/releases/download/" + d9vkVersion + "/d9vk-" + d9vkVersion + ".tar.gz") - .name("d9vk-" + d9vkVersion + ".tar.gz") - .get(); - - new Extractor() - .wizard(this.wizard()) - .archive(setupFile) - .to(this.prefixDirectory() + "/TMP/") - .extract(); - - var forEach = Array.prototype.forEach; - var sys32dir = this.system32directory(); - var d9vkTmpDir = this.prefixDirectory() + "/TMP/d9vk-" + d9vkVersion; - var self = this; - - //Copy 32 bits dll to system* and apply override - forEach.call(ls(d9vkTmpDir + "/x32"), function (file) { - if (file.endsWith(".dll")) { - cp(d9vkTmpDir + "/x32/" + file, sys32dir); - self.overrideDLL() - .set("native", [file]) - .do(); + if (operatingSystemFetcher.fetchCurrentOperationSystem() != "Linux") { + wizard.message( + tr( + "D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement" + ) + ); + } else { + wizard.message( + tr( + "Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly." + ) + ); } - }); - if (this.architecture() == "amd64") { - var sys64dir = this.system64directory(); - //Copy 64 bits dll to system* - forEach.call(ls(d9vkTmpDir + "/x64"), function (file) { + if (typeof this.d9vkVersion !== "string") { + this.d9vkVersion = "0.12"; + } + + var setupFile = new Resource() + .wizard(wizard) + .url( + `https://github.com/Joshua-Ashton/d9vk/releases/download/${this.d9vkVersion}/d9vk-${this.d9vkVersion}.tar.gz` + ) + .name(`d9vk-${this.d9vkVersion}.tar.gz`) + .get(); + + new Extractor() + .wizard(wizard) + .archive(setupFile) + .to(`${prefixDirectory}/TMP/`) + .extract(); + + const d9vkTmpDir = `${prefixDirectory}/TMP/d9vk-${this.d9vkVersion}`; + + // copy 32 bits dll to system* and apply override + ls(`${d9vkTmpDir}/x32`).forEach(file => { if (file.endsWith(".dll")) { - cp(d9vkTmpDir + "/x64/" + file, sys64dir); + cp(`${d9vkTmpDir}/x32/${file}`, system32directory); + + this.wine + .overrideDLL() + .set("native", [file]) + .do(); } }); - } - remove(this.prefixDirectory() + "/TMP/"); + if (architecture == "amd64") { + const system64directory = this.wine.system64directory(); - return this; -} + // copy 64 bits dll to system* + ls(d9vkTmpDir + "/x64").forEach(file => { + if (file.endsWith(".dll")) { + cp(`${d9vkTmpDir}/x64/${file}`, system64directory); + } + }); + } -/** - * Verb to install D9VK - */ -// eslint-disable-next-line no-unused-vars -module.default = class D9VKVerb { - constructor() { - // do nothing + remove(`${prefixDirectory}/TMP/`); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "D9VK", Optional.empty()); + + const versions = ["0.12", "0.11", "0.10"]; + const selectedVersion = wizard.menu(tr("Please select the version."), versions, "0.12"); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "D9VK", java.util.Optional.empty()); - var versions = ["0.12", "0.11", "0.10"]; - var selectedVersion = wizard.menu(tr("Please select the version."), versions, "0.12"); wine.wizard(wizard); + // install selected version - wine.D9VK(selectedVersion.text); + new D9VK(wine).withVersion(selectedVersion.text).go(); + wizard.close(); } } + +module.default = D9VK; diff --git a/Engines/Wine/Verbs/DXVK/script.js b/Engines/Wine/Verbs/DXVK/script.js index ec17de3548..6992625e9a 100644 --- a/Engines/Wine/Verbs/DXVK/script.js +++ b/Engines/Wine/Verbs/DXVK/script.js @@ -1,121 +1,175 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -const {Extractor} = include("utils.functions.filesystem.extract"); -const {ls, cp, cat, remove} = include("utils.functions.filesystem.files"); +const { Extractor } = include("utils.functions.filesystem.extract"); +const { ls, cp, cat, remove } = include("utils.functions.filesystem.files"); + +const operatingSystemFetcher = Bean("operatingSystemFetcher"); + +const Optional = Java.type("java.util.Optional"); include("engines.wine.plugins.override_dll"); /** * Verb to install DXVK - * see: https://github.com/doitsujin/dxvk/ * - * @param {String} dxvkVersion DXVK version to download - * @returns {Wine} Wine object + * see: https://github.com/doitsujin/dxvk/ */ -Wine.prototype.DXVK = function (dxvkVersion) { - var operatingSystemFetcher = Bean("operatingSystemFetcher"); +class DXVK { + constructor(wine) { + this.wine = wine; + } - print("NOTE: wine version should be greater or equal to 3.10"); + /** + * Sets the DXVK version to download + * + * @param {string} dxvkVersion The DXVK version to download + * @returns {DXVK} The DXVK object + */ + withVersion(dxvkVersion) { + this.dxvkVersion = dxvkVersion; - if (operatingSystemFetcher.fetchCurrentOperationSystem() != "Linux") { - this.wizard().message(tr("DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement")); - } - else { - this.wizard().message(tr("Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.")); + return this; } - if (typeof dxvkVersion !== 'string') { - var releaseFile = new Resource() - .wizard(this.wizard()) - .url("https://raw.githubusercontent.com/doitsujin/dxvk/master/RELEASE") - .name("RELEASE.txt") - .get(); - dxvkVersion = cat(releaseFile).replaceAll("\\n", ""); - } + go() { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + const sys32dir = this.wine.system32directory(); + const architecture = this.wine.architecture(); + + print("NOTE: wine version should be greater or equal to 3.10"); + + if (operatingSystemFetcher.fetchCurrentOperationSystem() != "Linux") { + wizard.message( + tr( + "DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement" + ) + ); + } else { + wizard.message( + tr( + "Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly." + ) + ); + } + + if (typeof this.dxvkVersion !== "string") { + const releaseFile = new Resource() + .wizard(wizard) + .url("https://raw.githubusercontent.com/doitsujin/dxvk/master/RELEASE") + .name("RELEASE.txt") + .get(); - var setupFile = new Resource() - .wizard(this.wizard()) - .url("https://github.com/doitsujin/dxvk/releases/download/v" + dxvkVersion + "/dxvk-" + dxvkVersion + ".tar.gz") - .name("dxvk-" + dxvkVersion + ".tar.gz") - .get(); - - new Extractor() - .wizard(this.wizard()) - .archive(setupFile) - .to(this.prefixDirectory() + "/TMP/") - .extract(); - - var forEach = Array.prototype.forEach; - var sys32dir = this.system32directory(); - var dxvkTmpDir = this.prefixDirectory() + "/TMP/dxvk-" + dxvkVersion; - var self = this; - - //Copy 32 bits dll to system* and apply override - forEach.call(ls(dxvkTmpDir + "/x32"), function (file) { - if (file.endsWith(".dll")) { - cp(dxvkTmpDir + "/x32/" + file, sys32dir); - self.overrideDLL() - .set("native", [file]) - .do(); + this.dxvkVersion = cat(releaseFile).replaceAll("\\n", ""); } - }); - if (this.architecture() == "amd64") { - var sys64dir = this.system64directory(); - //Copy 64 bits dll to system* - forEach.call(ls(dxvkTmpDir + "/x64"), function (file) { + const setupFile = new Resource() + .wizard(wizard) + .url( + `https://github.com/doitsujin/dxvk/releases/download/v${this.dxvkVersion}/dxvk-${this.dxvkVersion}.tar.gz` + ) + .name(`dxvk-${this.dxvkVersion}.tar.gz`) + .get(); + + new Extractor() + .wizard(wizard) + .archive(setupFile) + .to(`${prefixDirectory}/TMP/`) + .extract(); + + const dxvkTmpDir = `${prefixDirectory}/TMP/dxvk-${this.dxvkVersion}`; + + //Copy 32 bits dll to system* and apply override + ls(`${dxvkTmpDir}/x32`).forEach(file => { if (file.endsWith(".dll")) { - cp(dxvkTmpDir + "/x64/" + file, sys64dir); + cp(`${dxvkTmpDir}/x32/${file}`, sys32dir); + + this.wine + .overrideDLL() + .set("native", [file]) + .do(); } }); - } - remove(this.prefixDirectory() + "/TMP/"); + if (architecture == "amd64") { + const sys64dir = this.wine.system64directory(); - return this; -} + //Copy 64 bits dll to system* + ls(`${dxvkTmpDir}/x64`).forEach(file => { + if (file.endsWith(".dll")) { + cp(`${dxvkTmpDir}/x64/${file}`, sys64dir); + } + }); + } -/** - * Verb to install DXVK - */ -// eslint-disable-next-line no-unused-vars -module.default = class DXVKVerb { - constructor() { - // do nothing + remove(`${prefixDirectory}/TMP/`); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "DXVK", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "DXVK", java.util.Optional.empty()); + wine.wizard(wizard); // get latest release version - var releaseFile = new Resource() + const releaseFile = new Resource() .wizard(wizard) .url("https://raw.githubusercontent.com/doitsujin/dxvk/master/RELEASE") .name("RELEASE.txt") .get(); - var latestVersion = cat(releaseFile).replaceAll("\\n", ""); + const latestVersion = cat(releaseFile).replaceAll("\\n", ""); + // query desired version (default: latest release version) - var versions = [ - "1.2.2", "1.2.1", "1.2", + const versions = [ + "1.2.2", + "1.2.1", + "1.2", "1.1.1", - "1.0.3", "1.0.2", "1.0.1", "1.0", - "0.96", "0.95", "0.94", "0.93", "0.92", "0.91", "0.90", - "0.81", "0.80", "0.72", "0.71", "0.70", - "0.65", "0.64", "0.63", "0.62", "0.61", "0.60", - "0.54", "0.53", "0.52", "0.51", "0.50", - "0.42", "0.41", "0.40", - "0.31", "0.30", - "0.21", "0.20" + "1.0.3", + "1.0.2", + "1.0.1", + "1.0", + "0.96", + "0.95", + "0.94", + "0.93", + "0.92", + "0.91", + "0.90", + "0.81", + "0.80", + "0.72", + "0.71", + "0.70", + "0.65", + "0.64", + "0.63", + "0.62", + "0.61", + "0.60", + "0.54", + "0.53", + "0.52", + "0.51", + "0.50", + "0.42", + "0.41", + "0.40", + "0.31", + "0.30", + "0.21", + "0.20" ]; - var selectedVersion = wizard.menu(tr("Please select the version."), versions, latestVersion); - wine.wizard(wizard); + const selectedVersion = wizard.menu(tr("Please select the version."), versions, latestVersion); + // install selected version - wine.DXVK(selectedVersion.text); + new DXVK(wine).withVersion(selectedVersion.text).go(); wizard.close(); } } + +module.default = DXVK; diff --git a/Engines/Wine/Verbs/FAudio/script.js b/Engines/Wine/Verbs/FAudio/script.js index 344a23083e..53e48eb429 100644 --- a/Engines/Wine/Verbs/FAudio/script.js +++ b/Engines/Wine/Verbs/FAudio/script.js @@ -1,81 +1,90 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -const {Extractor} = include("utils.functions.filesystem.extract"); -const {ls, cp} = include("utils.functions.filesystem.files"); +const { Extractor } = include("utils.functions.filesystem.extract"); +const { ls, cp } = include("utils.functions.filesystem.files"); + +const Optional = Java.type("java.util.Optional"); include("engines.wine.plugins.override_dll"); /** * Verb to install FAudio * see: https://github.com/Kron4ek/FAudio-Builds - * - * @param {String} faudioVersion version of FAudio to downlaod - * @returns {Wine} Wine object */ -Wine.prototype.faudio = function (faudioVersion) { - if (this.architecture() != "amd64") { - throw "FAudio does not support 32bit architecture."; +class FAudio { + constructor(wine) { + this.wine = wine; } - if (typeof faudioVersion !== "string") { - faudioVersion = "19.06.07"; + + /** + * Sets the used FAudio version + * + * @param {string} faudioVersion The version of FAudio to downlaod + * @returns {FAudio} The FAudio object + */ + withVersion(faudioVersion) { + this.faudioVersion = faudioVersion; + + return this; } - var setupFile = new Resource() - .wizard(this.wizard()) - .url( - "https://github.com/Kron4ek/FAudio-Builds/releases/download/" + - faudioVersion + - "/faudio-" + - faudioVersion + - ".tar.xz" - ) - .name("faudio-" + faudioVersion + ".tar.xz") - .get(); - - new Extractor() - .wizard(this.wizard()) - .archive(setupFile) - .to(this.prefixDirectory() + "/FAudio/") - .extract(); - - var forEach = Array.prototype.forEach; - var sys64dir = this.system64directory(); - var faudioDir = this.prefixDirectory() + "/FAudio/faudio-" + faudioVersion; - var self = this; - - forEach.call(ls(faudioDir + "/x64"), function (file) { - if (file.endsWith(".dll")) { - cp(faudioDir + "/x64/" + file, sys64dir); - self.overrideDLL() - .set("native", [file]) - .do(); + go() { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + const system64directory = this.wine.system64directory(); + + if (this.wine.architecture() != "amd64") { + throw "FAudio does not support 32bit architecture."; } - }); - return this; -}; + if (typeof this.faudioVersion !== "string") { + this.faudioVersion = "19.08"; + } -/** - * Verb to install FAudio - */ -// eslint-disable-next-line no-unused-vars -module.default = class FAudioVerb { - constructor() { - // do nothing - } + const setupFile = new Resource() + .wizard(wizard) + .url( + `https://github.com/Kron4ek/FAudio-Builds/releases/download/${this.faudioVersion}/faudio-${this.faudioVersion}.tar.xz` + ) + .name(`faudio-${this.faudioVersion}.tar.xz`) + .get(); - install(container) { - const wizard = SetupWizard(InstallationType.VERBS, "FAudio", java.util.Optional.empty()); - const versions = ["19.06.07", "19.06", "19.05", "19.04", "19.03", "19.02", "19.01"]; + new Extractor() + .wizard(wizard) + .archive(setupFile) + .to(`${prefixDirectory}/FAudio/`) + .extract(); - const selectedVersion = wizard.menu(tr("Please select the version."), versions, "19.06.07"); + const faudioDir = `${prefixDirectory}/FAudio/faudio-${this.faudioVersion}`; + ls(`${faudioDir}/x64`).forEach(file => { + if (file.endsWith(".dll")) { + cp(`${faudioDir}/x64/${file}`, system64directory); + + this.wine + .overrideDLL() + .set("native", [file]) + .do(); + } + }); + } + + static install(container) { const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "FAudio", Optional.empty()); + wine.prefix(container); wine.wizard(wizard); + + const versions = ["19.08", "19.07", "19.06.07", "19.06", "19.05", "19.04", "19.03", "19.02", "19.01"]; + + const selectedVersion = wizard.menu(tr("Please select the version."), versions, "19.08"); + // install selected version - wine.faudio(selectedVersion.text); + new FAudio(wine).withVersion(selectedVersion.text).go(); wizard.close(); } } + +module.default = FAudio; diff --git a/Engines/Wine/Verbs/PhysX/script.js b/Engines/Wine/Verbs/PhysX/script.js index 61eca9476f..1ac2bd77c6 100644 --- a/Engines/Wine/Verbs/PhysX/script.js +++ b/Engines/Wine/Verbs/PhysX/script.js @@ -1,42 +1,42 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -include("engines.wine.verbs.luna"); +const Optional = Java.type("java.util.Optional"); /** * Verb to install Nvidia PhysX - * - * @returns {Wine} Wine object */ -Wine.prototype.physx = function () { - var setupFile = new Resource() - .wizard(this.wizard()) - .url("http://uk.download.nvidia.com/Windows/9.14.0702/PhysX-9.14.0702-SystemSoftware.msi") - .checksum("81e2d38e2356e807ad80cdf150ed5acfff839c8b") - .name("PhysX-9.14.0702-SystemSoftware.msi") - .get(); +class PhysX { + constructor(wine) { + this.wine = wine; + } - this.wizard().wait(tr("Please wait while {0} is installed...", "PhysX")); - this.run("msiexec", ["/i", setupFile, "/q"], null, false, true); + go() { + const wizard = this.wine.wizard(); - return this; -}; + const setupFile = new Resource() + .wizard(wizard) + .url("http://uk.download.nvidia.com/Windows/9.14.0702/PhysX-9.14.0702-SystemSoftware.msi") + .checksum("81e2d38e2356e807ad80cdf150ed5acfff839c8b") + .name("PhysX-9.14.0702-SystemSoftware.msi") + .get(); -/** - * Verb to install Nvidia PhysX - */ -// eslint-disable-next-line no-unused-vars -module.default = class PhysXVerb { - constructor() { - // do nothing + wizard.wait(tr("Please wait while {0} is installed...", "PhysX")); + + this.wine.run("msiexec", ["/i", setupFile, "/q"], null, false, true); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "physx", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "physx", java.util.Optional.empty()); wine.wizard(wizard); - wine.physx(); + + new PhysX(wine).go(); + wizard.close(); } } + +module.default = PhysX; diff --git a/Engines/Wine/Verbs/QuickTime 7.6/script.js b/Engines/Wine/Verbs/QuickTime 7.6/script.js index 8bd2a6ec64..6eecb2679d 100644 --- a/Engines/Wine/Verbs/QuickTime 7.6/script.js +++ b/Engines/Wine/Verbs/QuickTime 7.6/script.js @@ -1,40 +1,55 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); +const Optional = Java.type("java.util.Optional"); + /** * Verb to install QuickTime 7.6 - * - * @returns {Wine} Wine object */ -Wine.prototype.quicktime76 = function () { - var setupFile = new Resource() - .wizard(this.wizard()) - .url("http://appldnld.apple.com/QuickTime/041-0025.20101207.Ptrqt/QuickTimeInstaller.exe") - .checksum("1eec8904f041d9e0ad3459788bdb690e45dbc38e") - .name("QuickTimeInstaller.exe") - .get(); +class QuickTime76 { + constructor(wine) { + this.wine = wine; + } - this.wizard().wait(tr("Please wait while {0} is installed...", "QuickTime")); - this.run(setupFile, ["ALLUSERS=1", "DESKTOP_SHORTCUTS=0", "QTTaskRunFlags=0", "QTINFO.BISQTPRO=1", "SCHEDULE_ASUW=0", "REBOOT_REQUIRED=No"], null, false, true); + go() { + const wizard = this.wine.wizard(); - return this; -}; + const setupFile = new Resource() + .wizard(wizard) + .url("http://appldnld.apple.com/QuickTime/041-0025.20101207.Ptrqt/QuickTimeInstaller.exe") + .checksum("1eec8904f041d9e0ad3459788bdb690e45dbc38e") + .name("QuickTimeInstaller.exe") + .get(); -/** - * Verb to install QuickTime 7.6 - */ -// eslint-disable-next-line no-unused-vars -module.default = class QuickTime76Verb { - constructor() { - // do nothing + wizard.wait(tr("Please wait while {0} is installed...", "QuickTime")); + + this.wine.run( + setupFile, + [ + "ALLUSERS=1", + "DESKTOP_SHORTCUTS=0", + "QTTaskRunFlags=0", + "QTINFO.BISQTPRO=1", + "SCHEDULE_ASUW=0", + "REBOOT_REQUIRED=No" + ], + null, + false, + true + ); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "quicktime76", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "quicktime76", java.util.Optional.empty()); wine.wizard(wizard); + wine.quicktime76(); + wizard.close(); } } + +module.default = QuickTime76; diff --git a/Engines/Wine/Verbs/Remove Mono/script.js b/Engines/Wine/Verbs/Remove Mono/script.js index 415cc61c92..6261f18752 100644 --- a/Engines/Wine/Verbs/Remove Mono/script.js +++ b/Engines/Wine/Verbs/Remove Mono/script.js @@ -1,48 +1,55 @@ const Wine = include("engines.wine.engine.object"); -const {remove} = include("utils.functions.filesystem.files"); +const { remove } = include("utils.functions.filesystem.files"); + +const Optional = Java.type("java.util.Optional"); include("engines.wine.plugins.regedit"); /** * Verb to remove mono - * - * @returns {Wine} Wine object */ -Wine.prototype.removeMono = function () { - if (this.uninstall("Mono")) { - this.wizard().wait(tr("Please wait...")); - this.regedit().deleteKey("HKLM\\Software\\Microsoft\\.NETFramework\\v2.0.50727\\SBSDisabled"); +class RemoveMono { + constructor(wine) { + this.wine = wine; + } - this.wizard().wait(tr("Please wait...")); - this.regedit().deleteKey("HKLM\\Software\\Microsoft\\NET Framework Setup\\NDP\\v3.5"); + go() { + const wizard = this.wine.wizard(); + const system32directory = this.wine.system32directory(); + const system64directory = this.wine.system64directory(); - this.wizard().wait(tr("Please wait...")); - this.regedit().deleteKey("HKLM\\Software\\Microsoft\\NET Framework Setup\\NDP\\v4"); + if (this.wine.uninstall("Mono")) { + wizard.wait(tr("Please wait...")); - remove(this.system32directory() + "/mscoree.dll"); - if (this.architecture() == "amd64") { - remove(this.system64directory() + "/mscoree.dll"); - } - } + this.wine.regedit().deleteKey("HKLM\\Software\\Microsoft\\.NETFramework\\v2.0.50727\\SBSDisabled"); - return this; -}; + wizard.wait(tr("Please wait...")); -/** - * Verb to remove mono - */ -// eslint-disable-next-line no-unused-vars -module.default = class RemoveMonoVerb { - constructor() { - // do nothing + this.wine.regedit().deleteKey("HKLM\\Software\\Microsoft\\NET Framework Setup\\NDP\\v3.5"); + + wizard.wait(tr("Please wait...")); + + this.wine.regedit().deleteKey("HKLM\\Software\\Microsoft\\NET Framework Setup\\NDP\\v4"); + + remove(`${system32directory}/mscoree.dll`); + + if (this.wine.architecture() == "amd64") { + remove(`${system64directory}/mscoree.dll`); + } + } } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "remove_mono", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "remove_mono", java.util.Optional.empty()); wine.wizard(wizard); - wine.removeMono(); + + new RemoveMono(wine).go(); + wizard.close(); } } + +module.default = RemoveMono; diff --git a/Engines/Wine/Verbs/Tahoma/script.js b/Engines/Wine/Verbs/Tahoma/script.js index 93f52135a0..44ec9d1cb4 100644 --- a/Engines/Wine/Verbs/Tahoma/script.js +++ b/Engines/Wine/Verbs/Tahoma/script.js @@ -1,55 +1,59 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -const {cp} = include("utils.functions.filesystem.files"); -const {CabExtract} = include("utils.functions.filesystem.extract"); +const { cp } = include("utils.functions.filesystem.files"); +const { CabExtract } = include("utils.functions.filesystem.extract"); + +const Optional = Java.type("java.util.Optional"); include("engines.wine.plugins.register_font"); -include("engines.wine.verbs.luna"); /** * Verb to install the Tahoma font - * - * @returns {Wine} Wine object */ -Wine.prototype.tahoma = function () { - var tahoma = new Resource() - .wizard(this.wizard()) - .url("https://master.dl.sourceforge.net/project/corefonts/OldFiles/IELPKTH.CAB") - .checksum("40c3771ba4ce0811fe18a7a7903e40fcce46422d") - .name("IELPKTH.CAB") - .get(); - - new CabExtract() - .archive(tahoma) - .to(this.prefixDirectory() + "/drive_c/tahoma/") - .extract(["-L", "-F", "tahoma*.tff"]); - - cp(this.prefixDirectory() + "/drive_c/tahoma/tahoma.ttf", this.fontDirectory()); - cp(this.prefixDirectory() + "/drive_c/tahoma/tahomabd.ttf", this.fontDirectory()); - - this.registerFont() - .set("Tahoma", "tahoma.ttf") - .set("Tahoma Bold", "tahomabd.ttf") - .do(); - - return this; -}; +class Tahoma { + constructor(wine) { + this.wine = wine; + } -/** - * Verb to install the Tahoma font - */ -// eslint-disable-next-line no-unused-vars -module.default = class TahomaVerb { - constructor() { - // do nothing + go() { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + const fontDirectory = this.wine.fontDirectory(); + + const tahoma = new Resource() + .wizard(wizard) + .url("https://master.dl.sourceforge.net/project/corefonts/OldFiles/IELPKTH.CAB") + .checksum("40c3771ba4ce0811fe18a7a7903e40fcce46422d") + .name("IELPKTH.CAB") + .get(); + + new CabExtract() + .wizard(wizard) + .archive(tahoma) + .to(`${prefixDirectory}/drive_c/tahoma/`) + .extract(["-L", "-F", "tahoma*.tff"]); + + cp(`${prefixDirectory}/drive_c/tahoma/tahoma.ttf`, fontDirectory); + cp(`${prefixDirectory}/drive_c/tahoma/tahomabd.ttf`, fontDirectory); + + this.wine + .registerFont() + .set("Tahoma", "tahoma.ttf") + .set("Tahoma Bold", "tahomabd.ttf") + .do(); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "tahoma", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "tahoma", java.util.Optional.empty()); wine.wizard(wizard); - wine.tahoma(); + + new Tahoma(wine).go(); + wizard.close(); } } + +module.default = Tahoma; diff --git a/Engines/Wine/Verbs/Uplay/script.js b/Engines/Wine/Verbs/Uplay/script.js index 73a98ac6b1..59f6254840 100644 --- a/Engines/Wine/Verbs/Uplay/script.js +++ b/Engines/Wine/Verbs/Uplay/script.js @@ -1,39 +1,45 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); +const Optional = Java.type("java.util.Optional"); + /** * Verb to install Uplay - * - * @returns {Wine} Wine object */ -Wine.prototype.uplay = function () { - var setupFile = new Resource() - .wizard(this.wizard()) - .url("https://ubistatic3-a.akamaihd.net/orbit/launcher_installer/UplayInstaller.exe") - .name("UplayInstaller.exe") - .get(); +class Uplay { + constructor(wine) { + this.wine = wine; + } - this.wizard().wait(tr("Please follow the steps of the Uplay setup.\n\nUncheck \"Run Uplay\" or close Uplay completely after the setup so that the installation can continue.")); - this.run(setupFile, [], null, false, true); + go() { + const wizard = this.wine.wizard(); - return this; -}; + const setupFile = new Resource() + .wizard(wizard) + .url("https://ubistatic3-a.akamaihd.net/orbit/launcher_installer/UplayInstaller.exe") + .name("UplayInstaller.exe") + .get(); -/** - * Verb to install Uplay - */ -// eslint-disable-next-line no-unused-vars -module.default = class UplayVerb { - constructor() { - // do nothing + wizard.wait( + tr( + 'Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue.' + ) + ); + + this.wine.run(setupFile, [], null, false, true); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "uplay", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "uplay", java.util.Optional.empty()); wine.wizard(wizard); - wine.uplay(); + + new Uplay(wine).go(); + wizard.close(); } } + +module.default = Uplay; diff --git a/Engines/Wine/Verbs/VK9/script.js b/Engines/Wine/Verbs/VK9/script.js index b5075ec1e0..0264b30f59 100644 --- a/Engines/Wine/Verbs/VK9/script.js +++ b/Engines/Wine/Verbs/VK9/script.js @@ -1,98 +1,123 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -const {Extractor} = include("utils.functions.filesystem.extract"); -const {cp, remove} = include("utils.functions.filesystem.files"); +const { Extractor } = include("utils.functions.filesystem.extract"); +const { cp, remove } = include("utils.functions.filesystem.files"); + +const Optional = Java.type("java.util.Optional"); include("engines.wine.plugins.override_dll"); +const operatingSystemFetcher = Bean("operatingSystemFetcher"); + /** * Verb to install VK9 * see: https://github.com/disks86/VK9 - * - * @param {String} vk9Version VK9 version to install - * @returns {Wine} Wine object */ -Wine.prototype.VK9 = function (vk9Version) { - var operatingSystemFetcher = Bean("operatingSystemFetcher"); - - if (operatingSystemFetcher.fetchCurrentOperationSystem() != "Linux") { - this.wizard().message(tr("VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement")); - } else { - this.wizard().message(tr("Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.")); +class VK9 { + constructor(wine) { + this.wine = wine; } - print("NOTE: wine version should be greater or equal to 3.5"); - print("NOTE: works from 0.28.0"); + /** + * Sets the VK9 version to install + * + * @param {string} vk9Version The VK9 version to install + * @returns {VK9} The VK9 object + */ + withVersion(vk9Version) { + this.vk9Version = vk9Version; - if (typeof vk9Version !== 'string') { - vk9Version = "0.29.0"; + return this; } - var setupFile32 = new Resource() - .wizard(this.wizard()) - .url("https://github.com/disks86/VK9/releases/download/" + vk9Version + "/" + vk9Version + "-bin-x86-Release.zip") - .name(vk9Version + "-bin-x86-Realease.zip") - .get(); - - new Extractor() - .wizard(this.wizard()) - .archive(setupFile32) - .to(this.prefixDirectory() + "/TMP32/") - .extract(); - - cp(this.prefixDirectory() + "/TMP32/" + vk9Version + "-bin-x86-Release/" + "d3d9.dll", this.system32directory()); - - remove(this.prefixDirectory() + "/TMP32/"); - - if (this.architecture() === "amd64") { - var setupFile64 = new Resource() - .wizard(this.wizard()) - .url("https://github.com/disks86/VK9/releases/download/" + vk9Version + "/" + vk9Version + "-bin-x86_64-Release.zip") - .name(vk9Version + "-bin-x86_64-Realease.zip") + go() { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + const system32directory = this.wine.system32directory(); + const system64directory = this.wine.system64directory(); + + if (operatingSystemFetcher.fetchCurrentOperationSystem() != "Linux") { + wizard.message( + tr( + "VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement" + ) + ); + } else { + wizard.message( + tr( + "Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly." + ) + ); + } + + print("NOTE: wine version should be greater or equal to 3.5"); + print("NOTE: works from 0.28.0"); + + if (typeof this.vk9Version !== "string") { + this.vk9Version = "0.29.0"; + } + + const setupFile32 = new Resource() + .wizard(wizard) + .url( + `https://github.com/disks86/VK9/releases/download/${this.vk9Version}/${this.vk9Version}-bin-x86-Release.zip` + ) + .name(`${this.vk9Version}-bin-x86-Realease.zip`) .get(); new Extractor() - .wizard(this.wizard()) - .archive(setupFile64) - .to(this.prefixDirectory() + "/TMP64/") + .wizard(wizard) + .archive(setupFile32) + .to(`${prefixDirectory}/TMP32/`) .extract(); - cp(this.prefixDirectory() + "/TMP64/" + vk9Version + "-bin-x86_64-Release/" + "d3d9.dll", this.system64directory()); + cp(`${prefixDirectory}/TMP32/${this.vk9Version}-bin-x86-Release/d3d9.dll`, system32directory); - remove(this.prefixDirectory() + "/TMP64/"); - } + remove(`${prefixDirectory}/TMP32/`); - this.overrideDLL() - .set("native", ["d3d9"]) - .do(); + if (this.wine.architecture() === "amd64") { + const setupFile64 = new Resource() + .wizard(wizard) + .url( + `https://github.com/disks86/VK9/releases/download/${this.vk9Version}/${this.vk9Version}-bin-x86_64-Release.zip` + ) + .name(`${this.vk9Version}-bin-x86_64-Realease.zip`) + .get(); - return this; -} + new Extractor() + .wizard(wizard) + .archive(setupFile64) + .to(`${prefixDirectory}/TMP64/`) + .extract(); -/** - * Verb to install VK9 - */ -// eslint-disable-next-line no-unused-vars -module.default = class VK9Verb { - constructor() { - // do nothing + cp(`${prefixDirectory}/TMP64/${this.vk9Version}-bin-x86_64-Release/d3d9.dll`, system64directory); + + remove(`${prefixDirectory}/TMP64/`); + } + + this.wine + .overrideDLL() + .set("native", ["d3d9"]) + .do(); } - install(container) { - var wine = new Wine(); - wine.prefix(container); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "VK9", Optional.empty()); - var wizard = SetupWizard(InstallationType.VERBS, "VK9", java.util.Optional.empty()); + wine.prefix(container); + wine.wizard(wizard); // this script is not able to install older versions (VK9.conf mandatory) - var versions = ["0.29.0", "0.28.1", "0.28.0"]; + const versions = ["0.29.0", "0.28.1", "0.28.0"]; // query desired version (default: 0.28.1) - var selectedVersion = wizard.menu(tr("Please select the version."), versions, "0.28.1"); - wine.wizard(wizard); + const selectedVersion = wizard.menu(tr("Please select the version."), versions, "0.28.1"); // install selected version - wine.VK9(selectedVersion.text); + new VK9(wine).withVersion(selectedVersion.text).go(); wizard.close(); } } + +module.default = VK9; diff --git a/Engines/Wine/Verbs/Windows XP SP 3/script.js b/Engines/Wine/Verbs/Windows XP SP 3/script.js index 4b550ee7c5..eb27c77470 100644 --- a/Engines/Wine/Verbs/Windows XP SP 3/script.js +++ b/Engines/Wine/Verbs/Windows XP SP 3/script.js @@ -3,54 +3,60 @@ const Resource = include("utils.functions.net.resource"); const { CabExtract } = include("utils.functions.filesystem.extract"); const { remove, fileName } = include("utils.functions.filesystem.files"); +const Optional = Java.type("java.util.Optional"); + /** * Verb to install Windows XP Service Pack 3 - * - * @param {string} fileToExtract path to file which shall be extracted - * @returns {Wine} Wine object */ -Wine.prototype.sp3extract = function (fileToExtract) { - const targetDirectory = this.system32directory(); +class WindowsXPSP3 { + constructor(wine) { + this.wine = wine; + } - const setupFile = new Resource() - .wizard(this.wizard()) - .url("http://freeware.epsc.wustl.edu/Win/XP_SP3/WindowsXP-KB936929-SP3-x86-ENU.exe") - .checksum("c81472f7eeea2eca421e116cd4c03e2300ebfde4") - .name("WindowsXP-KB936929-SP3-x86-ENU.exe") - .get(); + /** + * Sets the path to the file which shall be extracted + * + * @param {string} fileToExtract The path to the file which shall be extracted + * @returns {WindowsXPSP3} The WindowsXPSP3 object + */ + withFileToExtract(fileToExtract) { + this.fileToExtract = fileToExtract; - new CabExtract() - .archive(setupFile) - .wizard(this.wizard()) - .to(this.prefixDirectory() + "/drive_c/sp3/") - .extract(["-F", "i386/" + fileToExtract.slice(0, -1) + "_"]); + return this; + } - remove(targetDirectory + "/" + fileToExtract); + go() { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + const system32directory = this.wine.system32directory(); - new CabExtract() - .archive(this.prefixDirectory() + "/drive_c/sp3/i386/" + fileToExtract.slice(0, -1) + "_") - .wizard(this.wizard()) - .to(targetDirectory) - .extract(); + const setupFile = new Resource() + .wizard(wizard) + .url("http://freeware.epsc.wustl.edu/Win/XP_SP3/WindowsXP-KB936929-SP3-x86-ENU.exe") + .checksum("c81472f7eeea2eca421e116cd4c03e2300ebfde4") + .name("WindowsXP-KB936929-SP3-x86-ENU.exe") + .get(); - return this; -}; + new CabExtract() + .wizard(wizard) + .archive(setupFile) + .to(`${prefixDirectory}/drive_c/sp3/`) + .extract(["-F", `i386/${this.fileToExtract.slice(0, -1)}_`]); -/** - * Verb to install Windows XP Service Pack 3 - */ -module.default = class WindowsXPSP3Verb { - constructor() { - // do nothing + remove(`${system32directory}/${this.fileToExtract}`); + + new CabExtract() + .wizard(wizard) + .archive(`${prefixDirectory}/drive_c/sp3/i386/${this.fileToExtract.slice(0, -1)}_`) + .to(system32directory) + .extract(); } - install(container) { + static install(container) { const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "sp3extract", Optional.empty()); wine.prefix(container); - - const wizard = SetupWizard(InstallationType.VERBS, "sp3extract", java.util.Optional.empty()); - wine.wizard(wizard); // query .dll file which shall be extracted @@ -59,8 +65,10 @@ module.default = class WindowsXPSP3Verb { ); // extract requested file - wine.sp3extract(fileToExtract); + new WindowsXPSP3(wine).withFileToExtract(fileToExtract).go(); wizard.close(); } -}; +} + +module.default = WindowsXPSP3; diff --git a/Engines/Wine/Verbs/adobeair/script.js b/Engines/Wine/Verbs/adobeair/script.js index cccd475559..c5d334f5fb 100644 --- a/Engines/Wine/Verbs/adobeair/script.js +++ b/Engines/Wine/Verbs/adobeair/script.js @@ -1,52 +1,49 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.windows_version"); /** * Verb to install adobeair - * - * @returns {Wine} Wine object */ -Wine.prototype.adobeair = function () { - const adobeair = new Resource() - .wizard(this.wizard()) - .url("https://airdownload.adobe.com/air/win/download/latest/AdobeAIRInstaller.exe") - .name("AdobeAIRInstaller.exe") - .get(); - - // Using Windows XP to workaround the wine bug 43506 - // See https://bugs.winehq.org/show_bug.cgi?id=43506 - const currentWindowsVersion = this.windowsVersion(); +class AdobeAir { + constructor(wine) { + this.wine = wine; + } - this.windowsVersion("winxp"); + go() { + const wizard = this.wine.wizard(); + // Using Windows XP to workaround the wine bug 43506 + // See https://bugs.winehq.org/show_bug.cgi?id=43506 + const currentWindowsVersion = this.wine.windowsVersion(); - this.run(adobeair); - this.wait(); + this.wine.windowsVersion("winxp"); - this.windowsVersion(currentWindowsVersion); + const adobeair = new Resource() + .wizard(wizard) + .url("https://airdownload.adobe.com/air/win/download/latest/AdobeAIRInstaller.exe") + .name("AdobeAIRInstaller.exe") + .get(); - return this; -}; + this.wine.run(adobeair); + this.wine.wait(); -/** - * Verb to install adobeair - */ -// eslint-disable-next-line no-unused-vars -module.default = class AdobeAirVerb { - constructor() { - // do nothing + this.wine.windowsVersion(currentWindowsVersion); } - install(container) { + static install(container) { const wine = new Wine(); - wine.prefix(container); + const wizard = SetupWizard(InstallationType.VERBS, "adobeair", Optional.empty()); - const wizard = SetupWizard(InstallationType.VERBS, "adobeair", java.util.Optional.empty()); + wine.prefix(container); wine.wizard(wizard); - wine.adobeair(); + new AdobeAir(wine).go(); wizard.close(); } } + +module.default = AdobeAir; diff --git a/Engines/Wine/Verbs/amstream/script.js b/Engines/Wine/Verbs/amstream/script.js index f5dc4fa345..91b430bbe3 100644 --- a/Engines/Wine/Verbs/amstream/script.js +++ b/Engines/Wine/Verbs/amstream/script.js @@ -1,76 +1,106 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -const {cp, remove} = include("utils.functions.filesystem.files"); -const {CabExtract} = include("utils.functions.filesystem.extract"); +const { cp, remove } = include("utils.functions.filesystem.files"); +const { CabExtract } = include("utils.functions.filesystem.extract"); + +const Optional = Java.type("java.util.Optional"); include("engines.wine.plugins.override_dll"); include("engines.wine.plugins.regsvr32"); -include("engines.wine.verbs.luna"); /** * Verb to install amstream - * - * @returns {Wine} Wine object */ -Wine.prototype.amstream = function () { - var setupFile = new Resource() - .wizard(this.wizard()) - .url("https://download.microsoft.com/download/0/A/F/0AFB5316-3062-494A-AB78-7FB0D4461357/windows6.1-KB976932-X86.exe") - .checksum("c3516bc5c9e69fee6d9ac4f981f5b95977a8a2fa") - .name("windows6.1-KB976932-X86.exe") - .get(); - - this.wizard().wait(tr("Please wait while {0} is installed...", "amstream")); - - remove(this.system32directory() + "/amstream.dll"); - - new CabExtract() - .archive(setupFile) - .to(this.system32directory()) - .extract(["-L", "-F", "x86_microsoft-windows-directshow-other_31bf3856ad364e35_6.1.7601.17514_none_0f58f1e53efca91e/amstream.dll"]); - - cp(this.system32directory() + "/x86_microsoft-windows-directshow-other_31bf3856ad364e35_6.1.7601.17514_none_0f58f1e53efca91e/amstream.dll", this.system32directory()); - this.regsvr32().install("amstream.dll"); - - if (this.architecture() == "amd64") { - var setupFilex64 = new Resource() - .wizard(this.wizard()) - .url("https://download.microsoft.com/download/0/A/F/0AFB5316-3062-494A-AB78-7FB0D4461357/windows6.1-KB976932-X64.exe") - .checksum("74865ef2562006e51d7f9333b4a8d45b7a749dab") - .name("windows6.1-KB976932-X64.exe") +class Amstream { + constructor(wine) { + this.wine = wine; + } + + go() { + const wizard = this.wine.wizard(); + const system32directory = this.wine.system32directory(); + const architecture = this.wine.architecture(); + + const setupFile = new Resource() + .wizard(wizard) + .url( + "https://download.microsoft.com/download/0/A/F/0AFB5316-3062-494A-AB78-7FB0D4461357/windows6.1-KB976932-X86.exe" + ) + .checksum("c3516bc5c9e69fee6d9ac4f981f5b95977a8a2fa") + .name("windows6.1-KB976932-X86.exe") .get(); - this.wizard().wait(tr("Please wait while {0} is installed...", "amstream")); - remove(this.system64directory() + "/amstream.dll"); + + wizard.wait(tr("Please wait while {0} is installed...", "amstream")); + + remove(`${system32directory}/amstream.dll`); + new CabExtract() - .archive(setupFilex64) - .to(this.system64directory()) - .extract(["-L", "-F", "amd64_microsoft-windows-directshow-other_31bf3856ad364e35_6.1.7601.17514_none_6b778d68f75a1a54/amstream.dll"]); - cp(this.system64directory() + "/amd64_microsoft-windows-directshow-other_31bf3856ad364e35_6.1.7601.17514_none_6b778d68f75a1a54/amstream.dll", this.system64directory()); - this.regsvr64().install("amstream.dll"); - } + .wizard(wizard) + .archive(setupFile) + .to(system32directory) + .extract([ + "-L", + "-F", + "x86_microsoft-windows-directshow-other_31bf3856ad364e35_6.1.7601.17514_none_0f58f1e53efca91e/amstream.dll" + ]); - this.overrideDLL() - .set("native,builtin", ["amstream"]) - .do(); + cp( + `${system32directory}/x86_microsoft-windows-directshow-other_31bf3856ad364e35_6.1.7601.17514_none_0f58f1e53efca91e/amstream.dll`, + system32directory + ); - return this; -}; + this.wine.regsvr32().install("amstream.dll"); -/** - * Verb to install amstream - */ -// eslint-disable-next-line no-unused-vars -module.default = class AmstreamVerb { - constructor() { - // do nothing + if (architecture == "amd64") { + const system64directory = this.wine.system64directory(); + + const setupFilex64 = new Resource() + .wizard(wizard) + .url( + "https://download.microsoft.com/download/0/A/F/0AFB5316-3062-494A-AB78-7FB0D4461357/windows6.1-KB976932-X64.exe" + ) + .checksum("74865ef2562006e51d7f9333b4a8d45b7a749dab") + .name("windows6.1-KB976932-X64.exe") + .get(); + + wizard.wait(tr("Please wait while {0} is installed...", "amstream")); + + remove(`${system64directory}/amstream.dll`); + + new CabExtract() + .wizard(wizard) + .archive(setupFilex64) + .to(system64directory) + .extract([ + "-L", + "-F", + "amd64_microsoft-windows-directshow-other_31bf3856ad364e35_6.1.7601.17514_none_6b778d68f75a1a54/amstream.dll" + ]); + cp( + `${system64directory}/amd64_microsoft-windows-directshow-other_31bf3856ad364e35_6.1.7601.17514_none_6b778d68f75a1a54/amstream.dll`, + system64directory + ); + + this.wine.regsvr64().install("amstream.dll"); + } + + this.wine + .overrideDLL() + .set("native,builtin", ["amstream"]) + .do(); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "amstream", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "amstream", java.util.Optional.empty()); wine.wizard(wizard); - wine.amstream(); + + new Amstream(wine).go(); + wizard.close(); } } + +module.default = Amstream; diff --git a/Engines/Wine/Verbs/atmlib/script.js b/Engines/Wine/Verbs/atmlib/script.js index 6abd9e84de..8473c35b8c 100644 --- a/Engines/Wine/Verbs/atmlib/script.js +++ b/Engines/Wine/Verbs/atmlib/script.js @@ -1,53 +1,57 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -const {CabExtract} = include("utils.functions.filesystem.extract"); -const {remove} = include("utils.functions.filesystem.files"); +const { CabExtract } = include("utils.functions.filesystem.extract"); +const { remove } = include("utils.functions.filesystem.files"); -/** - * Verb to install atmlib - * - * @returns {Wine} Wine object - */ -Wine.prototype.atmlib = function () { - var setupFile = new Resource() - .wizard(this.wizard()) - .url("https://ftp.gnome.org/mirror/archive/ftp.sunet.se/pub/security/vendor/microsoft/win2000/Service_Packs/usa/W2KSP4_EN.EXE") - .checksum("fadea6d94a014b039839fecc6e6a11c20afa4fa8") - .name("W2ksp4_EN.exe") - .get(); - - new CabExtract() - .archive(setupFile) - .wizard(this.wizard()) - .to(this.system32directory()) - .extract(); - - new CabExtract() - .archive(this.system32directory() + "/i386/atmlib.dl_") - .wizard(this.wizard()) - .to(this.system32directory()) - .extract(); - - remove(this.system32directory() + "/i386/"); - - return this; -}; +const Optional = Java.type("java.util.Optional"); /** * Verb to install atmlib */ -// eslint-disable-next-line no-unused-vars -module.default = class AtmlibVerb { - constructor() { - // do nothing +class Atmlib { + constructor(wine) { + this.wine = wine; } - install(container) { - var wine = new Wine(); + go() { + const wizard = this.wine.wizard(); + const system32directory = this.wine.system32directory(); + + const setupFile = new Resource() + .wizard(wizard) + .url( + "https://ftp.gnome.org/mirror/archive/ftp.sunet.se/pub/security/vendor/microsoft/win2000/Service_Packs/usa/W2KSP4_EN.EXE" + ) + .checksum("fadea6d94a014b039839fecc6e6a11c20afa4fa8") + .name("W2ksp4_EN.exe") + .get(); + + new CabExtract() + .archive(setupFile) + .wizard(wizard) + .to(system32directory) + .extract(); + + new CabExtract() + .archive(`${system32directory}/i386/atmlib.dl_`) + .wizard(wizard) + .to(system32directory) + .extract(); + + remove(`${system32directory}/i386/`); + } + + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "atmlib", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "atmlib", java.util.Optional.empty()); wine.wizard(wizard); - wine.atmlib(); + + new Atmlib(wine).go(); + wizard.close(); } } + +module.default = Atmlib; diff --git a/Engines/Wine/Verbs/corefonts/script.js b/Engines/Wine/Verbs/corefonts/script.js index 8a490e2d9b..2cf6ddf899 100644 --- a/Engines/Wine/Verbs/corefonts/script.js +++ b/Engines/Wine/Verbs/corefonts/script.js @@ -2,157 +2,156 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); const { CabExtract } = include("utils.functions.filesystem.extract"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.register_font"); -include("engines.wine.verbs.luna"); /** * Verb to install corefonts - * - * @returns {Wine} Wine object */ -Wine.prototype.corefonts = function () { - const fontResources = [ - new Resource() - .wizard(this.wizard()) - .url("https://mirrors.kernel.org/gentoo/distfiles/arial32.exe") - .checksum("6d75f8436f39ab2da5c31ce651b7443b4ad2916e") - .name("arial32.exe") - .get(), - - new Resource() - .wizard(this.wizard()) - .url("https://mirrors.kernel.org/gentoo/distfiles/arialb32.exe") - .checksum("d45cdab84b7f4c1efd6d1b369f50ed0390e3d344") - .name("arialb32.exe") - .get(), - - new Resource() - .wizard(this.wizard()) - .url("https://mirrors.kernel.org/gentoo/distfiles/comic32.exe") - .checksum("2371d0327683dcc5ec1684fe7c275a8de1ef9a51") - .name("comic32.exe") - .get(), - - new Resource() - .wizard(this.wizard()) - .url("https://mirrors.kernel.org/gentoo/distfiles/courie32.exe") - .checksum("06a745023c034f88b4135f5e294fece1a3c1b057") - .name("courie32.exe") - .get(), - - new Resource() - .wizard(this.wizard()) - .url("https://mirrors.kernel.org/gentoo/distfiles/georgi32.exe") - .checksum("90e4070cb356f1d811acb943080bf97e419a8f1e") - .name("georgi32.exe") - .get(), - - new Resource() - .wizard(this.wizard()) - .url("https://mirrors.kernel.org/gentoo/distfiles/impact32.exe") - .checksum("86b34d650cfbbe5d3512d49d2545f7509a55aad2") - .name("impact32.exe") - .get(), - - new Resource() - .wizard(this.wizard()) - .url("https://mirrors.kernel.org/gentoo/distfiles/times32.exe") - .checksum("20b79e65cdef4e2d7195f84da202499e3aa83060") - .name("times32.exe") - .get(), - - new Resource() - .wizard(this.wizard()) - .url("https://mirrors.kernel.org/gentoo/distfiles/trebuc32.exe ") - .checksum("50aab0988423efcc9cf21fac7d64d534d6d0a34a") - .name("trebuc32.exe") - .get(), - - new Resource() - .wizard(this.wizard()) - .url("https://mirrors.kernel.org/gentoo/distfiles/verdan32.exe ") - .checksum("f5b93cedf500edc67502f116578123618c64a42a") - .name("verdan32.exe") - .get(), - - new Resource() - .wizard(this.wizard()) - .url("https://mirrors.kernel.org/gentoo/distfiles/webdin32.exe ") - .checksum("2fb4a42c53e50bc70707a7b3c57baf62ba58398f") - .name("webdin32.exe") - .get() - ]; - - const progressBar = this.wizard().progressBar(tr("Please wait...")); - progressBar.setText(tr("Installing {0}...", tr("fonts"))); - progressBar.setProgressPercentage(0); - - fontResources.reduce((numInstalledFonts, fontResource) => { - progressBar.setText(tr("Installing {0}...", tr("fonts"))); - progressBar.setProgressPercentage((numInstalledFonts * 100) / fontResources.length); - - new CabExtract() - .archive(fontResource) - .wizard(this.wizard()) - .to(this.fontDirectory()) - .extract(); - - return numInstalledFonts + 1; - }, 0); - - this.registerFont() - .set("Arial", "Arial.TTF") - .set("Arial Bold", "Arialbd.TTF") - .set("Arial Bold Italic", "Arialbi.TTF") - .set("Arial Italic", "Ariali.TTF") - .set("Arial Black", "AriBlk.TTF") - .set("Comic Sans MS", "Comic.TTF") - .set("Comic Sans MS Bold", "Comicbd.TTF") - .set("Courier New", "Cour.TTF") - .set("Courier New Bold", "CourBD.TTF") - .set("Courier New Bold Italic", "CourBI.TTF") - .set("Courier New Italic", "Couri.TTF") - .set("Georgia", "Georgia.TTF") - .set("Georgia Bold", "Georgiab.TTF") - .set("Georgia Bold Italic", "Georgiaz.TTF") - .set("Georgia Italic", "Georgiai.TTF") - .set("Impact", "Impact.TTF") - .set("Times New Roman", "Times.TTF") - .set("Times New Roman Bold", "Timesbd.TTF") - .set("Times New Roman Bold Italic", "Timesbi.TTF") - .set("Times New Roman Italic", "Timesi.TTF") - .set("Trebucet MS", "Trebuc.TTF") - .set("Trebucet MS Bold", "Trebucbd.TTF") - .set("Trebucet MS Bold Italic", "Trebucbi.TTF") - .set("Trebucet MS Italic", "Trebucit.TTF") - .set("Verdana", "Verdana.TTF") - .set("Verdana Bold", "Verdanab.TTF") - .set("Verdana Bold Italic", "Verdanaz.TTF") - .set("Verdana Italic", "Verdanai.TTF") - .set("Webdings", "Webdings.TTF") - .do(); - - return this; -}; +class Corefonts { + constructor(wine) { + this.wine = wine; + } -/** - * Verb to install corefonts - */ -module.default = class CorefontsVerb { - constructor() { - // do nothing + go() { + const wizard = this.wine.wizard(); + const fontDirectory = this.wine.fontDirectory(); + + const fontResources = [ + new Resource() + .wizard(wizard) + .url("https://mirrors.kernel.org/gentoo/distfiles/arial32.exe") + .checksum("6d75f8436f39ab2da5c31ce651b7443b4ad2916e") + .name("arial32.exe") + .get(), + + new Resource() + .wizard(wizard) + .url("https://mirrors.kernel.org/gentoo/distfiles/arialb32.exe") + .checksum("d45cdab84b7f4c1efd6d1b369f50ed0390e3d344") + .name("arialb32.exe") + .get(), + + new Resource() + .wizard(wizard) + .url("https://mirrors.kernel.org/gentoo/distfiles/comic32.exe") + .checksum("2371d0327683dcc5ec1684fe7c275a8de1ef9a51") + .name("comic32.exe") + .get(), + + new Resource() + .wizard(wizard) + .url("https://mirrors.kernel.org/gentoo/distfiles/courie32.exe") + .checksum("06a745023c034f88b4135f5e294fece1a3c1b057") + .name("courie32.exe") + .get(), + + new Resource() + .wizard(wizard) + .url("https://mirrors.kernel.org/gentoo/distfiles/georgi32.exe") + .checksum("90e4070cb356f1d811acb943080bf97e419a8f1e") + .name("georgi32.exe") + .get(), + + new Resource() + .wizard(wizard) + .url("https://mirrors.kernel.org/gentoo/distfiles/impact32.exe") + .checksum("86b34d650cfbbe5d3512d49d2545f7509a55aad2") + .name("impact32.exe") + .get(), + + new Resource() + .wizard(wizard) + .url("https://mirrors.kernel.org/gentoo/distfiles/times32.exe") + .checksum("20b79e65cdef4e2d7195f84da202499e3aa83060") + .name("times32.exe") + .get(), + + new Resource() + .wizard(wizard) + .url("https://mirrors.kernel.org/gentoo/distfiles/trebuc32.exe ") + .checksum("50aab0988423efcc9cf21fac7d64d534d6d0a34a") + .name("trebuc32.exe") + .get(), + + new Resource() + .wizard(wizard) + .url("https://mirrors.kernel.org/gentoo/distfiles/verdan32.exe ") + .checksum("f5b93cedf500edc67502f116578123618c64a42a") + .name("verdan32.exe") + .get(), + + new Resource() + .wizard(wizard) + .url("https://mirrors.kernel.org/gentoo/distfiles/webdin32.exe ") + .checksum("2fb4a42c53e50bc70707a7b3c57baf62ba58398f") + .name("webdin32.exe") + .get() + ]; + + const progressBar = wizard.progressBar(tr("Please wait...")); + progressBar.setText(tr("Installing {0}...", tr("fonts"))); + progressBar.setProgressPercentage(0); + + fontResources.reduce((numInstalledFonts, fontResource) => { + progressBar.setText(tr("Installing {0}...", tr("fonts"))); + progressBar.setProgressPercentage((numInstalledFonts * 100) / fontResources.length); + + new CabExtract() + .wizard(wizard) + .archive(fontResource) + .to(fontDirectory) + .extract(); + + return numInstalledFonts + 1; + }, 0); + + this.wine + .registerFont() + .set("Arial", "Arial.TTF") + .set("Arial Bold", "Arialbd.TTF") + .set("Arial Bold Italic", "Arialbi.TTF") + .set("Arial Italic", "Ariali.TTF") + .set("Arial Black", "AriBlk.TTF") + .set("Comic Sans MS", "Comic.TTF") + .set("Comic Sans MS Bold", "Comicbd.TTF") + .set("Courier New", "Cour.TTF") + .set("Courier New Bold", "CourBD.TTF") + .set("Courier New Bold Italic", "CourBI.TTF") + .set("Courier New Italic", "Couri.TTF") + .set("Georgia", "Georgia.TTF") + .set("Georgia Bold", "Georgiab.TTF") + .set("Georgia Bold Italic", "Georgiaz.TTF") + .set("Georgia Italic", "Georgiai.TTF") + .set("Impact", "Impact.TTF") + .set("Times New Roman", "Times.TTF") + .set("Times New Roman Bold", "Timesbd.TTF") + .set("Times New Roman Bold Italic", "Timesbi.TTF") + .set("Times New Roman Italic", "Timesi.TTF") + .set("Trebucet MS", "Trebuc.TTF") + .set("Trebucet MS Bold", "Trebucbd.TTF") + .set("Trebucet MS Bold Italic", "Trebucbi.TTF") + .set("Trebucet MS Italic", "Trebucit.TTF") + .set("Verdana", "Verdana.TTF") + .set("Verdana Bold", "Verdanab.TTF") + .set("Verdana Bold Italic", "Verdanaz.TTF") + .set("Verdana Italic", "Verdanai.TTF") + .set("Webdings", "Webdings.TTF") + .do(); } - install(container) { + static install(container) { const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "corefonts", Optional.empty()); wine.prefix(container); - - const wizard = SetupWizard(InstallationType.VERBS, "corefonts", java.util.Optional.empty()); - wine.wizard(wizard); - wine.corefonts(); + + new Corefonts(wine).go(); wizard.close(); } -}; +} + +module.default = Corefonts; diff --git a/Engines/Wine/Verbs/crypt32/script.js b/Engines/Wine/Verbs/crypt32/script.js index 8e45812b4a..50ecb962af 100644 --- a/Engines/Wine/Verbs/crypt32/script.js +++ b/Engines/Wine/Verbs/crypt32/script.js @@ -1,37 +1,39 @@ const Wine = include("engines.wine.engine.object"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.override_dll"); -include("engines.wine.verbs.sp3extract"); +const WindowsXPSP3 = include("engines.wine.verbs.sp3extract"); /** * Verb to install crypt32 - * - * @returns {Wine} Wine object */ -Wine.prototype.crypt32 = function () { - this.sp3extract("crypt32.dll"); - this.sp3extract("msasn1.dll"); +class Crypt32 { + constructor(wine) { + this.wine = wine; + } - this.overrideDLL() - .set("native, builtin", ["crypt32"]) - .do(); -}; + go() { + new WindowsXPSP3(this.wine).withFileToExtract("crypt32.dll").go(); + new WindowsXPSP3(this.wine).withFileToExtract("msasn1.dll").go(); -/** - * Verb to install crypt32 - */ -// eslint-disable-next-line no-unused-vars -module.default = class Crypt32Verb { - constructor() { - // do nothing + this.wine + .overrideDLL() + .set("native, builtin", ["crypt32"]) + .do(); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "crypt32", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "crypt32", java.util.Optional.empty()); wine.wizard(wizard); - wine.crypt32(); + + new Crypt32(wine).go(); + wizard.close(); } } + +module.default = Crypt32; diff --git a/Engines/Wine/Verbs/d3drm/script.js b/Engines/Wine/Verbs/d3drm/script.js index 8d280b50a9..28c3516a17 100644 --- a/Engines/Wine/Verbs/d3drm/script.js +++ b/Engines/Wine/Verbs/d3drm/script.js @@ -1,57 +1,64 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -const {CabExtract} = include("utils.functions.filesystem.extract"); +const { CabExtract } = include("utils.functions.filesystem.extract"); + +const Optional = Java.type("java.util.Optional"); include("engines.wine.plugins.override_dll"); -include("engines.wine.verbs.luna"); /** * Verb to install d3drm - * - * @returns {Wine} Wine object */ -Wine.prototype.d3drm = function () { - var setupFile = new Resource() - .wizard(this.wizard()) - .url("https://download.microsoft.com/download/E/E/1/EE17FF74-6C45-4575-9CF4-7FC2597ACD18/directx_feb2010_redist.exe") - .checksum("a97c820915dc20929e84b49646ec275760012a42") - .name("directx_feb2010_redist.exe") - .get(); +class D3drm { + constructor(wine) { + this.wine = wine; + } - this.wizard().wait(tr("Please wait while {0} is installed...", "d3drm")); + go() { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + const system32directory = this.wine.system32directory(); - new CabExtract() - .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/d3drm/") - .extract(["-L", "-F", "dxnt.cab"]); + const setupFile = new Resource() + .wizard(wizard) + .url( + "https://download.microsoft.com/download/E/E/1/EE17FF74-6C45-4575-9CF4-7FC2597ACD18/directx_feb2010_redist.exe" + ) + .checksum("a97c820915dc20929e84b49646ec275760012a42") + .name("directx_feb2010_redist.exe") + .get(); - new CabExtract() - .archive(this.prefixDirectory() + "/drive_c/d3drm/dxnt.cab") - .to(this.system32directory()) - .extract(["-L", "-F", "d3drm.dll"]); + wizard.wait(tr("Please wait while {0} is installed...", "d3drm")); - this.overrideDLL() - .set("native", ["d3drm"]) - .do(); + new CabExtract() + .wizard(wizard) + .archive(setupFile) + .to(`${prefixDirectory}/drive_c/d3drm/`) + .extract(["-L", "-F", "dxnt.cab"]); - return this; -}; + new CabExtract() + .wizard(wizard) + .archive(`${prefixDirectory}/drive_c/d3drm/dxnt.cab`) + .to(system32directory) + .extract(["-L", "-F", "d3drm.dll"]); -/** - * Verb to install d3drm - */ -// eslint-disable-next-line no-unused-vars -module.default = class D3drmVerb { - constructor() { - // do nothing + this.wine + .overrideDLL() + .set("native", ["d3drm"]) + .do(); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "d3drm", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "d3drm", java.util.Optional.empty()); wine.wizard(wizard); - wine.d3drm(); + + new D3drm(wine).go(); + wizard.close(); } } + +module.default = D3drm; diff --git a/Engines/Wine/Verbs/d3dx10/script.js b/Engines/Wine/Verbs/d3dx10/script.js index ea94366615..c17812b978 100644 --- a/Engines/Wine/Verbs/d3dx10/script.js +++ b/Engines/Wine/Verbs/d3dx10/script.js @@ -2,15 +2,31 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); const { CabExtract } = include("utils.functions.filesystem.extract"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.override_dll"); /** * Verb to install D3DX10 - * - * @returns {Wine} Wine object */ -Wine.prototype.d3dx10 = function () { - const extractDirectXtoSystemDirectory = (progressBar, filesToExtract, destination, pattern) => { +class D3DX10 { + constructor(wine) { + this.wine = wine; + } + + /** + * Extracts DirectX10 to the system directory + * + * @param {*} progressBar The progress bar + * @param {*} filesToExtract A list of files to be extracted + * @param {*} destination The destination folder + * @param {*} pattern The file pattern used during extraction + * @returns {void} + */ + extractDirectXToSystemDirectory(progressBar, filesToExtract, destination, pattern) { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + filesToExtract.reduce((numberOfExtractedFiles, cabFile) => { print(tr("Extracting {0}...", cabFile)); @@ -18,110 +34,113 @@ Wine.prototype.d3dx10 = function () { progressBar.setProgressPercentage((numberOfExtractedFiles * 100) / filesToExtract.length); new CabExtract() - .archive(this.prefixDirectory() + "/drive_c/d3dx10/" + cabFile) + .wizard(wizard) + .archive(`${prefixDirectory}/drive_c/d3dx10/${cabFile}`) .to(destination) .extract(["-L", "-F", pattern]); return numberOfExtractedFiles + 1; }, 0); - }; - - const setupFile = new Resource() - .wizard(this.wizard()) - .url( - "http://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe" - ) - .checksum("f8f1217f666bf2f6863631a7d5e5fb3a8d1542df") - .name("directx_Jun2010_redist.exe") - .get(); - - const progressBar = this.wizard().progressBar(tr("Please wait...")); - progressBar.setText(tr("Extracting {0}...", "DirectX 10")); - progressBar.setProgressPercentage(0); - - new CabExtract() - .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/d3dx10/") - .extract(["-L", "-F", "*d3dx10*x86*"]); - - const filesToExtractx86 = [ - "apr2007_d3dx10_33_x86.cab", - "aug2007_d3dx10_35_x86.cab", - "aug2008_d3dx10_39_x86.cab", - "aug2009_d3dx10_42_x86.cab", - "dec2006_d3dx10_00_x86.cab", - "jun2007_d3dx10_34_x86.cab", - "jun2008_d3dx10_38_x86.cab", - "jun2010_d3dx10_43_x86.cab", - "mar2008_d3dx10_37_x86.cab", - "mar2009_d3dx10_41_x86.cab", - "nov2007_d3dx10_36_x86.cab", - "nov2008_d3dx10_40_x86.cab" - ]; - - extractDirectXtoSystemDirectory(progressBar, filesToExtractx86, this.system32directory(), "d3dx10*.dll"); - - if (this.architecture() == "amd64") { + } + + go() { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + const system32directory = this.wine.system32directory(); + const architecture = this.wine.architecture(); + + const setupFile = new Resource() + .wizard(wizard) + .url( + "http://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe" + ) + .checksum("f8f1217f666bf2f6863631a7d5e5fb3a8d1542df") + .name("directx_Jun2010_redist.exe") + .get(); + + const progressBar = wizard.progressBar(tr("Please wait...")); + progressBar.setText(tr("Extracting {0}...", "DirectX 10")); + progressBar.setProgressPercentage(0); + new CabExtract() + .wizard(wizard) .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/d3dx10/") - .extract(["-L", "-F", "*d3dx10*x64*"]); - - const filesToExtractx64 = [ - "apr2007_d3dx10_33_x64.cab", - "aug2007_d3dx10_35_x64.cab", - "aug2008_d3dx10_39_x64.cab", - "aug2009_d3dx10_42_x64.cab", - "dec2006_d3dx10_00_x64.cab", - "jun2007_d3dx10_34_x64.cab", - "jun2008_d3dx10_38_x64.cab", - "jun2010_d3dx10_43_x64.cab", - "mar2008_d3dx10_37_x64.cab", - "mar2009_d3dx10_41_x64.cab", - "nov2007_d3dx10_36_x64.cab", - "nov2008_d3dx10_40_x64.cab" + .to(`${prefixDirectory}/drive_c/d3dx10/`) + .extract(["-L", "-F", "*d3dx10*x86*"]); + + const filesToExtractx86 = [ + "apr2007_d3dx10_33_x86.cab", + "aug2007_d3dx10_35_x86.cab", + "aug2008_d3dx10_39_x86.cab", + "aug2009_d3dx10_42_x86.cab", + "dec2006_d3dx10_00_x86.cab", + "jun2007_d3dx10_34_x86.cab", + "jun2008_d3dx10_38_x86.cab", + "jun2010_d3dx10_43_x86.cab", + "mar2008_d3dx10_37_x86.cab", + "mar2009_d3dx10_41_x86.cab", + "nov2007_d3dx10_36_x86.cab", + "nov2008_d3dx10_40_x86.cab" ]; - extractDirectXtoSystemDirectory(progressBar, filesToExtractx64, this.system64directory(), "d3dx10*.dll"); - } + this.extractDirectXToSystemDirectory(progressBar, filesToExtractx86, system32directory, "d3dx10*.dll"); - this.overrideDLL() - .set("native", [ - "d3dx10_33", - "d3dx10_34", - "d3dx10_35", - "d3dx10_36", - "d3dx10_37", - "d3dx10_38", - "d3dx10_39", - "d3dx10_40", - "d3dx10_41", - "d3dx10_42", - "d3dx10_43" - ]) - .do(); - - return this; -}; + if (architecture == "amd64") { + const system64directory = this.wine.system64directory(); -/** - * Verb to install D3DX10 - */ -module.default = class D3DX10Verb { - constructor() { - // do nothing + new CabExtract() + .wizard(wizard) + .archive(setupFile) + .to(`${prefixDirectory}/drive_c/d3dx10/`) + .extract(["-L", "-F", "*d3dx10*x64*"]); + + const filesToExtractx64 = [ + "apr2007_d3dx10_33_x64.cab", + "aug2007_d3dx10_35_x64.cab", + "aug2008_d3dx10_39_x64.cab", + "aug2009_d3dx10_42_x64.cab", + "dec2006_d3dx10_00_x64.cab", + "jun2007_d3dx10_34_x64.cab", + "jun2008_d3dx10_38_x64.cab", + "jun2010_d3dx10_43_x64.cab", + "mar2008_d3dx10_37_x64.cab", + "mar2009_d3dx10_41_x64.cab", + "nov2007_d3dx10_36_x64.cab", + "nov2008_d3dx10_40_x64.cab" + ]; + + this.extractDirectXToSystemDirectory(progressBar, filesToExtractx64, system64directory, "d3dx10*.dll"); + } + + this.wine + .overrideDLL() + .set("native", [ + "d3dx10_33", + "d3dx10_34", + "d3dx10_35", + "d3dx10_36", + "d3dx10_37", + "d3dx10_38", + "d3dx10_39", + "d3dx10_40", + "d3dx10_41", + "d3dx10_42", + "d3dx10_43" + ]) + .do(); } - install(container) { + static install(container) { const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "d3dx10", Optional.empty()); wine.prefix(container); - - const wizard = SetupWizard(InstallationType.VERBS, "d3dx10", java.util.Optional.empty()); - wine.wizard(wizard); - wine.d3dx10(); + + new D3DX10(wine).go(); wizard.close(); } -}; +} + +module.default = D3DX10; diff --git a/Engines/Wine/Verbs/d3dx11/script.js b/Engines/Wine/Verbs/d3dx11/script.js index 75acab41c5..d5b0d71961 100644 --- a/Engines/Wine/Verbs/d3dx11/script.js +++ b/Engines/Wine/Verbs/d3dx11/script.js @@ -2,15 +2,31 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); const { CabExtract } = include("utils.functions.filesystem.extract"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.override_dll"); /** * Verb to install D3DX11 - * - * @returns {Wine} Wine object */ -Wine.prototype.d3dx11 = function () { - const extractDirectXtoSystemDirectory = (progressBar, filesToExtract, destination, pattern) => { +class D3DX11 { + constructor(wine) { + this.wine = wine; + } + + /** + * Extracts DirectX11 to the system directory + * + * @param {*} progressBar The progress bar + * @param {*} filesToExtract A list of files to extract + * @param {*} destination The destination folder + * @param {*} pattern The file pattern used during extraction + * @returns {void} + */ + extractDirectXToSystemDirectory(progressBar, filesToExtract, destination, pattern) { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + filesToExtract.reduce((numberOfExtractedFiles, cabFile) => { print(tr("Extracting {0}...", cabFile)); @@ -18,78 +34,81 @@ Wine.prototype.d3dx11 = function () { progressBar.setProgressPercentage((numberOfExtractedFiles * 100) / filesToExtract.length); new CabExtract() - .archive(this.prefixDirectory() + "/drive_c/d3dx11/" + cabFile) + .wizard(wizard) + .archive(`${prefixDirectory}/drive_c/d3dx11/${cabFile}`) .to(destination) .extract(["-L", "-F", pattern]); return numberOfExtractedFiles + 1; }, 0); - }; - - const setupFile = new Resource() - .wizard(this.wizard()) - .url( - "http://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe" - ) - .checksum("7c1fc2021cf57fed3c25c9b03cd0c31a") - .algorithm("MD5") - .name("directx_Jun2010_redist.exe") - .get(); - - const progressBar = this.wizard().progressBar(tr("Please wait...")); - progressBar.setText(tr("Extracting {0}...", "DirectX 11")); - progressBar.setProgressPercentage(0); - - new CabExtract() - .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/d3dx11/") - .extract(["-L", "-F", "*d3dx11*x86*"]); - - const filesToExtractx86 = ["Aug2009_d3dx11_42_x86.cab", "Jun2010_d3dx11_43_x86.cab"]; + } - extractDirectXtoSystemDirectory(progressBar, filesToExtractx86, this.system32directory(), "*.dll"); + go() { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + const system32directory = this.wine.system32directory(); + const architecture = this.wine.architecture(); + + const setupFile = new Resource() + .wizard(wizard) + .url( + "http://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe" + ) + .checksum("7c1fc2021cf57fed3c25c9b03cd0c31a") + .algorithm("MD5") + .name("directx_Jun2010_redist.exe") + .get(); + + const progressBar = wizard.progressBar(tr("Please wait...")); + progressBar.setText(tr("Extracting {0}...", "DirectX 11")); + progressBar.setProgressPercentage(0); - if (this.architecture() == "amd64") { new CabExtract() + .wizard(wizard) .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/d3dx11/") - .extract(["-L", "-F", "*d3dx11*x64*"]); + .to(`${prefixDirectory}/drive_c/d3dx11/`) + .extract(["-L", "-F", "*d3dx11*x86*"]); - const filesToExtractx64 = [ - "Aug2009_d3dx11_42_x86.cab", - "Jun2010_d3dx11_43_x86.cab", - "Aug2009_d3dx11_42_x64.cab", - "Jun2010_d3dx11_43_x64.cab" - ]; + const filesToExtractx86 = ["Aug2009_d3dx11_42_x86.cab", "Jun2010_d3dx11_43_x86.cab"]; - extractDirectXtoSystemDirectory(progressBar, filesToExtractx64, this.system64directory(), "*.dll"); - } + this.extractDirectXToSystemDirectory(progressBar, filesToExtractx86, system32directory, "*.dll"); - this.overrideDLL() - .set("native, builtin", ["d3dx11_42", "d3dx11_43"]) - .do(); + if (architecture == "amd64") { + const system64directory = this.wine.system64directory(); - return this; -}; - -/** - * Verb to install D3DX11 - */ -module.default = class D3DX11Verb { - constructor() { - // do nothing + new CabExtract() + .wizard(wizard) + .archive(setupFile) + .to(`${prefixDirectory}/drive_c/d3dx11/`) + .extract(["-L", "-F", "*d3dx11*x64*"]); + + const filesToExtractx64 = [ + "Aug2009_d3dx11_42_x86.cab", + "Jun2010_d3dx11_43_x86.cab", + "Aug2009_d3dx11_42_x64.cab", + "Jun2010_d3dx11_43_x64.cab" + ]; + + this.extractDirectXToSystemDirectory(progressBar, filesToExtractx64, system64directory, "*.dll"); + } + + this.wine + .overrideDLL() + .set("native, builtin", ["d3dx11_42", "d3dx11_43"]) + .do(); } - install(container) { + static install(container) { const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "d3dx11", Optional.empty()); wine.prefix(container); - - const wizard = SetupWizard(InstallationType.VERBS, "d3dx11", java.util.Optional.empty()); - wine.wizard(wizard); - wine.d3dx11(); + + new D3DX11(wine).go(); wizard.close(); } -}; +} + +module.default = D3DX11; diff --git a/Engines/Wine/Verbs/d3dx9/script.js b/Engines/Wine/Verbs/d3dx9/script.js index 6ba005fa80..ea3e497247 100644 --- a/Engines/Wine/Verbs/d3dx9/script.js +++ b/Engines/Wine/Verbs/d3dx9/script.js @@ -2,15 +2,31 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); const { CabExtract } = include("utils.functions.filesystem.extract"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.override_dll"); /** * Verb to install D3DX9 - * - * @returns {Wine} Wine object */ -Wine.prototype.d3dx9 = function () { - const extractDirectXtoSystemDirectory = (progressBar, filesToExtract, destination, pattern) => { +class D3DX9 { + constructor(wine) { + this.wine = wine; + } + + /** + * Extracts DirectX9 to the system directory + * + * @param {*} progressBar The progress bar + * @param {*} filesToExtract A list of files to extract + * @param {*} destination The destination folder + * @param {*} pattern The file pattern used during extraction + * @returns {void} + */ + extractDirectXToSystemDirectory(progressBar, filesToExtract, destination, pattern) { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + filesToExtract.reduce((numberOfExtractedFiles, cabFile) => { print(tr("Extracting {0}...", cabFile)); @@ -18,134 +34,138 @@ Wine.prototype.d3dx9 = function () { progressBar.setProgressPercentage((numberOfExtractedFiles * 100) / filesToExtract.length); new CabExtract() - .archive(this.prefixDirectory() + "/drive_c/d3dx9/" + cabFile) + .wizard(wizard) + .archive(`${prefixDirectory}/drive_c/d3dx9/${cabFile}`) .to(destination) .extract(["-L", "-F", pattern]); return numberOfExtractedFiles + 1; }, 0); - }; - - const setupFile = new Resource() - .wizard(this.wizard()) - .url( - "http://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe" - ) - .checksum("f8f1217f666bf2f6863631a7d5e5fb3a8d1542df") - .name("directx_Jun2010_redist.exe") - .get(); - - const progressBar = this.wizard().progressBar(tr("Please wait...")); - progressBar.setText(tr("Extracting {0}...", "DirectX 9")); - progressBar.setProgressPercentage(0); - - new CabExtract() - .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/d3dx9/") - .extract(["-L", "-F", "*d3dx9*x86*"]); - - const filesToExtractx86 = [ - "apr2007_d3dx9_33_x86.cab", - "aug2007_d3dx9_35_x86.cab", - "apr2005_d3dx9_25_x86.cab", - "apr2006_d3dx9_30_x86.cab", - "aug2005_d3dx9_27_x86.cab", - "aug2008_d3dx9_39_x86.cab", - "aug2009_d3dx9_42_x86.cab", - "dec2006_d3dx9_32_x86.cab", - "dec2005_d3dx9_28_x86.cab", - "feb2005_d3dx9_24_x86.cab", - "feb2006_d3dx9_29_x86.cab", - "jun2007_d3dx9_34_x86.cab", - "jun2008_d3dx9_38_x86.cab", - "jun2005_d3dx9_26_x86.cab", - "jun2010_d3dx9_43_x86.cab", - "mar2008_d3dx9_37_x86.cab", - "mar2009_d3dx9_41_x86.cab", - "nov2007_d3dx9_36_x86.cab", - "nov2008_d3dx9_40_x86.cab", - "oct2006_d3dx9_31_x86.cab" - ]; - extractDirectXtoSystemDirectory(progressBar, filesToExtractx86, this.system32directory(), "d3dx9*.dll"); - - if (this.architecture() == "amd64") { + } + + go() { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + const system32directory = this.wine.system32directory(); + const architecture = this.wine.architecture(); + + const setupFile = new Resource() + .wizard(wizard) + .url( + "http://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe" + ) + .checksum("f8f1217f666bf2f6863631a7d5e5fb3a8d1542df") + .name("directx_Jun2010_redist.exe") + .get(); + + const progressBar = wizard.progressBar(tr("Please wait...")); + progressBar.setText(tr("Extracting {0}...", "DirectX 9")); + progressBar.setProgressPercentage(0); + new CabExtract() + .wizard(wizard) .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/d3dx9/") - .extract(["-L", "-F", "*d3dx9*x64*"]); - - const filesToExtractx64 = [ - "APR2007_d3dx9_33_x64.cab", - "AUG2007_d3dx9_35_x64.cab", - "Apr2005_d3dx9_25_x64.cab", - "Apr2006_d3dx9_30_x64.cab", - "Aug2005_d3dx9_27_x64.cab", - "Aug2008_d3dx9_39_x64.cab", - "Aug2009_d3dx9_42_x64.cab", - "DEC2006_d3dx9_32_x64.cab", - "Dec2005_d3dx9_28_x64.cab", - "Feb2005_d3dx9_24_x64.cab", - "Feb2006_d3dx9_29_x64.cab", - "JUN2007_d3dx9_34_x64.cab", - "JUN2008_d3dx9_38_x64.cab", - "Jun2005_d3dx9_26_x64.cab", - "Jun2010_d3dx9_43_x64.cab", - "Mar2008_d3dx9_37_x64.cab", - "Mar2009_d3dx9_41_x64.cab", - "Nov2007_d3dx9_36_x64.cab", - "Nov2008_d3dx9_40_x64.cab", - "OCT2006_d3dx9_31_x64.cab" + .to(`${prefixDirectory}/drive_c/d3dx9/`) + .extract(["-L", "-F", "*d3dx9*x86*"]); + + const filesToExtractx86 = [ + "apr2007_d3dx9_33_x86.cab", + "aug2007_d3dx9_35_x86.cab", + "apr2005_d3dx9_25_x86.cab", + "apr2006_d3dx9_30_x86.cab", + "aug2005_d3dx9_27_x86.cab", + "aug2008_d3dx9_39_x86.cab", + "aug2009_d3dx9_42_x86.cab", + "dec2006_d3dx9_32_x86.cab", + "dec2005_d3dx9_28_x86.cab", + "feb2005_d3dx9_24_x86.cab", + "feb2006_d3dx9_29_x86.cab", + "jun2007_d3dx9_34_x86.cab", + "jun2008_d3dx9_38_x86.cab", + "jun2005_d3dx9_26_x86.cab", + "jun2010_d3dx9_43_x86.cab", + "mar2008_d3dx9_37_x86.cab", + "mar2009_d3dx9_41_x86.cab", + "nov2007_d3dx9_36_x86.cab", + "nov2008_d3dx9_40_x86.cab", + "oct2006_d3dx9_31_x86.cab" ]; - extractDirectXtoSystemDirectory(progressBar, filesToExtractx64, this.system64directory(), "d3dx9*.dll"); - } + this.extractDirectXToSystemDirectory(progressBar, filesToExtractx86, system32directory, "d3dx9*.dll"); - this.overrideDLL() - .set("native", [ - "d3dx9_24", - "d3dx9_25", - "d3dx9_26", - "d3dx9_27", - "d3dx9_28", - "d3dx9_29", - "d3dx9_30", - "d3dx9_31", - "d3dx9_32", - "d3dx9_33", - "d3dx9_34", - "d3dx9_35", - "d3dx9_36", - "d3dx9_37", - "d3dx9_38", - "d3dx9_39", - "d3dx9_40", - "d3dx9_41", - "d3dx9_42", - "d3dx9_43" - ]) - .do(); - - return this; -}; + if (architecture == "amd64") { + const system64directory = this.wine.system64directory(); -/** - * Verb to install D3DX9 - */ -module.default = class D3DX9Verb { - constructor() { - // do nothing + new CabExtract() + .wizard(wizard) + .archive(setupFile) + .to(`${prefixDirectory}/drive_c/d3dx9/`) + .extract(["-L", "-F", "*d3dx9*x64*"]); + + const filesToExtractx64 = [ + "APR2007_d3dx9_33_x64.cab", + "AUG2007_d3dx9_35_x64.cab", + "Apr2005_d3dx9_25_x64.cab", + "Apr2006_d3dx9_30_x64.cab", + "Aug2005_d3dx9_27_x64.cab", + "Aug2008_d3dx9_39_x64.cab", + "Aug2009_d3dx9_42_x64.cab", + "DEC2006_d3dx9_32_x64.cab", + "Dec2005_d3dx9_28_x64.cab", + "Feb2005_d3dx9_24_x64.cab", + "Feb2006_d3dx9_29_x64.cab", + "JUN2007_d3dx9_34_x64.cab", + "JUN2008_d3dx9_38_x64.cab", + "Jun2005_d3dx9_26_x64.cab", + "Jun2010_d3dx9_43_x64.cab", + "Mar2008_d3dx9_37_x64.cab", + "Mar2009_d3dx9_41_x64.cab", + "Nov2007_d3dx9_36_x64.cab", + "Nov2008_d3dx9_40_x64.cab", + "OCT2006_d3dx9_31_x64.cab" + ]; + + this.extractDirectXToSystemDirectory(progressBar, filesToExtractx64, system64directory, "d3dx9*.dll"); + } + + this.wine + .overrideDLL() + .set("native", [ + "d3dx9_24", + "d3dx9_25", + "d3dx9_26", + "d3dx9_27", + "d3dx9_28", + "d3dx9_29", + "d3dx9_30", + "d3dx9_31", + "d3dx9_32", + "d3dx9_33", + "d3dx9_34", + "d3dx9_35", + "d3dx9_36", + "d3dx9_37", + "d3dx9_38", + "d3dx9_39", + "d3dx9_40", + "d3dx9_41", + "d3dx9_42", + "d3dx9_43" + ]) + .do(); } - install(container) { + static install(container) { const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "d3dx9", Optional.empty()); wine.prefix(container); - - const wizard = SetupWizard(InstallationType.VERBS, "d3dx9", java.util.Optional.empty()); - wine.wizard(wizard); - wine.d3dx9(); + + new D3DX9(wine).go(); wizard.close(); } -}; +} + +module.default = D3DX9; diff --git a/Engines/Wine/Verbs/devenum/script.js b/Engines/Wine/Verbs/devenum/script.js index b051315f67..24fcc1f3ae 100644 --- a/Engines/Wine/Verbs/devenum/script.js +++ b/Engines/Wine/Verbs/devenum/script.js @@ -1,59 +1,66 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -const {CabExtract} = include("utils.functions.filesystem.extract"); +const { CabExtract } = include("utils.functions.filesystem.extract"); + +const Optional = Java.type("java.util.Optional"); include("engines.wine.plugins.override_dll"); include("engines.wine.plugins.regsvr32"); -include("engines.wine.verbs.luna"); /** * Verb to install devenum - * - * @returns {Wine} Wine object */ -Wine.prototype.devenum = function () { - var setupFile = new Resource() - .wizard(this.wizard()) - .url("https://download.microsoft.com/download/E/E/1/EE17FF74-6C45-4575-9CF4-7FC2597ACD18/directx_feb2010_redist.exe") - .checksum("a97c820915dc20929e84b49646ec275760012a42") - .name("directx_feb2010_redist.exe") - .get(); - - this.wizard().wait(tr("Please wait while {0} is installed...", "devenum")); - - new CabExtract() - .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/devenum/") - .extract(["-L", "-F", "dxnt.cab"]); - - new CabExtract() - .archive(this.prefixDirectory() + "/drive_c/devenum/dxnt.cab") - .to(this.system32directory()) - .extract(["-L", "-F", "devenum.dll"]); - - this.regsvr32().install("devenum.dll"); - this.overrideDLL() - .set("native", ["devenum"]) - .do(); - - return this; -}; +class Devenum { + constructor(wine) { + this.wine = wine; + } -/** - * Verb to install devenum - */ -// eslint-disable-next-line no-unused-vars -module.default = class DevenumVerb { - constructor() { - // do nothing + go() { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + const system32directory = this.wine.system32directory(); + + const setupFile = new Resource() + .wizard(wizard) + .url( + "https://download.microsoft.com/download/E/E/1/EE17FF74-6C45-4575-9CF4-7FC2597ACD18/directx_feb2010_redist.exe" + ) + .checksum("a97c820915dc20929e84b49646ec275760012a42") + .name("directx_feb2010_redist.exe") + .get(); + + wizard.wait(tr("Please wait while {0} is installed...", "devenum")); + + new CabExtract() + .wizard(wizard) + .archive(setupFile) + .to(`${prefixDirectory}/drive_c/devenum/`) + .extract(["-L", "-F", "dxnt.cab"]); + + new CabExtract() + .wizard(wizard) + .archive(`${prefixDirectory}/drive_c/devenum/dxnt.cab`) + .to(system32directory) + .extract(["-L", "-F", "devenum.dll"]); + + this.wine.regsvr32().install("devenum.dll"); + this.wine + .overrideDLL() + .set("native", ["devenum"]) + .do(); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "devenum", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "devenum", java.util.Optional.empty()); wine.wizard(wizard); - wine.devenum(); + + new Devenum(wine).go(); + wizard.close(); } } + +module.default = Devenum; diff --git a/Engines/Wine/Verbs/dotnet20/script.js b/Engines/Wine/Verbs/dotnet20/script.js index 850b2f4555..f560bd7d2c 100644 --- a/Engines/Wine/Verbs/dotnet20/script.js +++ b/Engines/Wine/Verbs/dotnet20/script.js @@ -1,57 +1,78 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -const {remove} = include("utils.functions.filesystem.files"); +const { remove } = include("utils.functions.filesystem.files"); + +const Optional = Java.type("java.util.Optional"); include("engines.wine.plugins.override_dll"); include("engines.wine.plugins.windows_version"); -include("engines.wine.verbs.remove_mono"); +const RemoveMono = include("engines.wine.verbs.remove_mono"); /** * Verb to install .NET 2.0 - * - * @returns {Wine} Wine object */ -Wine.prototype.dotnet20 = function () { - var osVersion = this.windowsVersion(); +class DotNET20 { + constructor(wine) { + this.wine = wine; + } - if (this.architecture() == "x86") { - this.windowsVersion("win2k"); + go() { + const wizard = this.wine.wizard(); + const windowsVersion = this.wine.windowsVersion(); + const system32directory = this.wine.system32directory(); - var setupFile32 = new Resource() - .wizard(this.wizard()) - .url("https://download.lenovo.com/ibmdl/pub/pc/pccbbs/thinkvantage_en/dotnetfx.exe") - .checksum("a3625c59d7a2995fb60877b5f5324892a1693b2a") - .name("dotnetfx.exe") - .get(); + if (this.wine.architecture() == "x86") { + this.wine.windowsVersion("win2k"); - this.removeMono(); + const setupFile32 = new Resource() + .wizard(wizard) + .url("https://download.lenovo.com/ibmdl/pub/pc/pccbbs/thinkvantage_en/dotnetfx.exe") + .checksum("a3625c59d7a2995fb60877b5f5324892a1693b2a") + .name("dotnetfx.exe") + .get(); - this.wizard().wait(tr("Please wait while {0} is installed...", ".NET Framework 2.0")); - this.run(setupFile32, ["/q:a", "/c:install.exe /q"], null, false, true); + new RemoveMono(this.wine).go(); - this.windowsVersion(osVersion); + wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 2.0")); - remove(this.system32directory() + "/msvcr80.dll"); - remove(this.system32directory() + "/msvcm80.dll"); - remove(this.system32directory() + "/msvcp80.dll"); - } - else { - var setupFile64 = new Resource() - .wizard(this.wizard()) - .url("https://download.microsoft.com/download/a/3/f/a3f1bf98-18f3-4036-9b68-8e6de530ce0a/NetFx64.exe") - .checksum("e59cca309463a5d98daeaada83d1b05fed5126c5") - .name("NetFx64.exe") - .get(); - - this.removeMono(); - - this.wizard().wait(tr("Please wait while {0} is installed...", ".NET Framework 2.0")); - this.run(setupFile64, ["/q:a", "/c:install.exe /q"], null, false, true) + this.wine.run(setupFile32, ["/q:a", "/c:install.exe /q"], null, false, true); + + this.wine.windowsVersion(windowsVersion); + + remove(`${system32directory}/msvcr80.dll`); + remove(`${system32directory}/msvcm80.dll`); + remove(`${system32directory}/msvcp80.dll`); + } else { + const setupFile64 = new Resource() + .wizard(wizard) + .url("https://download.microsoft.com/download/a/3/f/a3f1bf98-18f3-4036-9b68-8e6de530ce0a/NetFx64.exe") + .checksum("e59cca309463a5d98daeaada83d1b05fed5126c5") + .name("NetFx64.exe") + .get(); + + new RemoveMono(this.wine).go(); + + wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 2.0")); + + this.wine.run(setupFile64, ["/q:a", "/c:install.exe /q"], null, false, true); + } + + //This is in winetricks source, but does not seem to work + //this.wizard().wait(tr("Please wait while executing ngen...")); + //this.run(this.prefixDirectory() + "/drive_c/windows/Microsoft.NET/Framework/v2.0.50727/ngen.exe", "executequeueditems", null, false, true); } - //This is in winetricks source, but does not seem to work - //this.wizard().wait(tr("Please wait while executing ngen...")); - //this.run(this.prefixDirectory() + "/drive_c/windows/Microsoft.NET/Framework/v2.0.50727/ngen.exe", "executequeueditems", null, false, true); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "dotnet20", Optional.empty()); + + wine.prefix(container); + wine.wizard(wizard); + + new DotNET20(wine).go(); + + wizard.close(); + } +} - return this; -}; +module.default = DotNET20; diff --git a/Engines/Wine/Verbs/dotnet20sp2/script.js b/Engines/Wine/Verbs/dotnet20sp2/script.js index 1a0540799b..05bf86947b 100644 --- a/Engines/Wine/Verbs/dotnet20sp2/script.js +++ b/Engines/Wine/Verbs/dotnet20sp2/script.js @@ -1,81 +1,86 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -const {remove} = include("utils.functions.filesystem.files"); +const { remove } = include("utils.functions.filesystem.files"); + +const Optional = Java.type("java.util.Optional"); include("engines.wine.plugins.override_dll"); include("engines.wine.plugins.windows_version"); include("engines.wine.plugins.regedit"); -include("engines.wine.verbs.remove_mono"); +const RemoveMono = include("engines.wine.verbs.remove_mono"); /** - * Verb to install .NET 2.0 SP2 - * - * @returns {Wine} Wine object + * Verb to install dotnet20sp2 */ -Wine.prototype.dotnet20sp2 = function () { - var osVersion = this.windowsVersion(); - this.windowsVersion("winxp"); - var dlls = [ - "ngen.exe", - "regsvcs.exe", - "mscorsvw.exe"]; - this.overrideDLL() - .set("builtin", dlls) - .do(); - this.removeMono(); - - if (this.architecture() == "x86") { - - var setupFile32 = new Resource() - .wizard(this.wizard()) - .url("https://download.microsoft.com/download/c/6/e/c6e88215-0178-4c6c-b5f3-158ff77b1f38/NetFx20SP2_x86.exe") - .checksum("22d776d4d204863105a5db99e8b8888be23c61a7") - .name("NetFx20SP2_x86.exe") - .get(); - - - this.wizard().wait(tr("Please wait while {0} is installed...", ".NET Framework 2.0 SP2")); - this.run(setupFile32, [setupFile32, "/q", "/c:\"install.exe /q\""], null, false, true); - - remove(this.system32directory() + "/msvcr80.dll"); - remove(this.system32directory() + "/msvcm80.dll"); - remove(this.system32directory() + "/msvcp80.dll"); +class DotNET20SP2 { + constructor(wine) { + this.wine = wine; } - else { - var setupFile64 = new Resource() - .wizard(this.wizard()) - .url("https://download.microsoft.com/download/c/6/e/c6e88215-0178-4c6c-b5f3-158ff77b1f38/NetFx20SP2_x64.exe") - .checksum("a7cc6c6e5a4ad9cdf3df16a7d277eb09fec429b7") - .name("NetFx20SP2_x64.exe") - .get(); + go() { + const wizard = this.wine.wizard(); + const osVersion = this.wine.windowsVersion(); + const system32directory = this.wine.system32directory(); - this.wizard().wait(tr("Please wait while {0} is installed...", ".NET Framework 2.0 SP2")); - this.run(setupFile64, [setupFile64, "/q", "/c:\"install.exe /q\""], null, false, true); - } - this.windowsVersion(osVersion); - this.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*ngen.exe"); - this.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*regsvcs.exe"); - this.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*mscorsvw.exe"); + this.wine.windowsVersion("winxp"); - return this; -}; + this.wine + .overrideDLL() + .set("builtin", ["ngen.exe", "regsvcs.exe", "mscorsvw.exe"]) + .do(); -/** - * Verb to install dotnet20sp2 - */ -// eslint-disable-next-line no-unused-vars -module.default = class Dotnet20SP2Verb { - constructor() { - // do nothing + new RemoveMono(this.wine).go(); + + if (this.wine.architecture() == "x86") { + const setupFile32 = new Resource() + .wizard(wizard) + .url( + "https://download.microsoft.com/download/c/6/e/c6e88215-0178-4c6c-b5f3-158ff77b1f38/NetFx20SP2_x86.exe" + ) + .checksum("22d776d4d204863105a5db99e8b8888be23c61a7") + .name("NetFx20SP2_x86.exe") + .get(); + + wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 2.0 SP2")); + + this.wine.run(setupFile32, [setupFile32, "/q", '/c:"install.exe /q"'], null, false, true); + + remove(`${system32directory}/msvcr80.dll`); + remove(`${system32directory}/msvcm80.dll`); + remove(`${system32directory}/msvcp80.dll`); + } else { + const setupFile64 = new Resource() + .wizard(wizard) + .url( + "https://download.microsoft.com/download/c/6/e/c6e88215-0178-4c6c-b5f3-158ff77b1f38/NetFx20SP2_x64.exe" + ) + .checksum("a7cc6c6e5a4ad9cdf3df16a7d277eb09fec429b7") + .name("NetFx20SP2_x64.exe") + .get(); + + wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 2.0 SP2")); + + this.wine.run(setupFile64, [setupFile64, "/q", '/c:"install.exe /q"'], null, false, true); + } + + this.wine.windowsVersion(osVersion); + + this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*ngen.exe"); + this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*regsvcs.exe"); + this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*mscorsvw.exe"); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "dotnet20sp2", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "dotnet20sp2", java.util.Optional.empty()); wine.wizard(wizard); - wine.dotnet20sp2(); + + new DotNET20SP2(wine).go(); + wizard.close(); } } + +module.default = DotNET20SP2; diff --git a/Engines/Wine/Verbs/dotnet40/script.js b/Engines/Wine/Verbs/dotnet40/script.js index 91f39e594d..4ddb4b86ee 100755 --- a/Engines/Wine/Verbs/dotnet40/script.js +++ b/Engines/Wine/Verbs/dotnet40/script.js @@ -1,85 +1,103 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.override_dll"); include("engines.wine.plugins.windows_version"); include("engines.wine.plugins.regedit"); -include("engines.wine.verbs.remove_mono"); - +const RemoveMono = include("engines.wine.verbs.remove_mono"); /** * Verb to install .NET 4.0 - * - * @returns {Wine} Wine object */ -Wine.prototype.dotnet40 = function () { - if (this.architecture() == "amd64") { - print(tr("This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.", "dotnet40")); +class DotNET40 { + constructor(wine) { + this.wine = wine; } - var osVersion = this.windowsVersion(); + go() { + const wizard = this.wine.wizard(); + const windowsVersion = this.wine.windowsVersion(); + + if (this.wine.architecture() == "amd64") { + print( + tr( + "This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.", + "dotnet40" + ) + ); + } - var setupFile = new Resource() - .wizard(this.wizard()) - .url("http://download.microsoft.com/download/9/5/A/95A9616B-7A37-4AF6-BC36-D6EA96C8DAAE/dotNetFx40_Full_x86_x64.exe") - .checksum("58da3d74db353aad03588cbb5cea8234166d8b99") - .name("dotNetFx40_Full_x86_x64.exe") - .get(); + const setupFile = new Resource() + .wizard(wizard) + .url( + "http://download.microsoft.com/download/9/5/A/95A9616B-7A37-4AF6-BC36-D6EA96C8DAAE/dotNetFx40_Full_x86_x64.exe" + ) + .checksum("58da3d74db353aad03588cbb5cea8234166d8b99") + .name("dotNetFx40_Full_x86_x64.exe") + .get(); - this.removeMono(); + new RemoveMono(this.wine).go(); - this.windowsVersion("winxp"); + this.wine.windowsVersion("winxp"); - this.overrideDLL() - .set("builtin", ["fusion"]) - .do(); + this.wine + .overrideDLL() + .set("builtin", ["fusion"]) + .do(); - this.wizard().wait(tr("Please wait while {0} is installed...", ".NET Framework 4.0")); - this.run(setupFile, [setupFile, "/q", "/c:\"install.exe /q\""], null, false, true); + wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.0")); - this.wizard().wait(tr("Please wait...")); - this.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); + this.wine.run(setupFile, [setupFile, "/q", '/c:"install.exe /q"'], null, false, true); - this.overrideDLL() - .set("native", ["mscoree"]) - .do(); + wizard.wait(tr("Please wait...")); - this.wizard().wait(tr("Please wait...")); - var regeditFileContent = "REGEDIT4\n" + - "\n" + - "[HKEY_LOCAL_MACHINE\\Software\\Microsoft\\NET Framework Setup\\NDP\\v4\\Full]\n" + - "\"Install\"=dword:0001\n" + - "\"Version\"=\"4.0.30319\""; + this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); - this.regedit().patch(regeditFileContent); + this.wine + .overrideDLL() + .set("native", ["mscoree"]) + .do(); - //This is in winetricks source, but does not seem to work - //this.wizard().wait(tr("Please wait while executing ngen...")); - //this.run(this.prefixDirectory() + "/drive_c/windows/Microsoft.NET/Framework/v4.0.30319/ngen.exe", "executequeueditems", null, false, true); + wizard.wait(tr("Please wait...")); - this.windowsVersion(osVersion); + const regeditFileContent = + "REGEDIT4\n" + + "\n" + + "[HKEY_LOCAL_MACHINE\\Software\\Microsoft\\NET Framework Setup\\NDP\\v4\\Full]\n" + + '"Install"=dword:0001\n' + + '"Version"="4.0.30319"'; - return this; -}; + this.wine.regedit().patch(regeditFileContent); -/** - * Verb to install .NET 4.0 - */ -// eslint-disable-next-line no-unused-vars -module.default = class Dotnet40Verb { - constructor() { - // do nothing + //This is in winetricks source, but does not seem to work + //this.wizard().wait(tr("Please wait while executing ngen...")); + //this.run(this.prefixDirectory() + "/drive_c/windows/Microsoft.NET/Framework/v4.0.30319/ngen.exe", "executequeueditems", null, false, true); + + this.wine.windowsVersion(windowsVersion); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "dotnet40", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "dotnet40", java.util.Optional.empty()); + wine.wizard(wizard); + if (wine.architecture() == "amd64") { - wizard.message(tr("This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.", "dotnet40")); + wizard.message( + tr( + "This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.", + "dotnet40" + ) + ); } - wine.wizard(wizard); - wine.dotnet40(); + + new DotNET40(wine).go(); + wizard.close(); } } + +module.default = DotNET40; diff --git a/Engines/Wine/Verbs/dotnet45/script.js b/Engines/Wine/Verbs/dotnet45/script.js index bc8738209f..677af49130 100755 --- a/Engines/Wine/Verbs/dotnet45/script.js +++ b/Engines/Wine/Verbs/dotnet45/script.js @@ -1,76 +1,96 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.override_dll"); include("engines.wine.plugins.windows_version"); include("engines.wine.plugins.regedit"); -include("engines.wine.verbs.remove_mono"); -include("engines.wine.verbs.dotnet40"); +const RemoveMono = include("engines.wine.verbs.remove_mono"); +const DotNET40 = include("engines.wine.verbs.dotnet40"); /** * Verb to install .NET 4.5 - * @returns {Wine} Wine object */ -Wine.prototype.dotnet45 = function () { - if (this.architecture() == "amd64") { - print(tr("This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.", "dotnet45")); +class DotNET45 { + constructor(wine) { + this.wine = wine; } - var osVersion = this.windowsVersion(); + go() { + const wizard = this.wine.wizard(); + const windowsVersion = this.wine.windowsVersion(); + const architecture = this.wine.architecture(); - var setupFile = new Resource() - .wizard(this.wizard()) - .url("http://download.microsoft.com/download/b/a/4/ba4a7e71-2906-4b2d-a0e1-80cf16844f5f/dotnetfx45_full_x86_x64.exe") - .checksum("b2ff712ca0947040ca0b8e9bd7436a3c3524bb5d") - .name("dotnetfx45_full_x86_x64.exe") - .get(); + if (architecture == "amd64") { + print( + tr( + "This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.", + "dotnet45" + ) + ); + } - this.removeMono(); + const setupFile = new Resource() + .wizard(wizard) + .url( + "http://download.microsoft.com/download/b/a/4/ba4a7e71-2906-4b2d-a0e1-80cf16844f5f/dotnetfx45_full_x86_x64.exe" + ) + .checksum("b2ff712ca0947040ca0b8e9bd7436a3c3524bb5d") + .name("dotnetfx45_full_x86_x64.exe") + .get(); - this.dotnet40(); - this.windowsVersion("win7"); + new RemoveMono(this.wine).go(); - this.overrideDLL() - .set("builtin", ["fusion"]) - .do(); + new DotNET40(this.wine).go(); - this.wizard().wait(tr("Please wait while {0} is installed...", ".NET Framework 4.5")); - this.run(setupFile, [setupFile, "/q", "/c:\"install.exe /q\""], null, false, true); + this.wine.windowsVersion("win7"); - this.wizard().wait(tr("Please wait...")); - this.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); + this.wine + .overrideDLL() + .set("builtin", ["fusion"]) + .do(); - this.overrideDLL() - .set("native", ["mscoree"]) - .do(); + wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.5")); - this.windowsVersion(osVersion); + this.wine.run(setupFile, [setupFile, "/q", '/c:"install.exe /q"'], null, false, true); - if (osVersion != "win2003") { - print(tr("{0} applications can have issues when windows version is not set to \"win2003\"", ".NET 4.5")); - } + wizard.wait(tr("Please wait...")); - return this; -}; + this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); -/** - * Verb to install .NET 4.5 - */ -// eslint-disable-next-line no-unused-vars -module.default = class Dotnet45Verb { - constructor() { - // do nothing + this.wine + .overrideDLL() + .set("native", ["mscoree"]) + .do(); + + this.wine.windowsVersion(windowsVersion); + + if (windowsVersion != "win2003") { + print(tr('{0} applications can have issues when windows version is not set to "win2003"', ".NET 4.5")); + } } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "dotnet45", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "dotnet45", java.util.Optional.empty()); + wine.wizard(wizard); + if (wine.architecture() == "amd64") { - wizard.message(tr("This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.", "dotnet45")); + wizard.message( + tr( + "This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.", + "dotnet45" + ) + ); } - wine.wizard(wizard); - wine.dotnet45(); + + new DotNET45(wine).go(); + wizard.close(); } } + +module.default = DotNET45; diff --git a/Engines/Wine/Verbs/dotnet452/script.js b/Engines/Wine/Verbs/dotnet452/script.js index 5969adbcbd..f60c73cb9a 100755 --- a/Engines/Wine/Verbs/dotnet452/script.js +++ b/Engines/Wine/Verbs/dotnet452/script.js @@ -1,74 +1,81 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.override_dll"); include("engines.wine.plugins.windows_version"); include("engines.wine.plugins.regedit"); -include("engines.wine.verbs.remove_mono"); -include("engines.wine.verbs.dotnet40"); - +const RemoveMono = include("engines.wine.verbs.remove_mono"); +const DotNET40 = include("engines.wine.verbs.dotnet40"); /** * Verb to install .NET 4.5.2 - * - * @returns {Wine} Wine object */ -Wine.prototype.dotnet452 = function () { - print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet452")); +class DotNET452 { + constructor(wine) { + this.wine = wine; + } - var osVersion = this.windowsVersion(); + go() { + const wizard = this.wine.wizard(); + const windowsVersion = this.wine.windowsVersion(); - var setupFile = new Resource() - .wizard(this.wizard()) - .url("https://download.microsoft.com/download/E/2/1/E21644B5-2DF2-47C2-91BD-63C560427900/NDP452-KB2901907-x86-x64-AllOS-ENU.exe") - .checksum("89f86f9522dc7a8a965facce839abb790a285a63") - .name("NDP452-KB2901907-x86-x64-AllOS-ENU.exe") - .get(); + print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet452")); - this.removeMono(); + const setupFile = new Resource() + .wizard(wizard) + .url( + "https://download.microsoft.com/download/E/2/1/E21644B5-2DF2-47C2-91BD-63C560427900/NDP452-KB2901907-x86-x64-AllOS-ENU.exe" + ) + .checksum("89f86f9522dc7a8a965facce839abb790a285a63") + .name("NDP452-KB2901907-x86-x64-AllOS-ENU.exe") + .get(); - this.dotnet40(); - this.windowsVersion("win7"); + new RemoveMono(this.wine).go(); - this.overrideDLL() - .set("builtin", ["fusion"]) - .do(); + new DotNET40(this.wine).go(); - this.wizard().wait(tr("Please wait while {0} is installed...", ".NET Framework 4.5.2")); - this.run(setupFile, [setupFile, "/q", "/c:\"install.exe /q\""], null, false, true); + this.wine.windowsVersion("win7"); - this.wizard().wait(tr("Please wait...")); - this.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); + this.wine + .overrideDLL() + .set("builtin", ["fusion"]) + .do(); - this.overrideDLL() - .set("native", ["mscoree"]) - .do(); + wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.5.2")); - this.windowsVersion(osVersion); + this.wine.run(setupFile, [setupFile, "/q", '/c:"install.exe /q"'], null, false, true); - if (osVersion != "win2003") { - print(tr("{0} applications can have issues when windows version is not set to \"win2003\"", ".NET 4.5.2")); - } + wizard.wait(tr("Please wait...")); - return this; -}; + this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); -/** - * Verb to install .NET 4.5.2 - */ -// eslint-disable-next-line no-unused-vars -module.default = class Dotnet452Verb { - constructor() { - // do nothing + this.wine + .overrideDLL() + .set("native", ["mscoree"]) + .do(); + + this.wine.windowsVersion(windowsVersion); + + if (windowsVersion != "win2003") { + print(tr('{0} applications can have issues when windows version is not set to "win2003"', ".NET 4.5.2")); + } } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "dotnet452", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "dotnet452", java.util.Optional.empty()); - wizard.message(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet452")); wine.wizard(wizard); - wine.dotnet452(); + + wizard.message(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet452")); + + new DotNET452(wine).go(); + wizard.close(); } } + +module.default = DotNET452; diff --git a/Engines/Wine/Verbs/dotnet46/script.js b/Engines/Wine/Verbs/dotnet46/script.js index f5621ba435..9e564fb389 100755 --- a/Engines/Wine/Verbs/dotnet46/script.js +++ b/Engines/Wine/Verbs/dotnet46/script.js @@ -1,69 +1,77 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.override_dll"); include("engines.wine.plugins.windows_version"); include("engines.wine.plugins.regedit"); -include("engines.wine.verbs.remove_mono"); -include("engines.wine.verbs.dotnet45"); +const RemoveMono = include("engines.wine.verbs.remove_mono"); +const DotNET45 = include("engines.wine.verbs.dotnet45"); /** * Verb to install .NET 4.6 - * - * @returns {Wine} Wine object */ -Wine.prototype.dotnet46 = function () { - print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet46")); +class DotNET46 { + constructor(wine) { + this.wine = wine; + } - var osVersion = this.windowsVersion(); + go() { + const wizard = this.wine.wizard(); + const windowsVersion = this.wine.windowsVersion(); - var setupFile = new Resource() - .wizard(this._wizard) - .url("https://download.microsoft.com/download/C/3/A/C3A5200B-D33C-47E9-9D70-2F7C65DAAD94/NDP46-KB3045557-x86-x64-AllOS-ENU.exe") - .checksum("3049a85843eaf65e89e2336d5fe6e85e416797be") - .name("NDP46-KB3045557-x86-x64-AllOS-ENU.exe") - .get(); + print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet46")); - this.removeMono(); + const setupFile = new Resource() + .wizard(wizard) + .url( + "https://download.microsoft.com/download/C/3/A/C3A5200B-D33C-47E9-9D70-2F7C65DAAD94/NDP46-KB3045557-x86-x64-AllOS-ENU.exe" + ) + .checksum("3049a85843eaf65e89e2336d5fe6e85e416797be") + .name("NDP46-KB3045557-x86-x64-AllOS-ENU.exe") + .get(); - this.dotnet45(); - this.windowsVersion("win7"); + new RemoveMono(this.wine).go(); - this.overrideDLL() - .set("builtin", ["fusion"]) - .do(); + new DotNET45(this.wine).go(); - this.wizard().wait(tr("Please wait while {0} is installed...", ".NET Framework 4.6")); - this.run(setupFile, [setupFile, "/q", "/c:\"install.exe /q\""], null, false, true); + this.wine.windowsVersion("win7"); - this.wizard().wait(tr("Please wait...")); - this.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); + this.wine + .overrideDLL() + .set("builtin", ["fusion"]) + .do(); - this.overrideDLL() - .set("native", ["mscoree"]) - .do(); + wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.6")); - this.windowsVersion(osVersion); + this.wine.run(setupFile, [setupFile, "/q", '/c:"install.exe /q"'], null, false, true); - return this; -}; + wizard.wait(tr("Please wait...")); -/** - * Verb to install .NET 4.6 - */ -// eslint-disable-next-line no-unused-vars -module.default = class Dotnet46Verb { - constructor() { - // do nothing + this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); + + this.wine + .overrideDLL() + .set("native", ["mscoree"]) + .do(); + + this.wine.windowsVersion(windowsVersion); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "dotnet46", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "dotnet46", java.util.Optional.empty()); - wizard.message(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet46")); wine.wizard(wizard); - wine.dotnet46(); + + wizard.message(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet46")); + + new DotNET46(wine).go(); + wizard.close(); } } + +module.default = DotNET46; diff --git a/Engines/Wine/Verbs/dotnet461/script.js b/Engines/Wine/Verbs/dotnet461/script.js index 20351ebfd1..f665b5fa54 100755 --- a/Engines/Wine/Verbs/dotnet461/script.js +++ b/Engines/Wine/Verbs/dotnet461/script.js @@ -1,70 +1,77 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.override_dll"); include("engines.wine.plugins.windows_version"); include("engines.wine.plugins.regedit"); -include("engines.wine.verbs.remove_mono"); -include("engines.wine.verbs.dotnet46"); - +const RemoveMono = include("engines.wine.verbs.remove_mono"); +const DotNET46 = include("engines.wine.verbs.dotnet46"); /** * Verb to install .NET 4.6.1 - * - * @returns {Wine} Wine object */ -Wine.prototype.dotnet461 = function () { - print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet461")); +class DotNET461 { + constructor(wine) { + this.wine = wine; + } - var osVersion = this.windowsVersion(); + go() { + const wizard = this.wine.wizard(); + const windowsVersion = this.wine.windowsVersion(); - var setupFile = new Resource() - .wizard(this._wizard) - .url("https://download.microsoft.com/download/E/4/1/E4173890-A24A-4936-9FC9-AF930FE3FA40/NDP461-KB3102436-x86-x64-AllOS-ENU.exe") - .checksum("83d048d171ff44a3cad9b422137656f585295866") - .name("NDP461-KB3102436-x86-x64-AllOS-ENU.exe") - .get(); + print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet461")); - this.removeMono(); + const setupFile = new Resource() + .wizard(wizard) + .url( + "https://download.microsoft.com/download/E/4/1/E4173890-A24A-4936-9FC9-AF930FE3FA40/NDP461-KB3102436-x86-x64-AllOS-ENU.exe" + ) + .checksum("83d048d171ff44a3cad9b422137656f585295866") + .name("NDP461-KB3102436-x86-x64-AllOS-ENU.exe") + .get(); - this.dotnet46(); - this.windowsVersion("win7"); + new RemoveMono(this.wine).go(); - this.overrideDLL() - .set("builtin", ["fusion"]) - .do(); + new DotNET46(this.wine).go(); - this.wizard().wait(tr("Please wait while {0} is installed...", ".NET Framework 4.6.1")); - this.run(setupFile, [setupFile, "/q", "/norestart"], null, false, true); + this.wine.windowsVersion("win7"); - this.wizard().wait(tr("Please wait...")); - this.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); + this.wine + .overrideDLL() + .set("builtin", ["fusion"]) + .do(); - this.overrideDLL() - .set("native", ["mscoree"]) - .do(); + wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.6.1")); - this.windowsVersion(osVersion); + this.wine.run(setupFile, [setupFile, "/q", "/norestart"], null, false, true); - return this; -}; + wizard.wait(tr("Please wait...")); -/** - * Verb to install .NET 4.6.1 - */ -// eslint-disable-next-line no-unused-vars -module.default = class Dotnet461Verb { - constructor() { - // do nothing + this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); + + this.wine + .overrideDLL() + .set("native", ["mscoree"]) + .do(); + + this.wine.windowsVersion(windowsVersion); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "dotnet461", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "dotnet461", java.util.Optional.empty()); - wizard.message(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet461")); wine.wizard(wizard); - wine.dotnet461(); + + wizard.message(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet461")); + + new DotNET461(wine).go(); + wizard.close(); } } + +module.default = DotNET461; diff --git a/Engines/Wine/Verbs/dotnet462/script.js b/Engines/Wine/Verbs/dotnet462/script.js index 1772c4f823..df93f0a2a1 100755 --- a/Engines/Wine/Verbs/dotnet462/script.js +++ b/Engines/Wine/Verbs/dotnet462/script.js @@ -1,70 +1,77 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.override_dll"); include("engines.wine.plugins.windows_version"); include("engines.wine.plugins.regedit"); -include("engines.wine.verbs.remove_mono"); -include("engines.wine.verbs.dotnet461"); - +const RemoveMono = include("engines.wine.verbs.remove_mono"); +const DotNET461 = include("engines.wine.verbs.dotnet461"); /** * Verb to install .NET 4.6.2 - * - * @returns {Wine} Wine object */ -Wine.prototype.dotnet462 = function () { - print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet462")); +class DotNET462 { + constructor(wine) { + this.wine = wine; + } - var osVersion = this.windowsVersion(); + go() { + const wizard = this.wine.wizard(); + const windowsVersion = this.wine.windowsVersion(); - var setupFile = new Resource() - .wizard(this._wizard) - .url("https://download.microsoft.com/download/F/9/4/F942F07D-F26F-4F30-B4E3-EBD54FABA377/NDP462-KB3151800-x86-x64-AllOS-ENU.exe") - .checksum("a70f856bda33d45ad0a8ad035f73092441715431") - .name("NDP462-KB3151800-x86-x64-AllOS-ENU.exe") - .get(); + print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet462")); - this.removeMono(); + const setupFile = new Resource() + .wizard(wizard) + .url( + "https://download.microsoft.com/download/F/9/4/F942F07D-F26F-4F30-B4E3-EBD54FABA377/NDP462-KB3151800-x86-x64-AllOS-ENU.exe" + ) + .checksum("a70f856bda33d45ad0a8ad035f73092441715431") + .name("NDP462-KB3151800-x86-x64-AllOS-ENU.exe") + .get(); - this.dotnet461(); - this.windowsVersion("win7"); + new RemoveMono(this.wine).go(); - this.overrideDLL() - .set("builtin", ["fusion"]) - .do(); + new DotNET461(this.wine).go(); - this.wizard().wait(tr("Please wait while {0} is installed...", ".NET Framework 4.6.2")); - this.run(setupFile, [setupFile, "/sfxlang:1027", "/q", "/norestart"], null, false, true); + this.wine.windowsVersion("win7"); - this.wizard().wait(tr("Please wait...")); - this.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); + this.wine + .overrideDLL() + .set("builtin", ["fusion"]) + .do(); - this.overrideDLL() - .set("native", ["mscoree"]) - .do(); + wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.6.2")); - this.windowsVersion(osVersion); + this.wine.run(setupFile, [setupFile, "/sfxlang:1027", "/q", "/norestart"], null, false, true); - return this; -}; + wizard.wait(tr("Please wait...")); -/** - * Verb to install .NET 4.6.2 - */ -// eslint-disable-next-line no-unused-vars -module.default = class Dotnet462Verb { - constructor() { - // do nothing + this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); + + this.wine + .overrideDLL() + .set("native", ["mscoree"]) + .do(); + + this.wine.windowsVersion(windowsVersion); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "dotnet462", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "dotnet462", java.util.Optional.empty()); - wizard.message(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet462")); wine.wizard(wizard); - wine.dotnet462(); + + wizard.message(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet462")); + + new DotNET462(wine).go(); + wizard.close(); } } + +module.default = DotNET462; diff --git a/Engines/Wine/Verbs/dotnet472/script.js b/Engines/Wine/Verbs/dotnet472/script.js index d1fb6af5e7..22f1fb72ad 100755 --- a/Engines/Wine/Verbs/dotnet472/script.js +++ b/Engines/Wine/Verbs/dotnet472/script.js @@ -1,70 +1,77 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.override_dll"); include("engines.wine.plugins.windows_version"); include("engines.wine.plugins.regedit"); -include("engines.wine.verbs.remove_mono"); -include("engines.wine.verbs.dotnet462"); - +const RemoveMono = include("engines.wine.verbs.remove_mono"); +const DotNET462 = include("engines.wine.verbs.dotnet462"); /** * Verb to install .NET 4.7.2 - * - * @returns {Wine} Wine object */ -Wine.prototype.dotnet472 = function () { - print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet472")); +class DotNET472 { + constructor(wine) { + this.wine = wine; + } - var osVersion = this.windowsVersion(); + go() { + const wizard = this.wine.wizard(); + const windowsVersion = this.wine.windowsVersion(); - var setupFile = new Resource() - .wizard(this._wizard) - .url("https://download.microsoft.com/download/6/E/4/6E48E8AB-DC00-419E-9704-06DD46E5F81D/NDP472-KB4054530-x86-x64-AllOS-ENU.exe") - .checksum("31fc0d305a6f651c9e892c98eb10997ae885eb1e") - .name("NDP472-KB4054530-x86-x64-AllOS-ENU.exe") - .get(); + print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet472")); - this.removeMono(); + const setupFile = new Resource() + .wizard(wizard) + .url( + "https://download.microsoft.com/download/6/E/4/6E48E8AB-DC00-419E-9704-06DD46E5F81D/NDP472-KB4054530-x86-x64-AllOS-ENU.exe" + ) + .checksum("31fc0d305a6f651c9e892c98eb10997ae885eb1e") + .name("NDP472-KB4054530-x86-x64-AllOS-ENU.exe") + .get(); - this.dotnet462(); - this.windowsVersion("win7"); + new RemoveMono(this.wine).go(); - this.overrideDLL() - .set("builtin", ["fusion"]) - .do(); + new DotNET462(this.wine).go(); - this.wizard().wait(tr("Please wait while {0} is installed...", ".NET Framework 4.7.2")); - this.run(setupFile, [setupFile, "/sfxlang:1027", "/q", "/norestart"], null, false, true); + this.wine.windowsVersion("win7"); - this.wizard().wait(tr("Please wait...")); - this.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); + this.wine + .overrideDLL() + .set("builtin", ["fusion"]) + .do(); - this.overrideDLL() - .set("native", ["mscoree"]) - .do(); + wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.7.2")); - this.windowsVersion(osVersion); + this.wine.run(setupFile, [setupFile, "/sfxlang:1027", "/q", "/norestart"], null, false, true); - return this; -}; + wizard.wait(tr("Please wait...")); -/** - * Verb to install .NET 4.7.2 - */ -// eslint-disable-next-line no-unused-vars -module.default = class Dotnet472Verb { - constructor() { - // do nothing + this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion"); + + this.wine + .overrideDLL() + .set("native", ["mscoree"]) + .do(); + + this.wine.windowsVersion(windowsVersion); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "dotnet472", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "dotnet472", java.util.Optional.empty()); - wizard.message(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet472")); wine.wizard(wizard); - wine.dotnet472(); + + wizard.message(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet472")); + + new DotNET472(wine).go(); + wizard.close(); } } + +module.default = DotNET472; diff --git a/Engines/Wine/Verbs/gallium9/script.js b/Engines/Wine/Verbs/gallium9/script.js index e2c2e7f546..efb30e5a25 100644 --- a/Engines/Wine/Verbs/gallium9/script.js +++ b/Engines/Wine/Verbs/gallium9/script.js @@ -1,102 +1,113 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -const {Extractor} = include("utils.functions.filesystem.extract"); -const {remove, lns} = include("utils.functions.filesystem.files"); +const { Extractor } = include("utils.functions.filesystem.extract"); +const { remove, lns } = include("utils.functions.filesystem.files"); + +const Optional = Java.type("java.util.Optional"); include("engines.wine.plugins.override_dll"); /** * Verb to install Gallium 9 Standalone * see: https://github.com/iXit/wine-nine-standalone/ - * - * @param {String} gallium9Version Gallium 9 Standalone version to download - * @returns {Wine} Wine object */ -Wine.prototype.gallium9 = function (gallium9Version) { - if (typeof gallium9Version !== "string") { - gallium9Version = "0.4"; +class Gallium9 { + constructor(wine) { + this.wine = wine; } - this.wizard().message( - tr( - "Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits)." - ) - ); - - const setupFile = new Resource() - .wizard(this.wizard()) - .url( - "https://github.com/iXit/wine-nine-standalone/releases/download/v" + - gallium9Version + - "/gallium-nine-standalone-v" + - gallium9Version + - ".tar.gz" - ) - .name("gallium-nine-standalone-v" + gallium9Version + ".tar.gz") - .get(); - - new Extractor() - .wizard(this.wizard()) - .archive(setupFile) - .to(this.prefixDirectory()) - .extract(); - - remove(this.system32directory() + "/d3d9.dll"); - lns( - this.prefixDirectory() + "/gallium-nine-standalone/lib32/d3d9-nine.dll.so", - this.system32directory() + "/d3d9-nine.dll" - ); - lns( - this.prefixDirectory() + "/gallium-nine-standalone/bin32/ninewinecfg.exe.so", - this.system32directory() + "/ninewinecfg.exe" - ); - lns(this.system32directory() + "/d3d9-nine.dll", this.system32directory() + "/d3d9.dll"); - - if (this.architecture() == "amd64") { - remove(this.system64directory() + "/d3d9.dll"); - lns( - this.prefixDirectory() + "/gallium-nine-standalone/lib64/d3d9-nine.dll.so", - this.system64directory() + "/d3d9-nine.dll" + /** + * Sets the used gallium9 version + * + * @param {string} gallium9Version The Gallium 9 Standalone version to download + * @returns {Gallium9} The Gallium9 object + */ + withVersion(gallium9Version) { + this.gallium9Version = gallium9Version; + + return this; + } + + go() { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + const system32directory = this.wine.system32directory(); + + if (typeof this.gallium9Version !== "string") { + this.gallium9Version = "0.4"; + } + + wizard.message( + tr( + "Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits)." + ) ); + + const setupFile = new Resource() + .wizard(wizard) + .url( + `https://github.com/iXit/wine-nine-standalone/releases/download/v${this.gallium9Version}/gallium-nine-standalone-v${this.gallium9Version}.tar.gz` + ) + .name(`gallium-nine-standalone-v${this.gallium9Version}.tar.gz`) + .get(); + + new Extractor() + .wizard(wizard) + .archive(setupFile) + .to(prefixDirectory) + .extract(); + + remove(`${system32directory}/d3d9.dll`); + + lns(`${prefixDirectory}/gallium-nine-standalone/lib32/d3d9-nine.dll.so`, `${system32directory}/d3d9-nine.dll`); lns( - this.prefixDirectory() + "/gallium-nine-standalone/bin64/ninewinecfg.exe.so", - this.system64directory() + "/ninewinecfg.exe" + `${prefixDirectory}/gallium-nine-standalone/bin32/ninewinecfg.exe.so`, + `${system32directory}/ninewinecfg.exe` ); - lns(this.system64directory() + "/d3d9-nine.dll", this.system64directory() + "/d3d9.dll"); + lns(`${system32directory}/d3d9-nine.dll`, `${system32directory}/d3d9.dll`); - this.run(this.system64directory() + "ninewinecfg.exe", ["-e"], null, false, true); - } else { - this.run(this.system32directory() + "ninewinecfg.exe", ["-e"], null, false, true); - } + if (this.wine.architecture() == "amd64") { + const system64directory = this.wine.system64directory(); - this.overrideDLL() - .set("native", ["d3d9"]) - .do(); + remove(`${system64directory}/d3d9.dll`); - return this; -}; + lns( + `${prefixDirectory}/gallium-nine-standalone/lib64/d3d9-nine.dll.so`, + `${system64directory}/d3d9-nine.dll` + ); + lns( + `${prefixDirectory}/gallium-nine-standalone/bin64/ninewinecfg.exe.so`, + `${system64directory}/ninewinecfg.exe` + ); + lns(`${system64directory}/d3d9-nine.dll`, `${system64directory}/d3d9.dll`); -/** - * Verb to install Gallium 9 Standalone - */ -// eslint-disable-next-line no-unused-vars -module.default = class Gallium9Verb { - constructor() { - // do nothing + this.wine.run(`${system64directory}ninewinecfg.exe`, ["-e"], null, false, true); + } else { + this.wine.run(`${system32directory}ninewinecfg.exe`, ["-e"], null, false, true); + } + + this.wine + .overrideDLL() + .set("native", ["d3d9"]) + .do(); } - install(container) { - const wizard = SetupWizard(InstallationType.VERBS, "gallium9", java.util.Optional.empty()); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "gallium9", Optional.empty()); + const versions = ["0.4", "0.3", "0.2"]; const selectedVersion = wizard.menu(tr("Please select the version."), versions, "0.4"); - const wine = new Wine(); wine.prefix(container); wine.wizard(wizard); + // install selected version - wine.gallium9(selectedVersion.text); + new Gallium9(wine).withVersion(selectedVersion.text).go(); wizard.close(); } } + +module.default = Gallium9; diff --git a/Engines/Wine/Verbs/gdiplus/script.js b/Engines/Wine/Verbs/gdiplus/script.js index 4a1b2ce0fa..c436823045 100644 --- a/Engines/Wine/Verbs/gdiplus/script.js +++ b/Engines/Wine/Verbs/gdiplus/script.js @@ -1,49 +1,79 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -const {cp} = include("utils.functions.filesystem.files"); +const { CabExtract } = include("utils.functions.filesystem.extract"); +const { cp, remove } = include("utils.functions.filesystem.files"); + +const Optional = Java.type("java.util.Optional"); include("engines.wine.plugins.override_dll"); /** * Verb to install gdiplus - * - * @returns {Wine} Wine object */ -Wine.prototype.gdiplus = function () { - var setupFile = new Resource() - .wizard(this.wizard()) - .url("http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe") - .checksum("b9a84bc3de92863bba1f5eb1d598446567fbc646") - .name("WindowsXP-KB975337-x86-ENU.exe") - .get(); +class GDIPlus { + constructor(wine) { + this.wine = wine; + } - this.wizard().wait(tr("Please wait while {0} is installed...", "GDI+")); - this.run(setupFile, ["/extract:C:\\Tmp", "/q"], null, true, true); + go() { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + const system32directory = this.wine.system32directory(); + const architecture = this.wine.architecture(); - this.overrideDLL() - .set("native", ["gdiplus"]) - .do(); + const setupFile = new Resource() + .wizard(wizard) + .url("https://download.microsoft.com/download/0/A/F/0AFB5316-3062-494A-AB78-7FB0D4461357/windows6.1-KB976932-X86.exe") + .checksum("c3516bc5c9e69fee6d9ac4f981f5b95977a8a2fa") + .name("windows6.1-KB976932-X86.exe") + .get(); - cp(this.prefixDirectory() + "/drive_c/Tmp/asms/10/msft/windows/gdiplus/gdiplus.dll", this.system32directory()); + new CabExtract() + .archive(setupFile) + .wizard(wizard) + .to(`${prefixDirectory}/drive_c/gdiplus/`) + .extract(["-L", "-F", "x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601.17514_none_72d18a4386696c80/gdiplus.dll"]); - return this; -}; + cp(`${prefixDirectory}/drive_c/gdiplus/x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601.17514_none_72d18a4386696c80/gdiplus.dll`, system32directory); -/** - * Verb to install gdiplus - */ -// eslint-disable-next-line no-unused-vars -module.default = class GdiplusVerb { - constructor() { - // do nothing + if (architecture == "amd64") { + const system64directory = this.wine.system64directory(); + + const setupFile64 = new Resource() + .wizard(wizard) + .url("https://download.microsoft.com/download/0/A/F/0AFB5316-3062-494A-AB78-7FB0D4461357/windows6.1-KB976932-X64.exe") + .checksum("74865ef2562006e51d7f9333b4a8d45b7a749dab") + .name("windows6.1-KB976932-X64.exe") + .get(); + + new CabExtract() + .archive(setupFile64) + .wizard(wizard) + .to(`${prefixDirectory}/drive_c/gdiplus/`) + .extract(["-L", "-F", "amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601.17514_none_2b24536c71ed437a/gdiplus.dll"]); + + cp(`${prefixDirectory}/drive_c/gdiplus/amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601.17514_none_2b24536c71ed437a/gdiplus.dll`, system64directory); + } + + remove(`${prefixDirectory}/drive_c/gdiplus/`); + + this.wine + .overrideDLL() + .set("native", ["gdiplus"]) + .do(); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "gdiplus", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "gdiplus", java.util.Optional.empty()); wine.wizard(wizard); - wine.gdiplus(); + + new GDIPlus(wine).go(); + wizard.close(); } } + +module.default = GDIPlus; diff --git a/Engines/Wine/Verbs/gdiplus_winxp/script.js b/Engines/Wine/Verbs/gdiplus_winxp/script.js new file mode 100644 index 0000000000..a1e7d0f094 --- /dev/null +++ b/Engines/Wine/Verbs/gdiplus_winxp/script.js @@ -0,0 +1,68 @@ +const Wine = include("engines.wine.engine.object"); +const Resource = include("utils.functions.net.resource"); +const { CabExtract } = include("utils.functions.filesystem.extract"); +const { remove, cat, writeToFile } = include("utils.functions.filesystem.files"); + +const Optional = Java.type("java.util.Optional"); + +include("engines.wine.plugins.override_dll"); + +/** + * Verb to install gdiplus (windows xp) + * + * @returns {Wine} Wine object + */ +class GDIPlusWinXP { + constructor(wine) { + this.wine = wine; + } + + go() { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + const system32directory = this.wine.system32directory(); + + const setupFile = new Resource() + .wizard(wizard) + .url("https://download.microsoft.com/download/1/4/6/1467c2ba-4d1f-43ad-8d9b-3e8bc1c6ac3d/NDP1.0sp2-KB830348-X86-Enu.exe") + .checksum("6113cd89d77525958295ccbd73b5fb8b89abd0aa") + .name("NDP1.0sp2-KB830348-X86-Enu.exe") + .get(); + + new CabExtract() + .archive(setupFile) + .wizard(wizard) + .to(`${prefixDirectory}/drive_c/gdiplus/`) + .extract(["-F", "FL_gdiplus_dll_____X86.3643236F_FC70_11D3_A536_0090278A1BB8"]); + + new CabExtract() + .archive(setupFile) + .wizard(wizard) + .to(`${prefixDirectory}/drive_c/gdiplus/`) + .extract(["-L", "-F", "x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601.17514_none_72d18a4386696c80/gdiplus.dll"]); + + const content = cat(`${prefixDirectory}/drive_c/gdiplus/drive_c/gdiplus/FL_gdiplus_dll_____X86.3643236F_FC70_11D3_A536_0090278A1BB8`); + writeToFile(`${system32directory}/gdiplus.dll`, content); + + remove(`${prefixDirectory}/drive_c/gdiplus/`); + + this.wine + .overrideDLL() + .set("native", ["gdiplus"]) + .do(); + } + + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "gdiplus (windows xp)", Optional.empty()); + + wine.prefix(container); + wine.wizard(wizard); + + new GDIPlusWinXP(wine).go(); + + wizard.close(); + } +} + +module.default = GDIPlusWinXP; diff --git a/Engines/Wine/Verbs/gdiplus_winxp/script.json b/Engines/Wine/Verbs/gdiplus_winxp/script.json new file mode 100644 index 0000000000..5abc77a611 --- /dev/null +++ b/Engines/Wine/Verbs/gdiplus_winxp/script.json @@ -0,0 +1,11 @@ +{ + "scriptName" : "gdiplus_winxp", + "id" : "engines.wine.verbs.gdiplus_winxp", + "compatibleOperatingSystems" : [ + "MACOSX", + "LINUX" + ], + "testingOperatingSystems" : [], + "free" : true, + "requiresPatch" : false +} diff --git a/Engines/Wine/Verbs/luna/script.js b/Engines/Wine/Verbs/luna/script.js index f521e58338..91ad54f72e 100644 --- a/Engines/Wine/Verbs/luna/script.js +++ b/Engines/Wine/Verbs/luna/script.js @@ -1,53 +1,55 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -const {mkdir, cp} = include("utils.functions.filesystem.files"); +const { mkdir, cp } = include("utils.functions.filesystem.files"); + +const Optional = Java.type("java.util.Optional"); include("engines.wine.plugins.regedit"); /** * Verb to install luna - * - * @returns {Wine} Wine object */ -Wine.prototype.luna = function () { - var lunaStyle = new Resource() - .wizard(this.wizard()) - .url("https://repository.playonlinux.com/divers/luna.msstyles") - .checksum("50a71767f90c1d3d86ca188a84393f2d39664311") - .name("luna.msstyles") - .get(); +class Luna { + constructor(wine) { + this.wine = wine; + } - var lunaReg = new Resource() - .wizard(this.wizard()) - .url("https://repository.playonlinux.com/divers/luna.reg") - .checksum("074e655d391ae87527f4cc50ba822a8aad83a09f") - .name("luna.reg") - .get(); + go() { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + const lunaStyle = new Resource() + .wizard(wizard) + .url("https://repository.playonlinux.com/divers/luna.msstyles") + .checksum("50a71767f90c1d3d86ca188a84393f2d39664311") + .name("luna.msstyles") + .get(); - mkdir(this.prefixDirectory() + "/drive_c/windows/Resources/Themes/luna/"); - cp(lunaStyle, this.prefixDirectory() + "/drive_c/windows/Resources/Themes/luna/"); + const lunaReg = new Resource() + .wizard(wizard) + .url("https://repository.playonlinux.com/divers/luna.reg") + .checksum("074e655d391ae87527f4cc50ba822a8aad83a09f") + .name("luna.reg") + .get(); - this.regedit().open(lunaReg); + mkdir(`${prefixDirectory}/drive_c/windows/Resources/Themes/luna/`); - return this; -}; + cp(lunaStyle, `${prefixDirectory}/drive_c/windows/Resources/Themes/luna/`); -/** - * Verb to install luna - */ -// eslint-disable-next-line no-unused-vars -module.default = class LunaVerb { - constructor() { - // do nothing + this.wine.regedit().open(lunaReg); } - install(container) { + static install(container) { var wine = new Wine(); + var wizard = SetupWizard(InstallationType.VERBS, "luna", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "luna", java.util.Optional.empty()); wine.wizard(wizard); - wine.luna(); + + new Luna(wine).go(); + wizard.close(); } } + +module.default = Luna; diff --git a/Engines/Wine/Verbs/mfc42/script.js b/Engines/Wine/Verbs/mfc42/script.js index 920cde2776..ade268ae13 100644 --- a/Engines/Wine/Verbs/mfc42/script.js +++ b/Engines/Wine/Verbs/mfc42/script.js @@ -1,60 +1,63 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -const {CabExtract} = include("utils.functions.filesystem.extract"); -const {remove} = include("utils.functions.filesystem.files"); +const { CabExtract } = include("utils.functions.filesystem.extract"); +const { remove } = include("utils.functions.filesystem.files"); + +const Optional = Java.type("java.util.Optional"); include("engines.wine.plugins.override_dll"); /** * Verb to install mfc42.dll and mfc42u.dll - * - * @returns {Wine} Wine object */ -Wine.prototype.mfc42 = function () { - var setupFile = new Resource() - .wizard(this.wizard()) - .url("http://download.microsoft.com/download/vc60pro/Update/2/W9XNT4/EN-US/VC6RedistSetup_deu.exe") - .checksum("a8c4dd33e281c166488846a10edf97ff0ce37044") - .name("VC6RedistSetup_deu.exe") - .get(); - - remove(this.system32directory() + "/mfc42.dll"); - remove(this.system32directory() + "/mfc42u.dll"); - - new CabExtract() - .archive(setupFile) - .wizard(this.wizard()) - .to(this.system32directory()) - .extract(); - - new CabExtract() - .archive(this.system32directory() + "/vcredist.exe") - .wizard(this.wizard()) - .to(this.system32directory()) - .extract(['-F', 'mfc42*.dll']); - - this.overrideDLL() - .set("native, builtin", ["mfc42", "mfc42u"]) - .do(); - - return this; -}; +class Mfc42 { + constructor(wine) { + this.wine = wine; + } -/** - * Verb to install mfc42.dll and mfc42u.dll - */ -// eslint-disable-next-line no-unused-vars -module.default = class Mfc42Verb { - constructor() { - // do nothing + go() { + const wizard = this.wine.wizard(); + const system32directory = this.wine.system32directory(); + + const setupFile = new Resource() + .wizard(wizard) + .url("http://download.microsoft.com/download/vc60pro/Update/2/W9XNT4/EN-US/VC6RedistSetup_deu.exe") + .checksum("a8c4dd33e281c166488846a10edf97ff0ce37044") + .name("VC6RedistSetup_deu.exe") + .get(); + + remove(`${system32directory}/mfc42.dll`); + remove(`${system32directory}/mfc42u.dll`); + + new CabExtract() + .wizard(wizard) + .archive(setupFile) + .to(system32directory) + .extract(); + + new CabExtract() + .wizard(wizard) + .archive(`${system32directory}/vcredist.exe`) + .to(system32directory) + .extract(["-F", "mfc42*.dll"]); + + this.wine + .overrideDLL() + .set("native, builtin", ["mfc42", "mfc42u"]) + .do(); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "mfc42", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "mfc42", java.util.Optional.empty()); wine.wizard(wizard); - wine.mfc42(); + + new Mfc42(wine).go(); + wizard.close(); } } + +module.default = Mfc42; diff --git a/Engines/Wine/Verbs/msls31/script.js b/Engines/Wine/Verbs/msls31/script.js index b8ee2f7ec6..7d2a20372e 100644 --- a/Engines/Wine/Verbs/msls31/script.js +++ b/Engines/Wine/Verbs/msls31/script.js @@ -1,47 +1,49 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -const {CabExtract} = include("utils.functions.filesystem.extract"); -const {remove} = include("utils.functions.filesystem.files"); +const { CabExtract } = include("utils.functions.filesystem.extract"); +const { remove } = include("utils.functions.filesystem.files"); + +const Optional = Java.type("java.util.Optional"); /** * Verb to install msls31.dll - * - * @returns {Wine} Wine object */ -Wine.prototype.msls31 = function () { - var setupFile = new Resource() - .wizard(this.wizard()) - .url("ftp://ftp.hp.com/pub/softlib/software/msi/InstMsiW.exe") - .checksum("4fc3bf0dc96b5cf5ab26430fac1c33c5c50bd142") - .name("InstMsiW.exe") - .get(); +class Msls31 { + constructor(wine) { + this.wine = wine; + } - remove(this.system32directory() + "/msls31.dll"); + go() { + const wizard = this.wine.wizard(); + const system32directory = this.wine.system32directory(); - new CabExtract() - .archive(setupFile) - .wizard(this.wizard()) - .to(this.system32directory()) - .extract(["-F", "msls31.dll"]); + const setupFile = new Resource() + .wizard(wizard) + .url("ftp://ftp.hp.com/pub/softlib/software/msi/InstMsiW.exe") + .checksum("4fc3bf0dc96b5cf5ab26430fac1c33c5c50bd142") + .name("InstMsiW.exe") + .get(); - return this; -}; + remove(`${system32directory}/msls31.dll`); -/** - * Verb to install msls31.dll - */ -// eslint-disable-next-line no-unused-vars -module.default = class Msls31Verb { - constructor() { - // do nothing + new CabExtract() + .wizard(wizard) + .archive(setupFile) + .to(system32directory) + .extract(["-F", "msls31.dll"]); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "msls31", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "msls31", java.util.Optional.empty()); wine.wizard(wizard); - wine.msls31(); + + new Msls31(wine).go(); + wizard.close(); } } + +module.default = Msls31; diff --git a/Engines/Wine/Verbs/mspatcha/script.js b/Engines/Wine/Verbs/mspatcha/script.js index 2f0b56389b..3bbcc45946 100644 --- a/Engines/Wine/Verbs/mspatcha/script.js +++ b/Engines/Wine/Verbs/mspatcha/script.js @@ -1,62 +1,67 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -const {CabExtract} = include("utils.functions.filesystem.extract"); -const {remove} = include("utils.functions.filesystem.files"); +const { CabExtract } = include("utils.functions.filesystem.extract"); +const { remove } = include("utils.functions.filesystem.files"); + +const Optional = Java.type("java.util.Optional"); include("engines.wine.plugins.override_dll"); /** * Verb to install mspatcha - * - * @returns {Wine} Wine object */ -Wine.prototype.mspatcha = function () { - //Inspired from winetricks mspatcha, but with a link Phoenicis can understand - var setupFile = new Resource() - .wizard(this.wizard()) - .url("https://ftp.gnome.org/mirror/archive/ftp.sunet.se/pub/security/vendor/microsoft/win2000/Service_Packs/usa/W2KSP4_EN.EXE") - .checksum("fadea6d94a014b039839fecc6e6a11c20afa4fa8") - .name("W2ksp4_EN.exe") - .get(); - - remove(this.system32directory() + "/mspatcha.dll"); - - new CabExtract() - .archive(setupFile) - .wizard(this.wizard()) - .to(this.system32directory()) - .extract(); - - new CabExtract() - .archive(this.system32directory() + "/i386/mspatcha.dl_") - .wizard(this.wizard()) - .to(this.system32directory()) - .extract(); - - remove(this.system32directory() + "/i386/"); - - this.overrideDLL() - .set("native, builtin", ["mspatcha"]) - .do(); - - return this; -}; +class Mspatcha { + constructor(wine) { + this.wine = wine; + } -/** - * Verb to install mspatcha - */ -// eslint-disable-next-line no-unused-vars -module.default = class MspatchaVerb { - constructor() { - // do nothing + go() { + const wizard = this.wine.wizard(); + const system32directory = this.wine.system32directory(); + + //Inspired from winetricks mspatcha, but with a link Phoenicis can understand + const setupFile = new Resource() + .wizard(wizard) + .url( + "https://ftp.gnome.org/mirror/archive/ftp.sunet.se/pub/security/vendor/microsoft/win2000/Service_Packs/usa/W2KSP4_EN.EXE" + ) + .checksum("fadea6d94a014b039839fecc6e6a11c20afa4fa8") + .name("W2ksp4_EN.exe") + .get(); + + remove(`${system32directory}/mspatcha.dll`); + + new CabExtract() + .wizard(wizard) + .archive(setupFile) + .to(system32directory) + .extract(); + + new CabExtract() + .wizard(wizard) + .archive(`${system32directory}/i386/mspatcha.dl_`) + .to(system32directory) + .extract(); + + remove(`${system32directory}/i386/`); + + this.wine + .overrideDLL() + .set("native, builtin", ["mspatcha"]) + .do(); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "mspatcha", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "mspatcha", java.util.Optional.empty()); wine.wizard(wizard); - wine.mspatcha(); + + new Mspatcha(wine).go(); + wizard.close(); } } + +module.default = Mspatcha; diff --git a/Engines/Wine/Verbs/msxml3/script.js b/Engines/Wine/Verbs/msxml3/script.js index 03bc2c1d5e..25c2f2c91c 100644 --- a/Engines/Wine/Verbs/msxml3/script.js +++ b/Engines/Wine/Verbs/msxml3/script.js @@ -1,49 +1,53 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -const {remove} = include("utils.functions.filesystem.files"); +const { remove } = include("utils.functions.filesystem.files"); + +const Optional = Java.type("java.util.Optional"); include("engines.wine.plugins.override_dll"); /** * Verb to install msxml3 - * - * @returns {Wine} Wine object */ -Wine.prototype.msxml3 = function () { - var setupFile32 = new Resource() - .wizard(this.wizard()) - .url("https://media.codeweavers.com/pub/other/msxml3.msi") - .checksum("d4c2178dfb807e1a0267fce0fd06b8d51106d913") - .name("msxml3.msi") - .get(); +class Msxml3 { + constructor(wine) { + this.wine = wine; + } - remove(this.system32directory() + "/msxml3.dll"); + go() { + const wizard = this.wine.wizard(); + const system32directory = this.wine.system32directory(); - this.overrideDLL() - .set("native", ["msxml3"]) - .do(); + const setupFile32 = new Resource() + .wizard(wizard) + .url("https://media.codeweavers.com/pub/other/msxml3.msi") + .checksum("d4c2178dfb807e1a0267fce0fd06b8d51106d913") + .name("msxml3.msi") + .get(); - this.wizard().wait(tr("Please wait while {0} is installed...", "msxml3")); - this.run(setupFile32, ["/q:a", "/c:msxml3.msi /q"], null, false, true); + remove(`${system32directory}/msxml3.dll`); - return this; -}; + this.wine + .overrideDLL() + .set("native", ["msxml3"]) + .do(); -/** - * Verb to install msxml3 - */ -// eslint-disable-next-line no-unused-vars -module.default = class Msxml3Verb { - constructor() { - // do nothing + wizard.wait(tr("Please wait while {0} is installed...", "msxml3")); + + this.wine.run(setupFile32, ["/q:a", "/c:msxml3.msi /q"], null, false, true); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "msxml3", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "msxml3", java.util.Optional.empty()); wine.wizard(wizard); - wine.msxml3(); + + new Msxml3(wine).go(); + wizard.close(); } } + +module.default = Msxml3; diff --git a/Engines/Wine/Verbs/msxml6/script.js b/Engines/Wine/Verbs/msxml6/script.js index c5610ff10c..c5f4c7acc8 100644 --- a/Engines/Wine/Verbs/msxml6/script.js +++ b/Engines/Wine/Verbs/msxml6/script.js @@ -1,64 +1,78 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -const {remove} = include("utils.functions.filesystem.files"); +const { remove, fileExists } = include("utils.functions.filesystem.files"); + +const Optional = Java.type("java.util.Optional"); include("engines.wine.plugins.override_dll"); /** * Verb to install msxml6 - * - * @returns {Wine} Wine object */ -Wine.prototype.msxml6 = function () { - if (this.architecture() == "amd64") { - var setupFile64 = new Resource() - .wizard(this.wizard()) - .url("https://download.microsoft.com/download/e/a/f/eafb8ee7-667d-4e30-bb39-4694b5b3006f/msxml6_x64.msi") - .checksum("ca0c0814a9c7024583edb997296aad7cb0a3cbf7") - .name("msxml6_x64.msi") - .get(); - } else { - var setupFile32 = new Resource() - .wizard(this.wizard()) - .url("https://download.microsoft.com/download/e/a/f/eafb8ee7-667d-4e30-bb39-4694b5b3006f/msxml6_x86.msi") - .checksum("5125220e985b33c946bbf9f60e2b222c7570bfa2") - .name("msxml6_x86.msi") - .get(); +class Msxml6 { + constructor(wine) { + this.wine = wine; } - remove(this.system32directory() + "/msxml6.dll"); + go() { + const wizard = this.wine.wizard(); + const system32directory = this.wine.system32directory(); - this.overrideDLL() - .set("native,builtin", ["msxml6"]) - .do(); + if(fileExists(`${system32directory}/msxml6.dll`)) { + remove(`${system32directory}/msxml6.dll`); + } - if (this.architecture() == "amd64") { - remove(this.system64directory() + "/msxml6.dll") - this.wizard().wait(tr("Please wait while {0} is installed...", "msxml6")); - this.run(setupFile64, ["/q:a", "/c:msxml6_x64.msi /q"], null, false, true); - } else { - this.wizard().wait(tr("Please wait while {0} is installed...", "msxml6")); - this.run(setupFile32, ["/q:a", "/c:msxml6_x86.msi /q"], null, false, true); - } + this.wine + .overrideDLL() + .set("native,builtin", ["msxml6"]) + .do(); - return this; -}; + if (this.wine.architecture() == "amd64") { + const system64directory = this.wine.system64directory(); -/** - * Verb to install msxml6 - */ -// eslint-disable-next-line no-unused-vars -module.default = class Msxml6Verb { - constructor() { - // do nothing + if(fileExists(`${system64directory}/msxml6.dll`)) { + remove(`${system64directory}/msxml6.dll`); + } + + const setupFile64 = new Resource() + .wizard(wizard) + .url( + "https://download.microsoft.com/download/e/a/f/eafb8ee7-667d-4e30-bb39-4694b5b3006f/msxml6_x64.msi" + ) + .checksum("ca0c0814a9c7024583edb997296aad7cb0a3cbf7") + .name("msxml6_x64.msi") + .get(); + + wizard.wait(tr("Please wait while {0} is installed...", "msxml6")); + + this.wine.run(setupFile64, ["/q:a", "/c:msxml6_x64.msi /q"], null, false, true); + } else { + const setupFile32 = new Resource() + .wizard(wizard) + .url( + "https://download.microsoft.com/download/e/a/f/eafb8ee7-667d-4e30-bb39-4694b5b3006f/msxml6_x86.msi" + ) + .checksum("5125220e985b33c946bbf9f60e2b222c7570bfa2") + .name("msxml6_x86.msi") + .get(); + + wizard.wait(tr("Please wait while {0} is installed...", "msxml6")); + + this.wine.run(setupFile32, ["/q:a", "/c:msxml6_x86.msi /q"], null, false, true); + } } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "msxml6", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "msxml6", java.util.Optional.empty()); wine.wizard(wizard); - wine.msxml6(); + + new Msxml6(wine).go(); + wizard.close(); } } + +module.default = Msxml6; diff --git a/Engines/Wine/Verbs/quartz/script.js b/Engines/Wine/Verbs/quartz/script.js index bfee727169..cd66d10ffd 100644 --- a/Engines/Wine/Verbs/quartz/script.js +++ b/Engines/Wine/Verbs/quartz/script.js @@ -1,62 +1,68 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -const {CabExtract} = include("utils.functions.filesystem.extract"); -const {remove} = include("utils.functions.filesystem.files"); +const { CabExtract } = include("utils.functions.filesystem.extract"); +const { remove } = include("utils.functions.filesystem.files"); + +const Optional = Java.type("java.util.Optional"); include("engines.wine.plugins.override_dll"); include("engines.wine.plugins.regsvr32"); /** * Verb to install quartz - * - * @returns {Wine} Wine object */ -Wine.prototype.quartz = function () { - var setupFile = new Resource() - .wizard(this.wizard()) - .url("https://download.microsoft.com/download/E/E/1/EE17FF74-6C45-4575-9CF4-7FC2597ACD18/directx_feb2010_redist.exe") - .checksum("a97c820915dc20929e84b49646ec275760012a42") - .name("directx_feb2010_redist.exe") - .get(); - - new CabExtract() - .archive(setupFile) - .wizard(this.wizard()) - .to(this.prefixDirectory() + "/TMP/") - .extract(["-L", "-F", "dxnt.cab"]); - - new CabExtract() - .archive(this.prefixDirectory() + "/TMP/dxnt.cab") - .wizard(this.wizard()) - .to(this.system32directory()) - .extract(["-L", "-F", "quartz.dll"]); - - remove(this.prefixDirectory() + "/TMP/"); - - this.regsvr32().install("quartz.dll"); - - this.overrideDLL() - .set("native, builtin", ["quartz"]) - .do() - - return this; -} +class Quartz { + constructor(wine) { + this.wine = wine; + } -/** - * Verb to install quartz - */ -// eslint-disable-next-line no-unused-vars -module.default = class QuartzVerb { - constructor() { - // do nothing + go() { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + const system32directory = this.wine.system32directory(); + + var setupFile = new Resource() + .wizard(wizard) + .url( + "https://download.microsoft.com/download/E/E/1/EE17FF74-6C45-4575-9CF4-7FC2597ACD18/directx_feb2010_redist.exe" + ) + .checksum("a97c820915dc20929e84b49646ec275760012a42") + .name("directx_feb2010_redist.exe") + .get(); + + new CabExtract() + .wizard(wizard) + .archive(setupFile) + .to(`${prefixDirectory}/TMP/`) + .extract(["-L", "-F", "dxnt.cab"]); + + new CabExtract() + .wizard(wizard) + .archive(`${prefixDirectory}/TMP/dxnt.cab`) + .to(system32directory) + .extract(["-L", "-F", "quartz.dll"]); + + remove(`${prefixDirectory}/TMP/`); + + this.wine.regsvr32().install("quartz.dll"); + + this.wine + .overrideDLL() + .set("native, builtin", ["quartz"]) + .do(); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "quartz", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "quartz", java.util.Optional.empty()); wine.wizard(wizard); + wine.quartz(); + wizard.close(); } } + +module.default = Quartz; diff --git a/Engines/Wine/Verbs/sandbox/script.js b/Engines/Wine/Verbs/sandbox/script.js index d5a5decae0..fd889a68d0 100644 --- a/Engines/Wine/Verbs/sandbox/script.js +++ b/Engines/Wine/Verbs/sandbox/script.js @@ -1,39 +1,42 @@ const Wine = include("engines.wine.engine.object"); -const {remove, lns} = include("utils.functions.filesystem.files"); +const { remove, lns } = include("utils.functions.filesystem.files"); + +const propertyReader = Bean("propertyReader"); + +const Optional = Java.type("java.util.Optional"); /** * Verb to install a sandbox - * - * @returns {Wine} Wine object */ -Wine.prototype.sandbox = function () { - var tmp = Bean("propertyReader").getProperty("application.user.tmp"); - var resources = Bean("propertyReader").getProperty("application.user.resources"); +class Sandbox { + constructor(wine) { + this.wine = wine; + } - remove(this.prefixDirectory() + "/dosdevices/z:"); - remove(this.prefixDirectory() + "/dosdevices/y:"); + go() { + const prefixDirectory = this.wine.prefixDirectory(); - lns(tmp, this.prefixDirectory() + "/dosdevices/z:"); - lns(resources, this.prefixDirectory() + "/dosdevices/y:"); + const tmp = propertyReader.getProperty("application.user.tmp"); + const resources = propertyReader.getProperty("application.user.resources"); - return this; -}; + remove(`${prefixDirectory}/dosdevices/z:`); + remove(`${prefixDirectory}/dosdevices/y:`); -/** - * Verb to install a sandbox - */ -// eslint-disable-next-line no-unused-vars -module.default = class SandboxVerb { - constructor() { - // do nothing + lns(tmp, `${prefixDirectory}/dosdevices/z:`); + lns(resources, `${prefixDirectory}/dosdevices/y:`); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "sandbox", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "sandbox", java.util.Optional.empty()); wine.wizard(wizard); - wine.sandbox(); + + new Sandbox(wine).go(); + wizard.close(); } } + +module.default = Sandbox; diff --git a/Engines/Wine/Verbs/secur32/script.js b/Engines/Wine/Verbs/secur32/script.js index 6ec67d39ce..cf4f58ce02 100644 --- a/Engines/Wine/Verbs/secur32/script.js +++ b/Engines/Wine/Verbs/secur32/script.js @@ -1,74 +1,99 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -const {CabExtract} = include("utils.functions.filesystem.extract"); -const {cp, remove} = include("utils.functions.filesystem.files"); +const { CabExtract } = include("utils.functions.filesystem.extract"); +const { cp, remove } = include("utils.functions.filesystem.files"); + +const Optional = Java.type("java.util.Optional"); include("engines.wine.plugins.override_dll"); /** * Verb to install secur32 - * - * @returns {Wine} Wine object */ -Wine.prototype.secur32 = function () { - var setupFilex86 = new Resource() - .wizard(this.wizard()) - .url("https://download.microsoft.com/download/0/A/F/0AFB5316-3062-494A-AB78-7FB0D4461357/windows6.1-KB976932-X86.exe") - .checksum("c3516bc5c9e69fee6d9ac4f981f5b95977a8a2fa") - .name("windows6.1-KB976932-X86.exe") - .get(); - - new CabExtract() - .archive(setupFilex86) - .wizard(this.wizard()) - .to(this.prefixDirectory() + "/TMP/") - .extract(["-L", "-F", "x86_microsoft-windows-lsa_31bf3856ad364e35_6.1.7601.17514_none_a851f4adbb0d5141/secur32.dll"]); - - cp(this.prefixDirectory() + "/TMP/" + "x86_microsoft-windows-lsa_31bf3856ad364e35_6.1.7601.17514_none_a851f4adbb0d5141/secur32.dll", this.system32directory()); - - remove(this.prefixDirectory() + "/TMP/"); - - if (this.architecture() == "amd64") { - var setupFilex64 = new Resource() - .wizard(this.wizard()) - .url("https://download.microsoft.com/download/0/A/F/0AFB5316-3062-494A-AB78-7FB0D4461357/windows6.1-KB976932-X64.exe") - .checksum("74865ef2562006e51d7f9333b4a8d45b7a749dab") - .name("windows6.1-KB976932-X64.exe") +class Secur32 { + constructor(wine) { + this.wine = wine; + } + + go() { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + const system32directory = this.wine.system32directory(); + const architecture = this.wine.architecture(); + + const setupFilex86 = new Resource() + .wizard(wizard) + .url( + "https://download.microsoft.com/download/0/A/F/0AFB5316-3062-494A-AB78-7FB0D4461357/windows6.1-KB976932-X86.exe" + ) + .checksum("c3516bc5c9e69fee6d9ac4f981f5b95977a8a2fa") + .name("windows6.1-KB976932-X86.exe") .get(); new CabExtract() - .archive(setupFilex64) - .wizard(this.wizard()) - .to(this.prefixDirectory() + "/TMP/") - .extract(["-L", "-F", "amd64_microsoft-windows-lsa_31bf3856ad364e35_6.1.7601.17514_none_04709031736ac277/secur32.dll"]); + .wizard(wizard) + .archive(setupFilex86) + .to(`${prefixDirectory}/TMP/`) + .extract([ + "-L", + "-F", + "x86_microsoft-windows-lsa_31bf3856ad364e35_6.1.7601.17514_none_a851f4adbb0d5141/secur32.dll" + ]); - cp(this.prefixDirectory() + "/TMP/" + "amd64_microsoft-windows-lsa_31bf3856ad364e35_6.1.7601.17514_none_04709031736ac277/secur32.dll", this.system64directory()); + cp( + `${prefixDirectory}/TMP/x86_microsoft-windows-lsa_31bf3856ad364e35_6.1.7601.17514_none_a851f4adbb0d5141/secur32.dll`, + system32directory + ); - remove(this.prefixDirectory() + "/TMP/"); - } + remove(`${prefixDirectory}/TMP/`); - this.overrideDLL() - .set("native, builtin", ["secur32"]) - .do() + if (architecture == "amd64") { + const system64directory = this.wine.system64directory(); - return this; -} + const setupFilex64 = new Resource() + .wizard(wizard) + .url( + "https://download.microsoft.com/download/0/A/F/0AFB5316-3062-494A-AB78-7FB0D4461357/windows6.1-KB976932-X64.exe" + ) + .checksum("74865ef2562006e51d7f9333b4a8d45b7a749dab") + .name("windows6.1-KB976932-X64.exe") + .get(); -/** - * Verb to install secur32 - */ -// eslint-disable-next-line no-unused-vars -module.default = class Secur32Verb { - constructor() { - // do nothing + new CabExtract() + .wizard(wizard) + .archive(setupFilex64) + .to(`${prefixDirectory}/TMP/`) + .extract([ + "-L", + "-F", + "amd64_microsoft-windows-lsa_31bf3856ad364e35_6.1.7601.17514_none_04709031736ac277/secur32.dll" + ]); + + cp( + `${prefixDirectory}/TMP/amd64_microsoft-windows-lsa_31bf3856ad364e35_6.1.7601.17514_none_04709031736ac277/secur32.dll`, + system64directory + ); + + remove(`${prefixDirectory}/TMP/`); + } + + this.wine + .overrideDLL() + .set("native, builtin", ["secur32"]) + .do(); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "secur32", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "secur32", java.util.Optional.empty()); wine.wizard(wizard); - wine.secur32(); + + new Secur32(wine).go(); + wizard.close(); } } + +module.default = Secur32; diff --git a/Engines/Wine/Verbs/vcrun2003/script.js b/Engines/Wine/Verbs/vcrun2003/script.js index a1b75af41d..5129ba9bea 100644 --- a/Engines/Wine/Verbs/vcrun2003/script.js +++ b/Engines/Wine/Verbs/vcrun2003/script.js @@ -2,51 +2,48 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); const { cp } = include("utils.functions.filesystem.files"); -include("engines.wine.verbs.luna"); +const Optional = Java.type("java.util.Optional"); /** * Verb to install vcrun2003 - * - * @returns {Wine} Wine object */ -Wine.prototype.vcrun2003 = function () { - const setupFile = new Resource() - .wizard(this.wizard()) - .url("https://sourceforge.net/projects/bzflag/files/bzedit%20win32/1.6.5/BZEditW32_1.6.5.exe") - .checksum("bdd1b32c4202fd77e6513fd507c8236888b09121") - .name("BZEditW32_1.6.5.exe") - .get(); +class Vcrun2003 { + constructor(wine) { + this.wine = wine; + } - this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2003 Redistributable (x86)")); - this.run(setupFile, "/S", null, false, true); + go() { + const wizard = this.wine.wizard(); + const programFiles = this.wine.programFiles(); + const system32directory = this.wine.system32directory(); - const dlls = ["msvcp71", "mfc71"]; + const setupFile = new Resource() + .wizard(wizard) + .url("https://sourceforge.net/projects/bzflag/files/bzedit%20win32/1.6.5/BZEditW32_1.6.5.exe") + .checksum("bdd1b32c4202fd77e6513fd507c8236888b09121") + .name("BZEditW32_1.6.5.exe") + .get(); - dlls.forEach(dll => { - cp(this.programFiles() + "/BZEdit1.6.5/" + dll, this.system32directory()); - }); + wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2003 Redistributable (x86)")); - return this; -}; + this.wine.run(setupFile, "/S", null, false, true); -/** - * Verb to install vcrun2003 - */ -module.default = class Vcrun2003Verb { - constructor() { - // do nothing + ["msvcp71", "mfc71"].forEach(dll => { + cp(`${programFiles}/BZEdit1.6.5/${dll}`, system32directory); + }); } - install(container) { + static install(container) { const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "vcrun2003", Optional.empty()); wine.prefix(container); - - const wizard = SetupWizard(InstallationType.VERBS, "vcrun2003", java.util.Optional.empty()); - wine.wizard(wizard); - wine.vcrun2003(); + + new Vcrun2003(wine).go(); wizard.close(); } -}; +} + +module.default = Vcrun2003; diff --git a/Engines/Wine/Verbs/vcrun2005/script.js b/Engines/Wine/Verbs/vcrun2005/script.js index 12c8982243..09f296ff93 100644 --- a/Engines/Wine/Verbs/vcrun2005/script.js +++ b/Engines/Wine/Verbs/vcrun2005/script.js @@ -1,53 +1,49 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -include("engines.wine.verbs.luna"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.override_dll"); /** * Verb to install vcrun2005 - * @returns {Wine} Wine object */ -Wine.prototype.vcrun2005 = function () { - var setupFile = new Resource() - .wizard(this.wizard()) - .url("http://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE") - .checksum("b8fab0bb7f62a24ddfe77b19cd9a1451abd7b847") - .name("vcredist_x86.EXE") - .get(); - - this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2005 Redistributable (x86)")); - this.run(setupFile, "/q", null, false, true); - - var dlls = [ - "atl80", - "msvcm80", - "msvcp80", - "msvcr80", - "vcomp" - ]; - this.overrideDLL() - .set("native, builtin", dlls) - .do(); - - return this; -}; +class Vcrun2005 { + constructor(wine) { + this.wine = wine; + } -/** - * Verb to install vcrun2005 - */ -// eslint-disable-next-line no-unused-vars -module.default = class Vcrun2005Verb { - constructor() { - // do nothing + go() { + const wizard = this.wine.wizard(); + + const setupFile = new Resource() + .wizard(wizard) + .url("http://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE") + .checksum("b8fab0bb7f62a24ddfe77b19cd9a1451abd7b847") + .name("vcredist_x86.EXE") + .get(); + + wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2005 Redistributable (x86)")); + + this.wine.run(setupFile, "/q", null, false, true); + + this.wine + .overrideDLL() + .set("native, builtin", ["atl80", "msvcm80", "msvcp80", "msvcr80", "vcomp"]) + .do(); } install(container) { - var wine = new Wine(); + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "vcrun2005", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "vcrun2005", java.util.Optional.empty()); wine.wizard(wizard); - wine.vcrun2005(); + + new Vcrun2005(wine).go(); + wizard.close(); } } + +module.default = Vcrun2005; diff --git a/Engines/Wine/Verbs/vcrun2008/script.js b/Engines/Wine/Verbs/vcrun2008/script.js index d51d96f26f..c7f7931bec 100644 --- a/Engines/Wine/Verbs/vcrun2008/script.js +++ b/Engines/Wine/Verbs/vcrun2008/script.js @@ -1,66 +1,64 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -include("engines.wine.verbs.luna"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.override_dll"); /** * Verb to install vcrun2008 - * - * @returns {Wine} Wine object */ -Wine.prototype.vcrun2008 = function () { - var setupFile32 = new Resource() - .wizard(this.wizard()) - .url("http://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe") - .checksum("470640aa4bb7db8e69196b5edb0010933569e98d") - .name("vcredist_x86.exe") - .get(); - - this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2008 Redistributable (x86)")); - this.run(setupFile32, "/q", null, false, true); - - if (this.architecture() == "amd64") { - var setupFile64 = new Resource() - .wizard(this.wizard()) - .url("https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe") - .checksum("a7c83077b8a28d409e36316d2d7321fa0ccdb7e8") - .name("vcredist_x64.exe") +class Vcrun2008 { + constructor(wine) { + this.wine = wine; + } + + go() { + const wizard = this.wine.wizard(); + + const setupFile32 = new Resource() + .wizard(wizard) + .url("http://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe") + .checksum("470640aa4bb7db8e69196b5edb0010933569e98d") + .name("vcredist_x86.exe") .get(); - this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2008 Redistributable (x64)")); - this.run(setupFile64, "/q", null, false, true); - } + wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2008 Redistributable (x86)")); - var dlls = [ - "atl90", - "msvcm90", - "msvcp90", - "msvcr90", - "vcomp90", - ]; - this.overrideDLL() - .set("native, builtin", dlls) - .do(); + this.wine.run(setupFile32, "/q", null, false, true); - return this; -}; + if (this.wine.architecture() == "amd64") { + const setupFile64 = new Resource() + .wizard(wizard) + .url( + "https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe" + ) + .checksum("a7c83077b8a28d409e36316d2d7321fa0ccdb7e8") + .name("vcredist_x64.exe") + .get(); -/** - * Verb to install vcrun2008 - */ -// eslint-disable-next-line no-unused-vars -module.default = class Vcrun2008Verb { - constructor() { - // do nothing + wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2008 Redistributable (x64)")); + + this.wine.run(setupFile64, "/q", null, false, true); + } + + this.wine + .overrideDLL() + .set("native, builtin", ["atl90", "msvcm90", "msvcp90", "msvcr90", "vcomp90"]) + .do(); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "vcrun2008", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "vcrun2008", java.util.Optional.empty()); wine.wizard(wizard); - wine.vcrun2008(); + + new Vcrun2008(wine).go(); + wizard.close(); } } + +module.default = Vcrun2008; diff --git a/Engines/Wine/Verbs/vcrun2010/script.js b/Engines/Wine/Verbs/vcrun2010/script.js index 0f2bbe649d..404485dce7 100644 --- a/Engines/Wine/Verbs/vcrun2010/script.js +++ b/Engines/Wine/Verbs/vcrun2010/script.js @@ -1,65 +1,64 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -include("engines.wine.verbs.luna"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.override_dll"); /** * Verb to install vcrun2010 - * - * @returns {Wine} Wine object */ -Wine.prototype.vcrun2010 = function () { - var setupFile32 = new Resource() - .wizard(this.wizard()) - .url("http://download.microsoft.com/download/5/B/C/5BC5DBB3-652D-4DCE-B14A-475AB85EEF6E/vcredist_x86.exe") - .checksum("372d9c1670343d3fb252209ba210d4dc4d67d358") - .name("vcredist_x86.exe") - .get(); - - this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2010 Redistributable (x86)")); - this.run(setupFile32, "/q", null, false, true); - - if (this.architecture() == "amd64") { - var setupFile64 = new Resource() - .wizard(this.wizard()) - .url("http://download.microsoft.com/download/A/8/0/A80747C3-41BD-45DF-B505-E9710D2744E0/vcredist_x64.exe") - .checksum("027d0c2749ec5eb21b031f46aee14c905206f482") - .name("vcredist_x64.exe") +class Vcrun2010 { + constructor(wine) { + this.wine = wine; + } + + go() { + const wizard = this.wine.wizard(); + + const setupFile32 = new Resource() + .wizard(wizard) + .url("http://download.microsoft.com/download/5/B/C/5BC5DBB3-652D-4DCE-B14A-475AB85EEF6E/vcredist_x86.exe") + .checksum("372d9c1670343d3fb252209ba210d4dc4d67d358") + .name("vcredist_x86.exe") .get(); - this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2010 Redistributable (x64)")); - this.run(setupFile64, "/q", null, false, true); - } + wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2010 Redistributable (x86)")); - var dlls = [ - "atl100", - "msvcp100", - "msvcr100", - "vcomp100", - ]; - this.overrideDLL() - .set("native, builtin", dlls) - .do(); + this.wine.run(setupFile32, "/q", null, false, true); - return this; -}; + if (this.wine.architecture() == "amd64") { + const setupFile64 = new Resource() + .wizard(wizard) + .url( + "http://download.microsoft.com/download/A/8/0/A80747C3-41BD-45DF-B505-E9710D2744E0/vcredist_x64.exe" + ) + .checksum("027d0c2749ec5eb21b031f46aee14c905206f482") + .name("vcredist_x64.exe") + .get(); -/** - * Verb to install vcrun2010 - */ -// eslint-disable-next-line no-unused-vars -module.default = class Vcrun2010Verb { - constructor() { - // do nothing + wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2010 Redistributable (x64)")); + + this.wine.run(setupFile64, "/q", null, false, true); + } + + this.wine + .overrideDLL() + .set("native, builtin", ["atl100", "msvcp100", "msvcr100", "vcomp100"]) + .do(); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "vcrun2010", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "vcrun2010", java.util.Optional.empty()); wine.wizard(wizard); - wine.vcrun2010(); + + new Vcrun2010(wine).go(); + wizard.close(); } } + +module.default = Vcrun2010; diff --git a/Engines/Wine/Verbs/vcrun2012/script.js b/Engines/Wine/Verbs/vcrun2012/script.js index 8c5f990d09..2254a8a11e 100644 --- a/Engines/Wine/Verbs/vcrun2012/script.js +++ b/Engines/Wine/Verbs/vcrun2012/script.js @@ -1,65 +1,66 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -include("engines.wine.verbs.luna"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.override_dll"); /** * Verb to install vcrun2012 - * - * @returns {Wine} Wine object */ -Wine.prototype.vcrun2012 = function () { - var setupFile32 = new Resource() - .wizard(this.wizard()) - .url("http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe") - .checksum("96b377a27ac5445328cbaae210fc4f0aaa750d3f") - .name("vcredist_x86.exe") - .get(); - - this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2012 Redistributable (x86)")); - this.run(setupFile32, "/q", null, false, true); - - if (this.architecture() == "amd64") { - var setupFile64 = new Resource() - .wizard(this.wizard()) - .url("http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe") - .checksum("1a5d93dddbc431ab27b1da711cd3370891542797") - .name("vcredist_x64") +class Vcrun2012 { + constructor(wine) { + this.wine = wine; + } + + go() { + const wizard = this.wine.wizard(); + + const setupFile32 = new Resource() + .wizard(wizard) + .url( + "http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe" + ) + .checksum("96b377a27ac5445328cbaae210fc4f0aaa750d3f") + .name("vcredist_x86.exe") .get(); - this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2012 Redistributable (x64)")); - this.run(setupFile64, "/q", null, false, true); - } + wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2012 Redistributable (x86)")); - var dlls = [ - "atl110", - "msvcp110", - "msvcr110", - "vcomp110" - ]; - this.overrideDLL() - .set("native, builtin", dlls) - .do(); + this.wine.run(setupFile32, "/q", null, false, true); - return this; -}; + if (this.wine.architecture() == "amd64") { + const setupFile64 = new Resource() + .wizard(wizard) + .url( + "http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe" + ) + .checksum("1a5d93dddbc431ab27b1da711cd3370891542797") + .name("vcredist_x64") + .get(); -/** - * Verb to install vcrun2012 - */ -// eslint-disable-next-line no-unused-vars -module.default = class Vcrun2012Verb { - constructor() { - // do nothing + wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2012 Redistributable (x64)")); + + this.wine.run(setupFile64, "/q", null, false, true); + } + + this.wine + .overrideDLL() + .set("native, builtin", ["atl110", "msvcp110", "msvcr110", "vcomp110"]) + .do(); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "vcrun2012", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "vcrun2012", java.util.Optional.empty()); wine.wizard(wizard); - wine.vcrun2012(); + + new Vcrun2012(wine).go(); + wizard.close(); } } + +module.default = Vcrun2012; diff --git a/Engines/Wine/Verbs/vcrun2013/script.js b/Engines/Wine/Verbs/vcrun2013/script.js index 7822e75c71..0e37806682 100644 --- a/Engines/Wine/Verbs/vcrun2013/script.js +++ b/Engines/Wine/Verbs/vcrun2013/script.js @@ -1,59 +1,64 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -include("engines.wine.verbs.luna"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.override_dll"); /** * Verb to install vcrun2013 - * - * @returns {Wine} Wine object */ -Wine.prototype.vcrun2013 = function () { - var setupFile32 = new Resource() - .wizard(this.wizard()) - .url("http://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe") - .checksum("df7f0a73bfa077e483e51bfb97f5e2eceedfb6a3") - .name("vcredist_x86.exe") - .get(); - - this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2013 Redistributable (x86)")); - this.run(setupFile32, "/q", null, false, true); - - if (this.architecture() == "amd64") { - var setupFile64 = new Resource() - .wizard(this.wizard()) - .url("http://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe") - .checksum("8bf41ba9eef02d30635a10433817dbb6886da5a2") - .name("vcredist_x64.exe") +class Vcrun2013 { + constructor(wine) { + this.wine = wine; + } + + go() { + const wizard = this.wine.wizard(); + + const setupFile32 = new Resource() + .wizard(wizard) + .url("http://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe") + .checksum("df7f0a73bfa077e483e51bfb97f5e2eceedfb6a3") + .name("vcredist_x86.exe") .get(); - this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2013 Redistributable (x64)")); - this.run(setupFile64, "/q", null, false, true); - } + wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2013 Redistributable (x86)")); - this.overrideDLL() - .set("native, builtin", ["atl120", "msvcp120", "msvcr120", "vcomp120"]) - .do(); + this.wine.run(setupFile32, "/q", null, false, true); - return this; -}; + if (this.wine.architecture() == "amd64") { + const setupFile64 = new Resource() + .wizard(wizard) + .url( + "http://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe" + ) + .checksum("8bf41ba9eef02d30635a10433817dbb6886da5a2") + .name("vcredist_x64.exe") + .get(); -/** - * Verb to install vcrun2013 - */ -// eslint-disable-next-line no-unused-vars -module.default = class Vcrun2013Verb { - constructor() { - // do nothing + wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2013 Redistributable (x64)")); + + this.wine.run(setupFile64, "/q", null, false, true); + } + + this.wine + .overrideDLL() + .set("native, builtin", ["atl120", "msvcp120", "msvcr120", "vcomp120"]) + .do(); } install(container) { - var wine = new Wine(); + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "vcrun2013", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "vcrun2013", java.util.Optional.empty()); wine.wizard(wizard); - wine.vcrun2013(); + + new Vcrun2013(wine).go(); + wizard.close(); } } + +module.default = Vcrun2013; diff --git a/Engines/Wine/Verbs/vcrun2015/script.js b/Engines/Wine/Verbs/vcrun2015/script.js index 3af7edef3a..25d0326026 100644 --- a/Engines/Wine/Verbs/vcrun2015/script.js +++ b/Engines/Wine/Verbs/vcrun2015/script.js @@ -1,75 +1,79 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -include("engines.wine.verbs.luna"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.override_dll"); /** * Verb to install vcrun2015 - * - * @returns {Wine} Wine object */ -Wine.prototype.vcrun2015 = function () { - var setupFile32 = new Resource() - .wizard(this.wizard()) - .url("https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe") - .checksum("bfb74e498c44d3a103ca3aa2831763fb417134d1") - .name("vc_redist.x86.exe") - .get(); - - this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2015 Redistributable (x86)")); - this.run(setupFile32, "/q", null, false, true); - - if (this.architecture() == "amd64") { - var setupFile64 = new Resource() - .wizard(this.wizard()) - .url("https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe") - .checksum("3155cb0f146b927fcc30647c1a904cd162548c8c") - .name("vc_redist.x64.exe") +class Vcrun2015 { + constructor(wine) { + this.wine = wine; + } + + go() { + const wizard = this.wine.wizard(); + + const setupFile32 = new Resource() + .wizard(wizard) + .url("https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe") + .checksum("bfb74e498c44d3a103ca3aa2831763fb417134d1") + .name("vc_redist.x86.exe") .get(); - this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2015 Redistributable (x64)")); - this.run(setupFile64, "/q", null, false, true); - } + wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2015 Redistributable (x86)")); - var dlls = [ - "api-ms-win-crt-conio-l1-1-0", - "api-ms-win-crt-heap-l1-1-0", - "api-ms-win-crt-locale-l1-1-0", - "api-ms-win-crt-math-l1-1-0", - "api-ms-win-crt-runtime-l1-1-0", - "api-ms-win-crt-stdio-l1-1-0", - "api-ms-win-crt-time-l1-1-0", - "atl140", - "concrt140", - "msvcp140", - "msvcr140", - "ucrtbase", - "vcomp140", - "vcruntime140" - ]; - this.overrideDLL() - .set("native, builtin", dlls) - .do(); - - return this; -}; + this.wine.run(setupFile32, "/q", null, false, true); -/** - * Verb to install vcrun2015 - */ -// eslint-disable-next-line no-unused-vars -module.default = class Vcrun2015Verb { - constructor() { - // do nothing + if (this.wine.architecture() == "amd64") { + const setupFile64 = new Resource() + .wizard(wizard) + .url( + "https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe" + ) + .checksum("3155cb0f146b927fcc30647c1a904cd162548c8c") + .name("vc_redist.x64.exe") + .get(); + + wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2015 Redistributable (x64)")); + + this.wine.run(setupFile64, "/q", null, false, true); + } + + this.wine + .overrideDLL() + .set("native, builtin", [ + "api-ms-win-crt-conio-l1-1-0", + "api-ms-win-crt-heap-l1-1-0", + "api-ms-win-crt-locale-l1-1-0", + "api-ms-win-crt-math-l1-1-0", + "api-ms-win-crt-runtime-l1-1-0", + "api-ms-win-crt-stdio-l1-1-0", + "api-ms-win-crt-time-l1-1-0", + "atl140", + "concrt140", + "msvcp140", + "msvcr140", + "ucrtbase", + "vcomp140", + "vcruntime140" + ]) + .do(); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "vcrun2015", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "vcrun2015", java.util.Optional.empty()); wine.wizard(wizard); - wine.vcrun2015(); + + new Vcrun2015(wine).go(); + wizard.close(); } } + +module.default = Vcrun2015; diff --git a/Engines/Wine/Verbs/vcrun2017/script.js b/Engines/Wine/Verbs/vcrun2017/script.js index 924cc63395..c1e5cfb6f1 100644 --- a/Engines/Wine/Verbs/vcrun2017/script.js +++ b/Engines/Wine/Verbs/vcrun2017/script.js @@ -1,75 +1,81 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -include("engines.wine.verbs.luna"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.override_dll"); /** * Verb to install vcrun2017 - * - * @returns {Wine} Wine object */ -Wine.prototype.vcrun2017 = function () { - var setupFile32 = new Resource() - .wizard(this.wizard()) - .url("https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe") - .checksum("370583c380c26064885289037380af7d8d5f4e81") - .name("vc_redist.x86.exe") - .get(); - - this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2017 Redistributable (x86)")); - this.run(setupFile32, "/q", null, false, true); - - if (this.architecture() == "amd64") { - var setupFile64 = new Resource() - .wizard(this.wizard()) - .url("https://download.visualstudio.microsoft.com/download/pr/11100230/15ccb3f02745c7b206ad10373cbca89b/VC_redist.x64.exe") - .checksum("bdb645ebaf3c91eceb1a143be6793ca57e6435c3") - .name("vc_redist.x64.exe") +class Vcrun2017 { + constructor(wine) { + this.wine = wine; + } + + go() { + const wizard = this.wine.wizard(); + + const setupFile32 = new Resource() + .wizard(wizard) + .url( + "https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe" + ) + .checksum("370583c380c26064885289037380af7d8d5f4e81") + .name("vc_redist.x86.exe") .get(); - this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2017 Redistributable (x64)")); - this.run(setupFile64, "/q", null, false, true); - } + wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2017 Redistributable (x86)")); - var dlls = [ - "api-ms-win-crt-conio-l1-1-0", - "api-ms-win-crt-heap-l1-1-0", - "api-ms-win-crt-locale-l1-1-0", - "api-ms-win-crt-math-l1-1-0", - "api-ms-win-crt-runtime-l1-1-0", - "api-ms-win-crt-stdio-l1-1-0", - "api-ms-win-crt-time-l1-1-0", - "atl140", - "concrt140", - "msvcp140", - "msvcr140", - "ucrtbase", - "vcomp140", - "vcruntime140" - ]; - this.overrideDLL() - .set("native, builtin", dlls) - .do(); - - return this; -}; + this.wine.run(setupFile32, "/q", null, false, true); -/** - * Verb to install vcrun2017 - */ -// eslint-disable-next-line no-unused-vars -module.default = class Vcrun2017Verb { - constructor() { - // do nothing + if (this.wine.architecture() == "amd64") { + const setupFile64 = new Resource() + .wizard(wizard) + .url( + "https://download.visualstudio.microsoft.com/download/pr/11100230/15ccb3f02745c7b206ad10373cbca89b/VC_redist.x64.exe" + ) + .checksum("bdb645ebaf3c91eceb1a143be6793ca57e6435c3") + .name("vc_redist.x64.exe") + .get(); + + wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2017 Redistributable (x64)")); + + this.wine.run(setupFile64, "/q", null, false, true); + } + + this.wine + .overrideDLL() + .set("native, builtin", [ + "api-ms-win-crt-conio-l1-1-0", + "api-ms-win-crt-heap-l1-1-0", + "api-ms-win-crt-locale-l1-1-0", + "api-ms-win-crt-math-l1-1-0", + "api-ms-win-crt-runtime-l1-1-0", + "api-ms-win-crt-stdio-l1-1-0", + "api-ms-win-crt-time-l1-1-0", + "atl140", + "concrt140", + "msvcp140", + "msvcr140", + "ucrtbase", + "vcomp140", + "vcruntime140" + ]) + .do(); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "vcrun2017", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "vcrun2017", java.util.Optional.empty()); wine.wizard(wizard); - wine.vcrun2017(); + + new Vcrun2017(wine).go(); + wizard.close(); } } + +module.default = Vcrun2017; diff --git a/Engines/Wine/Verbs/vcrun6sp6/script.js b/Engines/Wine/Verbs/vcrun6sp6/script.js index 8fa265598d..2022b79ab3 100644 --- a/Engines/Wine/Verbs/vcrun6sp6/script.js +++ b/Engines/Wine/Verbs/vcrun6sp6/script.js @@ -1,55 +1,58 @@ const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -const {CabExtract} = include("utils.functions.filesystem.extract"); -const {remove} = include("utils.functions.filesystem.files"); +const { CabExtract } = include("utils.functions.filesystem.extract"); +const { remove } = include("utils.functions.filesystem.files"); -include("engines.wine.verbs.luna"); +const Optional = Java.type("java.util.Optional"); /** * Verb to install vcrun6sp6 - * - * @returns {Wine} Wine object */ -Wine.prototype.vcrun6sp6 = function () { - var toBeCabExtracted = new Resource() - .wizard(this.wizard()) - .url("https://download.microsoft.com/download/1/9/f/19fe4660-5792-4683-99e0-8d48c22eed74/Vs6sp6.exe") - .checksum("2292437a8967349261c810ae8b456592eeb76620") - .name("Vs6sp6.exe") - .get(); - - var setupFile = new CabExtract() - .archive(toBeCabExtracted) - .to(this.prefixDirectory() + "/drive_c/vcrun6sp6/") - .extract(["-L", "-F", "vcredist.exe"]); - - remove(this.system32directory() + "comcat.dll"); - remove(this.system32directory() + "msvcrt.dll"); - remove(this.system32directory() + "oleaut32.dll"); - remove(this.system32directory() + "olepro32.dll"); - remove(this.system32directory() + "stdole2.dll"); - - this.wizard().wait(tr("Please wait while {0} is installed...", "vcrun6sp6")); - this.run(setupFile, "/q", null, false, true); - - return this; -}; +class Vcrun6SP6 { + constructor(wine) { + this.wine = wine; + } -/** - * Verb to install vcrun6sp6 - */ -// eslint-disable-next-line no-unused-vars -module.default = class Vcrun6SP6Verb { - constructor() { - // do nothing + go() { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + const system32directory = this.wine.system32directory(); + + const toBeCabExtracted = new Resource() + .wizard(wizard) + .url("https://download.microsoft.com/download/1/9/f/19fe4660-5792-4683-99e0-8d48c22eed74/Vs6sp6.exe") + .checksum("2292437a8967349261c810ae8b456592eeb76620") + .name("Vs6sp6.exe") + .get(); + + const setupFile = new CabExtract() + .wizard(wizard) + .archive(toBeCabExtracted) + .to(`${prefixDirectory}/drive_c/vcrun6sp6/`) + .extract(["-L", "-F", "vcredist.exe"]); + + remove(`${system32directory}/comcat.dll`); + remove(`${system32directory}/msvcrt.dll`); + remove(`${system32directory}/oleaut32.dll`); + remove(`${system32directory}/olepro32.dll`); + remove(`${system32directory}/stdole2.dll`); + + wizard.wait(tr("Please wait while {0} is installed...", "vcrun6sp6")); + + this.wine.run(setupFile, "/q", null, false, true); } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "vcrun6sp6", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "vcrun6sp6", java.util.Optional.empty()); wine.wizard(wizard); - wine.vcrun6sp6(); + + new Vcrun6SP6(wine).go(); + wizard.close(); } } + +module.default = Vcrun6SP6; diff --git a/Engines/Wine/Verbs/vulkanSDK/script.js b/Engines/Wine/Verbs/vulkanSDK/script.js index e0bb3fcde9..c114b394e3 100644 --- a/Engines/Wine/Verbs/vulkanSDK/script.js +++ b/Engines/Wine/Verbs/vulkanSDK/script.js @@ -1,79 +1,87 @@ - const Wine = include("engines.wine.engine.object"); const Resource = include("utils.functions.net.resource"); -const {touch, writeToFile} = include("utils.functions.filesystem.files"); +const { touch, writeToFile } = include("utils.functions.filesystem.files"); + +const Optional = Java.type("java.util.Optional"); include("engines.wine.plugins.regedit"); /** - * All the necessary things to run winevulkan (even inside wine mainline or newest wine-staging) + * Verb to install all the necessary things to run winevulkan (even inside wine mainline or newest wine-staging) * see: https://github.com/roderickc/wine-vulkan - * - * @returns {Wine} Wine object */ -Wine.prototype.vulkanSDK = function () { - print("NOTE: you need a graphic driver that supports Vulkan to run winevulkan"); - print("NOTE: Vulkan works in wine from version 3.3 (if compiled with vulkan support)"); - - var sdkVersion = "1.1.97.0"; - - var setupFile = new Resource() - .wizard(this.wizard()) - .url("https://sdk.lunarg.com/sdk/download/" + sdkVersion + "/windows/VulkanSDK-" + sdkVersion + "-Installer.exe") - .checksum("6bab01f98473bfd550544bbe9773a6d05872a61a") - .name("VulkanSDK-" + sdkVersion + "-Installer.exe") - .get(); - - this.run(setupFile, "/S"); - this.wait(); - - var pathVulkanJSON = this.prefixDirectory() + "drive_c/windows/winevulkan.json"; - touch(pathVulkanJSON); - var contentVulkanJSON = JSON.stringify({ - "file_format_version": "1.0.0", "ICD": { - "library_path": "c:\\windows\\system32\\winevulkan.dll", - "api_version": sdkVersion - } - }, null, 4); +class VulkanSDK { + constructor(wine) { + this.wine = wine; + } + + go() { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + + print("NOTE: you need a graphic driver that supports Vulkan to run winevulkan"); + print("NOTE: Vulkan works in wine from version 3.3 (if compiled with vulkan support)"); + + const sdkVersion = "1.1.97.0"; + + const setupFile = new Resource() + .wizard(wizard) + .url(`https://sdk.lunarg.com/sdk/download/${sdkVersion}/windows/VulkanSDK-${sdkVersion}-Installer.exe`) + .checksum("6bab01f98473bfd550544bbe9773a6d05872a61a") + .name(`VulkanSDK-${sdkVersion}-Installer.exe`) + .get(); + + this.wine.run(setupFile, "/S"); + this.wine.wait(); + + const pathVulkanJSON = `${prefixDirectory}/drive_c/windows/winevulkan.json`; - writeToFile(pathVulkanJSON, contentVulkanJSON); + touch(pathVulkanJSON); - var regeditFileContent32 = - "REGEDIT4\n" + - "\n" + - "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Khronos\\Vulkan\\Drivers]\n" + - "\"C:\\\\Windows\\\\winevulkan.json\"=dword:00000000"; + const contentVulkanJSON = JSON.stringify( + { + "file_format_version": "1.0.0", + "ICD": { + "library_path": "c:\\windows\\system32\\winevulkan.dll", + "api_version": sdkVersion + } + }, + null, + 4 + ); - this.regedit().patch(regeditFileContent32); + writeToFile(pathVulkanJSON, contentVulkanJSON); - if (this.architecture() == "amd64") { - var regeditFileContent64 = + const regeditFileContent32 = "REGEDIT4\n" + "\n" + - "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Khronos\\Vulkan\\Drivers\\]\n" + - "\"C:\\\\Windows\\\\winevulkan.json\"=dword:00000000"; + "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Khronos\\Vulkan\\Drivers]\n" + + '"C:\\\\Windows\\\\winevulkan.json"=dword:00000000'; - this.regedit().patch(regeditFileContent64); - } + this.wine.regedit().patch(regeditFileContent32); - return this; -} + if (this.wine.architecture() == "amd64") { + const regeditFileContent64 = + "REGEDIT4\n" + + "\n" + + "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Khronos\\Vulkan\\Drivers\\]\n" + + '"C:\\\\Windows\\\\winevulkan.json"=dword:00000000'; -/** - * Verb to install all the necessary things to run winevulkan (even inside wine mainline or newest wine-staging) - */ -// eslint-disable-next-line no-unused-vars -module.default = class VulkanSDKVerb { - constructor() { - // do nothing + this.wine.regedit().patch(regeditFileContent64); + } } - install(container) { - var wine = new Wine(); + static install(container) { + const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "vulkanSDK", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "vulkanSDK", java.util.Optional.empty()); wine.wizard(wizard); - wine.vulkanSDK(); + + new VulkanSDK(wine).go(); + wizard.close(); } } + +module.default = VulkanSDK; diff --git a/Engines/Wine/Verbs/xact/script.js b/Engines/Wine/Verbs/xact/script.js index 3b834c6b03..e9f2f177be 100644 --- a/Engines/Wine/Verbs/xact/script.js +++ b/Engines/Wine/Verbs/xact/script.js @@ -3,252 +3,288 @@ const Resource = include("utils.functions.net.resource"); const { CabExtract } = include("utils.functions.filesystem.extract"); const { remove } = include("utils.functions.filesystem.files"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.regsvr32"); /** * Verb to install xact - * - * @returns {Wine} Wine object */ -Wine.prototype.xact = function () { - const extractFiles = (progressBar, filesToExtract, destination, pattern, directory) => { +class Xact { + constructor(wine) { + this.wine = wine; + } + + /** + * Extracts a given list of files + * + * @param {*} progressBar The progress bar + * @param {*} filesToExtract A list of files to extract + * @param {*} destination The destination directory + * @param {*} pattern The file pattern + * @param {*} directory The directory where the files are located + * @returns {void} + */ + extractFiles(progressBar, filesToExtract, destination, pattern, directory) { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + // extract the cab files filesToExtract.reduce((numberOfExtractedFiles, cabFile) => { print(tr("Extracting {0}...", cabFile)); - progressBar.setText(tr("Extracting {0}...", "Xact")); + progressBar.setText(tr("Extracting {0}...", cabFile)); progressBar.setProgressPercentage((numberOfExtractedFiles * 100) / filesToExtract.length); new CabExtract() - .archive(this.prefixDirectory() + "/drive_c/" + directory + cabFile) + .wizard(wizard) + .archive(`${prefixDirectory}/drive_c/${directory}/${cabFile}`) .to(destination) .extract(["-L", "-F", pattern]); return numberOfExtractedFiles + 1; }, 0); - }; + } - //This function executes regsvr32 on the dlls present in dllToRegsvr - const regsvr32Xact = (progressBar, dllToRegsvr) => { + /** + * Executes regsvr32 on the dlls present in dllToRegsvr + * + * @param {*} progressBar The progressbar + * @param {*} dllToRegsvr The dll files + * @returns {void} + */ + regsvr32Xact(progressBar, dllToRegsvr) { dllToRegsvr.reduce((numberOfExtractedFiles, dll) => { print(tr("Registering {0}...", dll)); progressBar.setText(tr("Registering {0}...", "Xact")); - progressBar.setProgressPercentage((numberOfExtractedFiles * 100) / filesToExtract.length); + progressBar.setProgressPercentage((numberOfExtractedFiles * 100) / dllToRegsvr.length); - this.regsvr32().install(dll); + this.wine.regsvr32().install(dll); return numberOfExtractedFiles + 1; }, 0); - }; - - const setupFile = new Resource() - .wizard(this.wizard()) - .url( - "http://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe" - ) - .checksum("f8f1217f666bf2f6863631a7d5e5fb3a8d1542df") - .name("directx_Jun2010_redist.exe") - .get(); - - const progressBar = this.wizard().progressBar(tr("Please wait...")); - progressBar.setText(tr("Extracting {0}...", "Xact")); - progressBar.setProgressPercentage(0); - - let filesToExtract = []; - - //---------------------------------------------------------Extract xactengine*.dll-------------------------------------------- - new CabExtract() - .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/xact_x86/") - .extract(["-L", "-F", "*_xact_*x86*"]); - - filesToExtract = [ - "apr2006_xact_x86.cab", - "apr2007_xact_x86.cab", - "aug2006_xact_x86.cab", - "aug2007_xact_x86.cab", - "aug2008_xact_x86.cab", - "aug2009_xact_x86.cab", - "dec2006_xact_x86.cab", - "fev2006_xact_x86.cab", - "fev2007_xact_x86.cab", - "fev2010_xact_x86.cab", - "jun2006_xact_x86.cab", - "jun2007_xact_x86.cab", - "jun2008_xact_x86.cab", - "jun2010_xact_x86.cab", - "mar2008_xact_x86.cab", - "mar2009_xact_x86.cab", - "nov2007_xact_x86.cab", - "nov2008_xact_x86.cab", - "oct2006_xact_x86.cab" - ]; - extractFiles(progressBar, filesToExtract, this.system32directory(), "xactengine*.dll", "xact_x86/"); - - //---------------------------------------------------------Extract X3Daudio*.dll---------------------------------------------- - new CabExtract() - .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/x3daudio_x86/") - .extract(["-L", "-F", "*_x3daudio_*x86*"]); - - filesToExtract = [ - "feb2010_x3daudio_x86.cab", - "jun2008_x3daudio_x86.cab", - "mar2008_x3daudio_x86.cab", - "mar2009_x3daudio_x86.cab", - "nov2007_x3daudio_x86.cab", - "nov2008_x3daudio_x86.cab" - ]; - extractFiles(progressBar, filesToExtract, this.system32directory(), "X3Daudio*.dll", "x3daudio_x86/"); - - //---------------------------------------------------------Extract XAudio*.dll and XAPOFX*.dll--------------------------------- - new CabExtract() - .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/xaudio_x86/") - .extract(["-L", "-F", "*_xaudio_*x86*"]); - - filesToExtract = [ - "aug2008_xaudio_x86.cab", - "aug2009_xaudio_x86.cab", - "feb2010_xaudio_x86.cab", - "jun2008_xaudio_x86.cab", - "jun2010_xaudio_x86.cab", - "mar2008_xaudio_x86.cab", - "mar2009_xaudio_x86.cab", - "nov2008_xaudio_x86.cab" - ]; - extractFiles(progressBar, filesToExtract, this.system32directory(), "XAudio*.dll", "xaudio_x86/"); - extractFiles(progressBar, filesToExtract, this.system32directory(), "XAPOFX*.dll", "xaudio_x86/"); - - const xactToRegserv = [ - "xactengine2_1.dll", - "xactengine2_2.dll", - "xactengine2_3.dll", - "xactengine2_4.dll", - "xactengine2_5.dll", - "xactengine2_7.dll", - "xactengine2_8.dll", - "xactengine2_9.dll", - "xactengine2_10.dll", - "xactengine3_0.dll", - "xactengine3_1.dll", - "xactengine3_2.dll", - "xactengine3_3.dll", - "xactengine3_4.dll", - "xactengine3_5.dll", - "xactengine3_7.dll" - ]; - - const xaudioToRegserv = [ - "xaudio2_0.dll", - "xaudio2_1.dll", - "xaudio2_2.dll", - "xaudio2_3.dll", - "xaudio2_4.dll", - "xaudio2_5.dll", - "xaudio2_6.dll", - "xaudio2_7.dll", - "xaudio2_9.dll" - ]; - - regsvr32Xact(progressBar, xactToRegserv); - regsvr32Xact(progressBar, xaudioToRegserv); - - remove(this.prefixDirectory() + "/drive_c/xact_x86/"); - remove(this.prefixDirectory() + "/drive_c/x3daudio_x86/"); - remove(this.prefixDirectory() + "/drive_c/xaudio_x86/"); - - if (this.architecture() == "amd64") { - //---------------------------------------------------------Extract xactengine*.dll (x64)-------------------------------------------- + } + + go() { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + const system32directory = this.wine.system32directory(); + const architecture = this.wine.architecture(); + + const setupFile = new Resource() + .wizard(wizard) + .url( + "http://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe" + ) + .checksum("f8f1217f666bf2f6863631a7d5e5fb3a8d1542df") + .name("directx_Jun2010_redist.exe") + .get(); + + const progressBar = wizard.progressBar(tr("Please wait...")); + progressBar.setText(tr("Extracting {0}...", "Xact")); + progressBar.setProgressPercentage(0); + + let filesToExtract = []; + + //---------------------------------------------------------Extract xactengine*.dll-------------------------------------------- new CabExtract() + .wizard(wizard) .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/xact_x64/") - .extract(["-L", "-F", "*_xact_*x64*"]); + .to(`${prefixDirectory}/drive_c/xact_x86/`) + .extract(["-L", "-F", "*_xact_*x86*"]); filesToExtract = [ - "apr2006_xact_x64.cab", - "apr2007_xact_x64.cab", - "aug2006_xact_x64.cab", - "aug2007_xact_x64.cab", - "aug2008_xact_x64.cab", - "aug2009_xact_x64.cab", - "dec2006_xact_x64.cab", - "fev2006_xact_x64.cab", - "fev2007_xact_x64.cab", - "fev2010_xact_x64.cab", - "jun2006_xact_x64.cab", - "jun2007_xact_x64.cab", - "jun2008_xact_x64.cab", - "jun2010_xact_x64.cab", - "mar2008_xact_x64.cab", - "mar2009_xact_x64.cab", - "nov2007_xact_x64.cab", - "nov2008_xact_x64.cab", - "oct2006_xact_x64.cab" + "apr2006_xact_x86.cab", + "apr2007_xact_x86.cab", + "aug2006_xact_x86.cab", + "aug2007_xact_x86.cab", + "aug2008_xact_x86.cab", + "aug2009_xact_x86.cab", + "dec2006_xact_x86.cab", + "fev2006_xact_x86.cab", + "fev2007_xact_x86.cab", + "fev2010_xact_x86.cab", + "jun2006_xact_x86.cab", + "jun2007_xact_x86.cab", + "jun2008_xact_x86.cab", + "jun2010_xact_x86.cab", + "mar2008_xact_x86.cab", + "mar2009_xact_x86.cab", + "nov2007_xact_x86.cab", + "nov2008_xact_x86.cab", + "oct2006_xact_x86.cab" ]; - extractFiles(progressBar, filesToExtract, this.system64directory(), "xactengine*.dll", "xact_x64/"); - //---------------------------------------------------------Extract X3Daudio*.dll (x64)---------------------------------------------- + this.extractFiles(progressBar, filesToExtract, system32directory, "xactengine*.dll", "xact_x86"); + + //---------------------------------------------------------Extract X3Daudio*.dll---------------------------------------------- new CabExtract() + .wizard(wizard) .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/x3daudio_x64/") - .extract(["-L", "-F", "*_x3daudio_*x64*"]); + .to(`${prefixDirectory}/drive_c/x3daudio_x86/`) + .extract(["-L", "-F", "*_x3daudio_*x86*"]); filesToExtract = [ - "feb2010_x3daudio_x64.cab", - "jun2008_x3daudio_x64.cab", - "mar2008_x3daudio_x64.cab", - "mar2009_x3daudio_x64.cab", - "nov2007_x3daudio_x64.cab", - "nov2008_x3daudio_x64.cab" + "feb2010_x3daudio_x86.cab", + "jun2008_x3daudio_x86.cab", + "mar2008_x3daudio_x86.cab", + "mar2009_x3daudio_x86.cab", + "nov2007_x3daudio_x86.cab", + "nov2008_x3daudio_x86.cab" ]; - extractFiles(progressBar, filesToExtract, this.system64directory(), "X3Daudio*.dll", "x3daudio_x64/"); - //---------------------------------------------------------Extract XAudio*.dll and XAPOFX*.dll (x64)--------------------------------- + this.extractFiles(progressBar, filesToExtract, system32directory, "X3Daudio*.dll", "x3daudio_x86"); + + //---------------------------------------------------------Extract XAudio*.dll and XAPOFX*.dll--------------------------------- new CabExtract() + .wizard(wizard) .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/xaudio_x64/") - .extract(["-L", "-F", "*_xaudio_*64*"]); + .to(`${prefixDirectory}/drive_c/xaudio_x86/`) + .extract(["-L", "-F", "*_xaudio_*x86*"]); filesToExtract = [ - "aug2008_xaudio_x64.cab", - "aug2009_xaudio_x64.cab", - "feb2010_xaudio_x64.cab", - "jun2008_xaudio_x64.cab", - "jun2010_xaudio_x64.cab", - "mar2008_xaudio_x64.cab", - "mar2009_xaudio_x64.cab", - "nov2008_xaudio_x64.cab" + "aug2008_xaudio_x86.cab", + "aug2009_xaudio_x86.cab", + "feb2010_xaudio_x86.cab", + "jun2008_xaudio_x86.cab", + "jun2010_xaudio_x86.cab", + "mar2008_xaudio_x86.cab", + "mar2009_xaudio_x86.cab", + "nov2008_xaudio_x86.cab" ]; - extractFiles(progressBar, filesToExtract, this.system64directory(), "XAudio*.dll", "xaudio_x64/"); - extractFiles(progressBar, filesToExtract, this.system64directory(), "XAPOFX*.dll", "xaudio_x64/"); - remove(this.prefixDirectory() + "/drive_c/xact_x64/"); - remove(this.prefixDirectory() + "/drive_c/x3daudio_x64/"); - remove(this.prefixDirectory() + "/drive_c/xaudio_x64/"); - } + this.extractFiles(progressBar, filesToExtract, system32directory, "XAudio*.dll", "xaudio_x86"); + this.extractFiles(progressBar, filesToExtract, system32directory, "XAPOFX*.dll", "xaudio_x86"); + + const xactToRegserv = [ + "xactengine2_1.dll", + "xactengine2_2.dll", + "xactengine2_3.dll", + "xactengine2_4.dll", + "xactengine2_5.dll", + "xactengine2_7.dll", + "xactengine2_8.dll", + "xactengine2_9.dll", + "xactengine2_10.dll", + "xactengine3_0.dll", + "xactengine3_1.dll", + "xactengine3_2.dll", + "xactengine3_3.dll", + "xactengine3_4.dll", + "xactengine3_5.dll", + "xactengine3_7.dll" + ]; - return this; -}; + const xaudioToRegserv = [ + "xaudio2_0.dll", + "xaudio2_1.dll", + "xaudio2_2.dll", + "xaudio2_3.dll", + "xaudio2_4.dll", + "xaudio2_5.dll", + "xaudio2_6.dll", + "xaudio2_7.dll", + "xaudio2_9.dll" + ]; -/** - * Verb to install xact - */ -module.default = class XactVerb { - constructor() { - // do nothing + this.regsvr32Xact(progressBar, xactToRegserv); + this.regsvr32Xact(progressBar, xaudioToRegserv); + + remove(`${prefixDirectory}/drive_c/xact_x86/`); + remove(`${prefixDirectory}/drive_c/x3daudio_x86/`); + remove(`${prefixDirectory}/drive_c/xaudio_x86/`); + + if (architecture == "amd64") { + const system64directory = this.wine.system64directory(); + + //---------------------------------------------------------Extract xactengine*.dll (x64)-------------------------------------------- + new CabExtract() + .wizard(wizard) + .archive(setupFile) + .to(`${prefixDirectory}/drive_c/xact_x64/`) + .extract(["-L", "-F", "*_xact_*x64*"]); + + filesToExtract = [ + "apr2006_xact_x64.cab", + "apr2007_xact_x64.cab", + "aug2006_xact_x64.cab", + "aug2007_xact_x64.cab", + "aug2008_xact_x64.cab", + "aug2009_xact_x64.cab", + "dec2006_xact_x64.cab", + "fev2006_xact_x64.cab", + "fev2007_xact_x64.cab", + "fev2010_xact_x64.cab", + "jun2006_xact_x64.cab", + "jun2007_xact_x64.cab", + "jun2008_xact_x64.cab", + "jun2010_xact_x64.cab", + "mar2008_xact_x64.cab", + "mar2009_xact_x64.cab", + "nov2007_xact_x64.cab", + "nov2008_xact_x64.cab", + "oct2006_xact_x64.cab" + ]; + + this.extractFiles(progressBar, filesToExtract, system64directory, "xactengine*.dll", "xact_x64"); + + //---------------------------------------------------------Extract X3Daudio*.dll (x64)---------------------------------------------- + new CabExtract() + .wizard(wizard) + .archive(setupFile) + .to(`${prefixDirectory}/drive_c/x3daudio_x64/`) + .extract(["-L", "-F", "*_x3daudio_*x64*"]); + + filesToExtract = [ + "feb2010_x3daudio_x64.cab", + "jun2008_x3daudio_x64.cab", + "mar2008_x3daudio_x64.cab", + "mar2009_x3daudio_x64.cab", + "nov2007_x3daudio_x64.cab", + "nov2008_x3daudio_x64.cab" + ]; + + this.extractFiles(progressBar, filesToExtract, system64directory, "X3Daudio*.dll", "x3daudio_x64"); + + //---------------------------------------------------------Extract XAudio*.dll and XAPOFX*.dll (x64)--------------------------------- + new CabExtract() + .wizard(wizard) + .archive(setupFile) + .to(`${prefixDirectory}/drive_c/xaudio_x64/`) + .extract(["-L", "-F", "*_xaudio_*64*"]); + + filesToExtract = [ + "aug2008_xaudio_x64.cab", + "aug2009_xaudio_x64.cab", + "feb2010_xaudio_x64.cab", + "jun2008_xaudio_x64.cab", + "jun2010_xaudio_x64.cab", + "mar2008_xaudio_x64.cab", + "mar2009_xaudio_x64.cab", + "nov2008_xaudio_x64.cab" + ]; + + this.extractFiles(progressBar, filesToExtract, system64directory, "XAudio*.dll", "xaudio_x64"); + this.extractFiles(progressBar, filesToExtract, system64directory, "XAPOFX*.dll", "xaudio_x64"); + + remove(`${prefixDirectory}/drive_c/xact_x64/`); + remove(`${prefixDirectory}/drive_c/x3daudio_x64/`); + remove(`${prefixDirectory}/drive_c/xaudio_x64/`); + } } - install(container) { + static install(container) { const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "xact", Optional.empty()); wine.prefix(container); - - const wizard = SetupWizard(InstallationType.VERBS, "xact", java.util.Optional.empty()); wine.wizard(wizard); - wine.xact(); + + new Xact(wine).go(); wizard.close(); } -}; +} + +module.default = Xact; diff --git a/docs/_docs/Develop/script-js.md b/docs/_docs/Develop/script-js.md index b19be1ddfd..8c8015533d 100644 --- a/docs/_docs/Develop/script-js.md +++ b/docs/_docs/Develop/script-js.md @@ -191,22 +191,30 @@ For example, for a steam game: ``` #### Pre/Post install hooks -With the pre/post install hooks, you can specify a function which is executed before/after the installation. The function receives a wine object and the [SetupWizard]({{ site.baseurl }}{% link _docs/Develop/setup-wizard.md %}). By default, the pre/post install hooks do nothing. +With the pre- and post- install hooks, you can specify a function which is executed before or after the installation. +The given function receives a wine object and the [SetupWizard]({{ site.baseurl }}{% link _docs/Develop/setup-wizard.md %}). +By default, the pre- and post- install hooks do nothing. -These hooks are especially useful to set DLL overrides. -You can find the complete list of available verbs [here](https://github.com/PhoenicisOrg/scripts/tree/master/Engines/Wine/Verbs). +One common usecase for the pre- and post- install hooks is to set DLL overrides. +DLL overrides are commonly performed using socalled `verb`s. +You can find the complete list of available `verb`s [here](https://github.com/PhoenicisOrg/scripts/tree/master/Engines/Wine/Verbs). -For example, in the script for "Assassin’s Creed: Brotherhood": +To use a `verb` you first need to include it. +You can include a verb by using the `include()` command which returns the class of the included `verb`. + +For example, in the script for "Assassin’s Creed: Brotherhood" two verbs are included: ```javascript -include("engines.wine.verbs.d3dx9"); -include("engines.wine.verbs.crypt32"); +const SteamScript = include("engines.wine.quick_script.steam_script"); + +const Crypt32 = include("engines.wine.verbs.crypt32"); +const D3DX9 = include("engines.wine.verbs.d3dx9"); new SteamScript() ... .preInstall(function(wine, wizard) { - wine.crypt32(); - wine.d3dx9(); + new Crypt32(wine).go(); + new D3DX9(wine).go(); }) ``` @@ -225,17 +233,19 @@ Specific wine version: .wineVersion("1.9.23") ``` -You can also use variables for the wine version: -* LATEST_DEVELOPMENT_VERSION -* LATEST_STAGING_VERSION +You can also use variables for the latest wine version: +* `LATEST_STABLE_VERSION` via `const { LATEST_STABLE_VERSION } = include("engines.wine.engine.versions");` +* `LATEST_DEVELOPMENT_VERSION` via `const { LATEST_DEVELOPMENT_VERSION } = include("engines.wine.engine.versions");` +* `LATEST_STAGING_VERSION` via `const { LATEST_STAGING_VERSION } = include("engines.wine.engine.versions");` +* `LATEST_DOS_SUPPORT_VERSION` via `const { LATEST_DOS_SUPPORT_VERSION } = include("engines.wine.engine.versions");` -Specific wine architecture ("x86" or "amd64"): +For the specific wine architecture ("x86" or "amd64"): ```javascript .wineArchitecture("x86") ``` -Specific windows version: +And for the specific windows version: ```javascript include("engines.wine.plugins.windows_version"); @@ -254,7 +264,7 @@ If the script requires a special registry setting, there are 2 options: const AppResource = include("utils.functions.apps.resources"); include("engines.wine.plugins.regedit"); ... - var registrySettings = new AppResource().application([TYPE_ID, CATEGORY_ID, APPLICATION_ID]).get("registry.reg"); + const registrySettings = new AppResource().application([TYPE_ID, CATEGORY_ID, APPLICATION_ID]).get("registry.reg"); wine.regedit().patch(registrySettings); ``` @@ -266,18 +276,22 @@ The frame for a custom script looks like this: ```javascript const Wine = include("engines.wine.engine.object"); const WineShortcut = include("engines.wine.shortcuts.wine"); +const Luna = include("engines.wine.verbs.luna"); +const {LATEST_STABLE_VERSION} = include("engines.wine.engine.versions"); -var application = "application name" +const application = "application name" -var setupWizard = SetupWizard(application); +const setupWizard = SetupWizard(application); setupWizard.presentation(application, "Editor", "http://applicationhomepage.com", "script author"); -var wine = new Wine() +const wine = new Wine() .wizard(setupWizard) - .prefix(application, "upstream", "x86", LATEST_STABLE_VERSION) - .luna() - .run("your command", ["arg1", "arg2"], null, false, true); + .prefix(application, "upstream", "x86", LATEST_STABLE_VERSION); + +new Luna(wine).go(); + +wine.run("your command", ["arg1", "arg2"], null, false, true); new WineShortcut() .name(application) diff --git a/docs/_docs/Develop/verbs.md b/docs/_docs/Develop/verbs.md index 44ead83471..f923fc7bbe 100644 --- a/docs/_docs/Develop/verbs.md +++ b/docs/_docs/Develop/verbs.md @@ -8,52 +8,62 @@ toc: true The following text describes Verbs for the example of the Wine engine. ## Writing a new verb -Probably, the verb you want to add has already been implemented somewhere else. Take that as an example: +Probably, the functionality of the verb you want to add has already been implemented somewhere else. +To find out whether someone else has already implemented the functionality you can for example look at: * [winetricks](https://github.com/Winetricks/winetricks/blob/master/src/winetricks) * [playonlinux.com search](https://www.playonlinux.com/en/forums.html) -Create a new folder in `Engines/Wine/Verbs` and add a `script.js`. The `script.js` must follow this template: +To create a new verb create a new folder in `Engines/Wine/Verbs` and add a `script.js`. +The `script.js` must follow this template: ```javascript const Wine = include("engines.wine.engine.object"); -/** - * Verb to install verb - * - * @returns {Wine} Wine object - */ -Wine.prototype.verb = function() { - ... - return this; -} +const Optional = Java.type("java.util.Optional"); /** - * Verb to install verb + * Verb to install */ -module.default = class VerbVerb { - constructor() { +// TODO: replace Verb by your own class name +class Verb { + constructor(wine) { + this.wine = wine; + // do some optional initialisation work } - install(container) { - var wine = new Wine(); + go() { + // TODO: add implementation of your verb here + ... + } + + static install(container) { + const wine = new Wine(); + // TODO: change to the target verb name + const wizard = SetupWizard(InstallationType.VERBS, "", Optional.empty()); + wine.prefix(container); - var wizard = SetupWizard(InstallationType.VERBS, "verb", java.util.Optional.empty()); wine.wizard(wizard); - wine.verb(); + + // TODO: replace Verb by your own class name + new Verb(wine).go(); + wizard.close(); } -} +}; + +// TODO: replace Verb by your own class name +module.default = Verb; ``` -The verb extends `Wine`. You can therefore access `Wine` methods via `this`. +The main implementation of your verb needs to be contained in the `go` method. ### Resource To download a file, use `Resource`: ```javascript -var setupFile = new Resource() - .wizard(this._wizard) +const setupFile = new Resource() + .wizard(this.wine.wizard()) .url("http://url/file.exe") .checksum("sha1sum") .algorithm("SHA" / "MD5") // optional: default is "SHA" @@ -64,7 +74,8 @@ var setupFile = new Resource() To install the downloaded `Resource`: ```javascript -this.run(setupFile, ["arg1", "arg2"]) +this.wine + .run(setupFile, ["arg1", "arg2"]) .wait("Please wait while {0} is installed ...".format("Verb")); ``` @@ -76,8 +87,8 @@ Sometimes, it is necessary to extract files from the download instead of install ```javascript new CabExtract() .archive(setupFile) // the Resource - .wizard(null) - .to("path/to/directory") // often: this.system32directory() + .wizard(this.wine.wizard()) + .to("path/to/directory") // often: this.wine.system32directory() .extract(); ``` @@ -93,12 +104,12 @@ If you extract many files, don't forget to add a progress bar like it is done fo On Windows 32 bits, 32 bits dll's go to `C:\windows\system32`. On Windows 64 bits, 32 bits dll's go to `C:\windows\syswow64` and 64 bits dll's go to system32. -This is already handled inside the engine implementation if you use the functions `wine.system64directory()` for 64 bits dll's and bits and `wine.system32directory` for 32 bits dll's inside your scripts. +This is already handled inside the engine implementation if you use the functions `wine.system64directory()` for 64 bits dll's and bits and `wine.system32directory()` for 32 bits dll's inside your scripts. ### DLL Overrides ```javascript -this.overrideDLL() +this.wine.overrideDLL() .set("native, builtin", ["dll1.dll", "dll2.dll"]) .do(); ``` diff --git a/docs/_docs/General/best-practices.md b/docs/_docs/General/best-practices.md index bb1e31cd48..db182656da 100644 --- a/docs/_docs/General/best-practices.md +++ b/docs/_docs/General/best-practices.md @@ -1,7 +1,7 @@ --- title: "Best practices" category: General -order: 4 +order: 5 toc: false --- diff --git a/docs/_docs/General/classes.md b/docs/_docs/General/classes.md index d44982b38a..85426c34ef 100644 --- a/docs/_docs/General/classes.md +++ b/docs/_docs/General/classes.md @@ -1,7 +1,7 @@ --- title: "Classes" category: General -order: 3 +order: 4 toc: true --- diff --git a/docs/_docs/General/module-system.md b/docs/_docs/General/module-system.md new file mode 100644 index 0000000000..dea219ee85 --- /dev/null +++ b/docs/_docs/General/module-system.md @@ -0,0 +1,88 @@ +--- +title: "Module System" +category: General +order: 1 +toc: true +--- + +The scripts requires its scripts to be written as **modules**. +The idea behind modules is to specify which information inside a script should be made available to other scripts. +In addition the module systems helps making it apparent which information inside a script is taken from other scripts. + +A module basically consists of two types of operations: **module includes** and **module exports**. + +## Module Includes + +A module include is required to use code defined in another module. +There are two types of module includes: the **default include** and the **named include**. + +### Default Include + +Whenever an included module should be used as a single object, like a `class` object, it should be included using a **default include**. +A default include assigns an included module to a variable: + +```javascript +const Module = include("module.id"); + +// do something with module +``` + +The assigned variable will contain the value that has been assigned to the **default export** of the included module. + +### Named Include + +In other cases a single module exports multiple values, which can be used independently from each other. +In such situations the different values can be included using a **named include**. +A named include allows the selection of only a subset of the exported values to be included: + +```javascript +const { foo, bar, x, y } = include("module.id"); + +// do something with foo, bar, x and y +``` + +The included values can be any kind of object like functions, classes or constants. + +## Module Exports + +To allow other modules to include values from another module, the module needs to first export it. +An export statement specifies as a form of contract that a value should be _exported_ to other modules and therefore be used by the other modules. +Values are exported by assigning them to the `module` variable which is made available when executing the module script. +A module can contain two types export statements: a single **default export** or multiple **named exports**. + +### Named Exports + +In some cases a module will need to export multiple values. +In such situations **named exports** can be used. +A named export assigns each exported value to its own variable of the `module` variable: + +```javascript +module.foo = function() { + ... +}; + +module.bar = function(input) { + ... +}; + +module.x = // exported value +module.y = // other exported value +``` + +The previous example module exports four values: `foo`, `bar`, `x` and `y`, which can be included using the code shown in the **Named Include** section. + +### Default Export + +Often a module will only export a single value. +In such situations a **default export** can be used to make the value accessible by other modules. +A single value can be exported by using: + +```javascript +module.default = // value to export +``` + +The single exported default value needs to be assigned to the `default` value of the `module` variable. +This defines the value as the default export of the module. + +A module can either use a single default export **or** multiple named exports. +When a module uses both export types the default export is applied. diff --git a/docs/_docs/General/tools.md b/docs/_docs/General/tools.md index ffdf8ade61..1d3f718457 100644 --- a/docs/_docs/General/tools.md +++ b/docs/_docs/General/tools.md @@ -1,7 +1,7 @@ --- title: "Tools" category: General -order: 1 +order: 2 toc: true --- diff --git a/docs/_docs/General/translation.md b/docs/_docs/General/translation.md index ae60306c80..5b86157e61 100644 --- a/docs/_docs/General/translation.md +++ b/docs/_docs/General/translation.md @@ -1,7 +1,7 @@ --- title: "Translation" category: General -order: 2 +order: 3 toc: false --- diff --git a/docs/jsdoc/AdobeAir.html b/docs/jsdoc/AdobeAir.html new file mode 100644 index 0000000000..8a89518376 --- /dev/null +++ b/docs/jsdoc/AdobeAir.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: AdobeAir + + + + + + + + + + +
+ +

Class: AdobeAir

+ + + + + + +
+ +
+ +

AdobeAir()

+ +
Verb to install adobeair
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new AdobeAir()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Amstream.html b/docs/jsdoc/Amstream.html new file mode 100644 index 0000000000..106bb83974 --- /dev/null +++ b/docs/jsdoc/Amstream.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: Amstream + + + + + + + + + + +
+ +

Class: Amstream

+ + + + + + +
+ +
+ +

Amstream()

+ +
Verb to install amstream
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Amstream()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Atmlib.html b/docs/jsdoc/Atmlib.html new file mode 100644 index 0000000000..54ee2514fb --- /dev/null +++ b/docs/jsdoc/Atmlib.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: Atmlib + + + + + + + + + + +
+ +

Class: Atmlib

+ + + + + + +
+ +
+ +

Atmlib()

+ +
Verb to install atmlib
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Atmlib()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Corefonts.html b/docs/jsdoc/Corefonts.html new file mode 100644 index 0000000000..4b545c5c29 --- /dev/null +++ b/docs/jsdoc/Corefonts.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: Corefonts + + + + + + + + + + +
+ +

Class: Corefonts

+ + + + + + +
+ +
+ +

Corefonts()

+ +
Verb to install corefonts
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Corefonts()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Crypt32.html b/docs/jsdoc/Crypt32.html new file mode 100644 index 0000000000..d5a4e6f1ae --- /dev/null +++ b/docs/jsdoc/Crypt32.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: Crypt32 + + + + + + + + + + +
+ +

Class: Crypt32

+ + + + + + +
+ +
+ +

Crypt32()

+ +
Verb to install crypt32
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Crypt32()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/D3DX10.html b/docs/jsdoc/D3DX10.html new file mode 100644 index 0000000000..bec1544bc7 --- /dev/null +++ b/docs/jsdoc/D3DX10.html @@ -0,0 +1,398 @@ + + + + + JSDoc: Class: D3DX10 + + + + + + + + + + +
+ +

Class: D3DX10

+ + + + + + +
+ +
+ +

D3DX10()

+ +
Verb to install D3DX10
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new D3DX10()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +

Methods

+ + + + + + + +

extractDirectXToSystemDirectory(progressBar, filesToExtract, destination, pattern) → {void}

+ + + + + + +
+ Extracts DirectX10 to the system directory +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
progressBar + + +* + + + + The progress bar
filesToExtract + + +* + + + + A list of files to be extracted
destination + + +* + + + + The destination folder
pattern + + +* + + + + The file pattern used during extraction
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +void + + +
+
+ + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/D3DX11.html b/docs/jsdoc/D3DX11.html new file mode 100644 index 0000000000..899079f696 --- /dev/null +++ b/docs/jsdoc/D3DX11.html @@ -0,0 +1,398 @@ + + + + + JSDoc: Class: D3DX11 + + + + + + + + + + +
+ +

Class: D3DX11

+ + + + + + +
+ +
+ +

D3DX11()

+ +
Verb to install D3DX11
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new D3DX11()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +

Methods

+ + + + + + + +

extractDirectXToSystemDirectory(progressBar, filesToExtract, destination, pattern) → {void}

+ + + + + + +
+ Extracts DirectX11 to the system directory +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
progressBar + + +* + + + + The progress bar
filesToExtract + + +* + + + + A list of files to extract
destination + + +* + + + + The destination folder
pattern + + +* + + + + The file pattern used during extraction
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +void + + +
+
+ + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/D3DX9.html b/docs/jsdoc/D3DX9.html new file mode 100644 index 0000000000..1bd64ffc39 --- /dev/null +++ b/docs/jsdoc/D3DX9.html @@ -0,0 +1,398 @@ + + + + + JSDoc: Class: D3DX9 + + + + + + + + + + +
+ +

Class: D3DX9

+ + + + + + +
+ +
+ +

D3DX9()

+ +
Verb to install D3DX9
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new D3DX9()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +

Methods

+ + + + + + + +

extractDirectXToSystemDirectory(progressBar, filesToExtract, destination, pattern) → {void}

+ + + + + + +
+ Extracts DirectX9 to the system directory +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
progressBar + + +* + + + + The progress bar
filesToExtract + + +* + + + + A list of files to extract
destination + + +* + + + + The destination folder
pattern + + +* + + + + The file pattern used during extraction
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +void + + +
+
+ + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/D3drm.html b/docs/jsdoc/D3drm.html new file mode 100644 index 0000000000..0279dd39b9 --- /dev/null +++ b/docs/jsdoc/D3drm.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: D3drm + + + + + + + + + + +
+ +

Class: D3drm

+ + + + + + +
+ +
+ +

D3drm()

+ +
Verb to install d3drm
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new D3drm()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/D9VK.html b/docs/jsdoc/D9VK.html new file mode 100644 index 0000000000..385fdc72e0 --- /dev/null +++ b/docs/jsdoc/D9VK.html @@ -0,0 +1,334 @@ + + + + + JSDoc: Class: D9VK + + + + + + + + + + +
+ +

Class: D9VK

+ + + + + + +
+ +
+ +

D9VK()

+ +
Verb to install D9VK +see: https://github.com/Joshua-Ashton/d9vk/
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new D9VK()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +

Methods

+ + + + + + + +

withVersion(d9vkVersion) → {D9VK}

+ + + + + + +
+ Specifies the D9VK version to download +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
d9vkVersion + + +string + + + + The D9VK version to download
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The D9VK object +
+ + + +
+
+ Type +
+
+ +D9VK + + +
+
+ + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/DXVK.html b/docs/jsdoc/DXVK.html new file mode 100644 index 0000000000..faac2515f5 --- /dev/null +++ b/docs/jsdoc/DXVK.html @@ -0,0 +1,335 @@ + + + + + JSDoc: Class: DXVK + + + + + + + + + + +
+ +

Class: DXVK

+ + + + + + +
+ +
+ +

DXVK()

+ +
Verb to install DXVK + +see: https://github.com/doitsujin/dxvk/
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new DXVK()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +

Methods

+ + + + + + + +

withVersion(dxvkVersion) → {DXVK}

+ + + + + + +
+ Sets the DXVK version to download +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
dxvkVersion + + +string + + + + The DXVK version to download
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The DXVK object +
+ + + +
+
+ Type +
+
+ +DXVK + + +
+
+ + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Devenum.html b/docs/jsdoc/Devenum.html new file mode 100644 index 0000000000..a557fbedea --- /dev/null +++ b/docs/jsdoc/Devenum.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: Devenum + + + + + + + + + + +
+ +

Class: Devenum

+ + + + + + +
+ +
+ +

Devenum()

+ +
Verb to install devenum
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Devenum()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/DotNET20.html b/docs/jsdoc/DotNET20.html new file mode 100644 index 0000000000..e3221175ad --- /dev/null +++ b/docs/jsdoc/DotNET20.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: DotNET20 + + + + + + + + + + +
+ +

Class: DotNET20

+ + + + + + +
+ +
+ +

DotNET20()

+ +
Verb to install .NET 2.0
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new DotNET20()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/DotNET20SP2.html b/docs/jsdoc/DotNET20SP2.html new file mode 100644 index 0000000000..97dc314998 --- /dev/null +++ b/docs/jsdoc/DotNET20SP2.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: DotNET20SP2 + + + + + + + + + + +
+ +

Class: DotNET20SP2

+ + + + + + +
+ +
+ +

DotNET20SP2()

+ +
Verb to install dotnet20sp2
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new DotNET20SP2()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/DotNET40.html b/docs/jsdoc/DotNET40.html new file mode 100644 index 0000000000..05f63f676d --- /dev/null +++ b/docs/jsdoc/DotNET40.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: DotNET40 + + + + + + + + + + +
+ +

Class: DotNET40

+ + + + + + +
+ +
+ +

DotNET40()

+ +
Verb to install .NET 4.0
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new DotNET40()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/DotNET45.html b/docs/jsdoc/DotNET45.html new file mode 100644 index 0000000000..4c44513a1e --- /dev/null +++ b/docs/jsdoc/DotNET45.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: DotNET45 + + + + + + + + + + +
+ +

Class: DotNET45

+ + + + + + +
+ +
+ +

DotNET45()

+ +
Verb to install .NET 4.5
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new DotNET45()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/DotNET452.html b/docs/jsdoc/DotNET452.html new file mode 100644 index 0000000000..71a104a9c8 --- /dev/null +++ b/docs/jsdoc/DotNET452.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: DotNET452 + + + + + + + + + + +
+ +

Class: DotNET452

+ + + + + + +
+ +
+ +

DotNET452()

+ +
Verb to install .NET 4.5.2
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new DotNET452()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/DotNET46.html b/docs/jsdoc/DotNET46.html new file mode 100644 index 0000000000..cdde7117f8 --- /dev/null +++ b/docs/jsdoc/DotNET46.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: DotNET46 + + + + + + + + + + +
+ +

Class: DotNET46

+ + + + + + +
+ +
+ +

DotNET46()

+ +
Verb to install .NET 4.6
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new DotNET46()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/DotNET461.html b/docs/jsdoc/DotNET461.html new file mode 100644 index 0000000000..62331b3d4b --- /dev/null +++ b/docs/jsdoc/DotNET461.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: DotNET461 + + + + + + + + + + +
+ +

Class: DotNET461

+ + + + + + +
+ +
+ +

DotNET461()

+ +
Verb to install .NET 4.6.1
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new DotNET461()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/DotNET462.html b/docs/jsdoc/DotNET462.html new file mode 100644 index 0000000000..22f8adfa7a --- /dev/null +++ b/docs/jsdoc/DotNET462.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: DotNET462 + + + + + + + + + + +
+ +

Class: DotNET462

+ + + + + + +
+ +
+ +

DotNET462()

+ +
Verb to install .NET 4.6.2
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new DotNET462()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/DotNET472.html b/docs/jsdoc/DotNET472.html new file mode 100644 index 0000000000..e213ee714b --- /dev/null +++ b/docs/jsdoc/DotNET472.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: DotNET472 + + + + + + + + + + +
+ +

Class: DotNET472

+ + + + + + +
+ +
+ +

DotNET472()

+ +
Verb to install .NET 4.7.2
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new DotNET472()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Engines_Wine_Engine_Implementation_script.js.html b/docs/jsdoc/Engines_Wine_Engine_Implementation_script.js.html index 433cf88785..3cee4bde82 100644 --- a/docs/jsdoc/Engines_Wine_Engine_Implementation_script.js.html +++ b/docs/jsdoc/Engines_Wine_Engine_Implementation_script.js.html @@ -54,6 +54,7 @@

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

this._wineWebServiceUrl = propertyReader.getProperty("webservice.wine.url"); this._wizard = null; this._workingContainer = ""; + this._fetchedRuntimeJson = false; } getLocalDirectory(subCategory, version) { @@ -137,6 +138,11 @@

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

} } _installRuntime(setupWizard) { + // avoid that runtime is installed multiple times during one installation + if (this._fetchedRuntimeJson) { + return; + } + const runtimeJsonPath = this._wineEnginesDirectory + "/runtime.json"; let runtimeJson; let runtimeJsonFile; @@ -289,6 +295,8 @@

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

remove(this._wineEnginesDirectory + "/TMP"); } + + this._fetchedRuntimeJson = true; } _installGecko(setupWizard, winePackage, localDirectory) { @@ -572,7 +580,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 af0cc9d51a..74457fbdf9 100644 --- a/docs/jsdoc/Engines_Wine_Engine_Object_script.js.html +++ b/docs/jsdoc/Engines_Wine_Engine_Object_script.js.html @@ -386,7 +386,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Plugins_DOS support_script.js.html b/docs/jsdoc/Engines_Wine_Plugins_DOS support_script.js.html index 7787ded128..a8272947df 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_DOS support_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_DOS support_script.js.html @@ -176,7 +176,7 @@

Source: Engines/Wine/Plugins/DOS support/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 c99bb29eaa..66c9b08abf 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_DirectDraw renderer_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_DirectDraw renderer_script.js.html @@ -53,7 +53,7 @@

Source: Engines/Wine/Plugins/DirectDraw renderer/script.j
diff --git a/docs/jsdoc/Engines_Wine_Plugins_Font smoothing_script.js.html b/docs/jsdoc/Engines_Wine_Plugins_Font smoothing_script.js.html index 0be3de3dca..c06e1494c2 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_Font smoothing_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_Font smoothing_script.js.html @@ -80,7 +80,7 @@

Source: Engines/Wine/Plugins/Font smoothing/script.js


diff --git a/docs/jsdoc/Engines_Wine_Plugins_GLSL_script.js.html b/docs/jsdoc/Engines_Wine_Plugins_GLSL_script.js.html index c91f5a8ef4..7fa32820db 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_GLSL_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_GLSL_script.js.html @@ -53,7 +53,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 278fbd1ed9..36757a0bbe 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_OpenGL version_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_OpenGL version_script.js.html @@ -54,7 +54,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Plugins_UseTakeFocus_script.js.html b/docs/jsdoc/Engines_Wine_Plugins_UseTakeFocus_script.js.html index 1f8d2d452b..bd66cb56fb 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_UseTakeFocus_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_UseTakeFocus_script.js.html @@ -54,7 +54,7 @@

Source: Engines/Wine/Plugins/UseTakeFocus/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 c3266ce1e2..fa40484923 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_Windows version_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_Windows version_script.js.html @@ -108,7 +108,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 382d45e60b..ade1bf5893 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_csmt_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_csmt_script.js.html @@ -52,7 +52,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Plugins_hdpi_script.js.html b/docs/jsdoc/Engines_Wine_Plugins_hdpi_script.js.html index 89e193546e..b8ef92eac1 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_hdpi_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_hdpi_script.js.html @@ -66,7 +66,7 @@

Source: Engines/Wine/Plugins/hdpi/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 3a6ecac5da..c3ae6fc252 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_managed_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_managed_script.js.html @@ -92,7 +92,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 4e7eb8c051..bf7e493d60 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_native application_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_native application_script.js.html @@ -76,7 +76,7 @@

Source: Engines/Wine/Plugins/native application/script.js
diff --git a/docs/jsdoc/Engines_Wine_Plugins_nocrashdialog_script.js.html b/docs/jsdoc/Engines_Wine_Plugins_nocrashdialog_script.js.html index ffa155ba66..46336963c0 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_nocrashdialog_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_nocrashdialog_script.js.html @@ -53,7 +53,7 @@

Source: Engines/Wine/Plugins/nocrashdialog/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 18924a2696..b2414f98fe 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_regedit_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_regedit_script.js.html @@ -113,7 +113,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 2bd752eb26..b094704302 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 a3292854e6..baf8abab04 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_sound driver_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_sound driver_script.js.html @@ -53,7 +53,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 c1b448da91..9afd36ccfc 100644 --- a/docs/jsdoc/Engines_Wine_Plugins_virtual desktop_script.js.html +++ b/docs/jsdoc/Engines_Wine_Plugins_virtual desktop_script.js.html @@ -67,7 +67,7 @@

Source: Engines/Wine/Plugins/virtual desktop/script.js
diff --git a/docs/jsdoc/Engines_Wine_QuickScript_GoG Script_script.js.html b/docs/jsdoc/Engines_Wine_QuickScript_GoG Script_script.js.html index c5fc0d2f27..a9082c7fc9 100644 --- a/docs/jsdoc/Engines_Wine_QuickScript_GoG Script_script.js.html +++ b/docs/jsdoc/Engines_Wine_QuickScript_GoG Script_script.js.html @@ -29,9 +29,9 @@

Source: Engines/Wine/QuickScript/GoG Script/script.js

const Wine = include("engines.wine.engine.object"); const QuickScript = include("engines.wine.quick_script.quick_script"); const Downloader = include("utils.functions.net.download"); -const {createTempDir} = include("utils.functions.filesystem.files"); +const { createTempDir } = include("utils.functions.filesystem.files"); -include("engines.wine.verbs.gdiplus"); +const GDIPlus = include("engines.wine.verbs.gdiplus"); module.default = class GogScript extends QuickScript { constructor() { @@ -104,7 +104,7 @@

Source: Engines/Wine/QuickScript/GoG Script/script.js

Source: Engines/Wine/QuickScript/GoG Script/script.jsSource: Engines/Wine/QuickScript/GoG Script/script.js @@ -160,7 +161,7 @@

Source: Engines/Wine/QuickScript/GoG Script/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 38b95b8395..8c2a980ab5 100644 --- a/docs/jsdoc/Engines_Wine_QuickScript_Quick Script_script.js.html +++ b/docs/jsdoc/Engines_Wine_QuickScript_Quick Script_script.js.html @@ -195,7 +195,7 @@

Source: Engines/Wine/QuickScript/Quick Script/script.js
diff --git a/docs/jsdoc/Engines_Wine_QuickScript_Steam Script_script.js.html b/docs/jsdoc/Engines_Wine_QuickScript_Steam Script_script.js.html new file mode 100644 index 0000000000..fee8b5ca70 --- /dev/null +++ b/docs/jsdoc/Engines_Wine_QuickScript_Steam Script_script.js.html @@ -0,0 +1,268 @@ + + + + + JSDoc: Source: Engines/Wine/QuickScript/Steam Script/script.js + + + + + + + + + + +
+ +

Source: Engines/Wine/QuickScript/Steam Script/script.js

+ + + + + + +
+
+
const QuickScript = include("engines.wine.quick_script.quick_script");
+const Downloader = include("utils.functions.net.download");
+const Wine = include("engines.wine.engine.object");
+const { cat, fileExists, writeToFile, createTempFile } = include("utils.functions.filesystem.files");
+
+const Luna = include("engines.wine.verbs.luna");
+const Corefonts = include("engines.wine.verbs.corefonts");
+include("engines.wine.plugins.override_dll");
+include("engines.wine.plugins.windows_version");
+
+const Thread = Java.type("java.lang.Thread");
+
+module.default = class SteamScript extends QuickScript {
+    constructor() {
+        super();
+
+        this._executable = "Steam.exe";
+        this._category = "Games";
+        this._gameOverlay = true;
+    }
+
+    appId(appId) {
+        this._appId = appId;
+        return this;
+    }
+
+    gameOverlay(gameOverlay) {
+        // get
+        if (arguments.length == 0) {
+            return this._gameOverlay;
+        }
+
+        // set
+        this._gameOverlay = gameOverlay;
+        return this;
+    }
+
+    manifest(wine) {
+        if (!this._manifest) {
+            // cache manifest path (will not change during the installation)
+            this._manifest = `${wine.prefixDirectory()}/drive_c/${wine.programFiles()}/Steam/steamapps/appmanifest_${this._appId}.acf`;
+        }
+
+        return this._manifest;
+    }
+
+    /**
+     * Checks whether the software download has started
+     *
+     * @param {Wine} wine The wine engine object
+     * @returns {boolean} True if the download has started, false otherwise
+     */
+    downloadStarted(wine) {
+        if (fileExists(this.manifest(wine))) {
+            const manifest = cat(this.manifest(wine));
+            const state = parseInt(manifest.match(/"StateFlags"\s+"(\d+)"/)[1], 10);
+
+            return state == 1026 || state == 1042 || state == 1062 || state == 1030;
+        } else {
+            return false;
+        }
+    }
+
+    /**
+     * Checks whether the software download has finished.
+     * To get a valid result with this method `downloadStarted(wine)` needs to return `true` first
+     *
+     * @param {Wine} wine The wine engine object
+     * @returns {boolean} True if the download has finished, false otherwise
+     */
+    downloadFinished(wine) {
+        // check if download already finished (download folder has been deleted)
+        if (fileExists(this.manifest(wine))) {
+            const manifest = cat(this.manifest(wine));
+            const state = parseInt(manifest.match(/"StateFlags"\s+"(\d+)"/)[1], 10);
+
+            return state != 1026 && state != 1042 && state != 1062 && state != 1030;
+        } else {
+            return false;
+        }
+    }
+
+    configVdf(wine) {
+        if (!this._configVdf) {
+            // cache config.vdf path (will not change during the installation)
+            this._configVdf = `${wine.prefixDirectory()}/drive_c/${wine.programFiles()}/Steam/config/config.vdf`;
+        }
+
+        return this._configVdf;
+    }
+
+    // Fix for the "content server unavailable" error (Wine bug 45329)
+    fixCertificateIssue(wine) {
+        const steamConfigFile = this.configVdf(wine);
+        const steamConfig = cat(steamConfigFile);
+        const cmPos = steamConfig.indexOf(`"CM"`);
+        const csConfig = `"CS" "valve511.steamcontent.com;valve501.steamcontent.com;valve517.steamcontent.com;valve557.steamcontent.com;valve513.steamcontent.com;valve535.steamcontent.com;valve546.steamcontent.com;valve538.steamcontent.com;valve536.steamcontent.com;valve530.steamcontent.com;valve559.steamcontent.com;valve545.steamcontent.com;valve518.steamcontent.com;valve548.steamcontent.com;valve555.steamcontent.com;valve556.steamcontent.com;valve506.steamcontent.com;valve544.steamcontent.com;valve525.steamcontent.com;valve567.steamcontent.com;valve521.steamcontent.com;valve510.steamcontent.com;valve542.steamcontent.com;valve519.steamcontent.com;valve526.steamcontent.com;valve504.steamcontent.com;valve500.steamcontent.com;valve554.steamcontent.com;valve562.steamcontent.com;valve524.steamcontent.com;valve502.steamcontent.com;valve505.steamcontent.com;valve547.steamcontent.com;valve560.steamcontent.com;valve503.steamcontent.com;valve507.steamcontent.com;valve553.steamcontent.com;valve520.steamcontent.com;valve550.steamcontent.com;valve531.steamcontent.com;valve558.steamcontent.com;valve552.steamcontent.com;valve563.steamcontent.com;valve540.steamcontent.com;valve541.steamcontent.com;valve537.steamcontent.com;valve528.steamcontent.com;valve523.steamcontent.com;valve512.steamcontent.com;valve532.steamcontent.com;valve561.steamcontent.com;valve549.steamcontent.com;valve522.steamcontent.com;valve514.steamcontent.com;valve551.steamcontent.com;valve564.steamcontent.com;valve543.steamcontent.com;valve565.steamcontent.com;valve529.steamcontent.com;valve539.steamcontent.com;valve566.steamcontent.com;valve165.steamcontent.com;valve959.steamcontent.com;valve164.steamcontent.com;valve1611.steamcontent.com;valve1601.steamcontent.com;valve1617.steamcontent.com;valve1603.steamcontent.com;valve1602.steamcontent.com;valve1610.steamcontent.com;valve1615.steamcontent.com;valve909.steamcontent.com;valve900.steamcontent.com;valve905.steamcontent.com;valve954.steamcontent.com;valve955.steamcontent.com;valve1612.steamcontent.com;valve1607.steamcontent.com;valve1608.steamcontent.com;valve1618.steamcontent.com;valve1619.steamcontent.com;valve1606.steamcontent.com;valve1605.steamcontent.com;valve1609.steamcontent.com;valve907.steamcontent.com;valve901.steamcontent.com;valve902.steamcontent.com;valve1604.steamcontent.com;valve908.steamcontent.com;valve950.steamcontent.com;valve957.steamcontent.com;valve903.steamcontent.com;valve1614.steamcontent.com;valve904.steamcontent.com;valve952.steamcontent.com;valve1616.steamcontent.com;valve1613.steamcontent.com;valve958.steamcontent.com;valve956.steamcontent.com;valve906.steamcontent.com"\n`;
+        const newSteamConfig = steamConfig.slice(0, cmPos) + csConfig + steamConfig.slice(cmPos);
+
+        writeToFile(steamConfigFile, newSteamConfig);
+    }
+
+    go() {
+        // default application homepage if not specified
+        if (!this._applicationHomepage) {
+            this._applicationHomepage = `https://store.steampowered.com/app/${this._appId}`;
+        }
+
+        // default executable args if not specified
+        if (!this._executableArgs) {
+            this._executableArgs = ["-no-cef-sandbox", "-silent", "-applaunch", `${this._appId}`];
+        }
+
+        const setupWizard = SetupWizard(InstallationType.APPS, this._name, this.miniature());
+
+        setupWizard.presentation(this._name, this._editor, this._applicationHomepage, this._author);
+
+        const tempFile = createTempFile("exe");
+
+        new Downloader()
+            .wizard(setupWizard)
+            .url("https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe")
+            .checksum("4b1b85ec2499a4ce07c89609b256923a4fc479e5")
+            .to(tempFile)
+            .get();
+
+        const wine = new Wine()
+            .wizard(setupWizard)
+            .prefix(this._name, this._wineDistribution, this._wineArchitecture, this._wineVersion);
+
+        new Luna(wine).go();
+        new Corefonts(wine).go();
+
+        // Steam must be started once such that config.vdf is created (see fixCertificateIssue())
+        setupWizard.wait(
+            tr(
+                'Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue.',
+                this._name
+            )
+        );
+        wine.run(tempFile, [], null, false, true);
+
+        // Set windows environment for executable that needs it
+        wine.setOsForApplication()
+            .set("steam.exe", "winxp")
+            .do();
+        wine.setOsForApplication()
+            .set("steamwebhelper.exe", "winxp")
+            .do();
+
+        // Fix for Uplay games that are executed on steam
+        wine.setOsForApplication()
+            .set("upc.exe", "winvista")
+            .do();
+        wine.setOsForApplication()
+            .set("UbisoftGameLauncher.exe", "winvista")
+            .do();
+
+        // ensure that Steam is running (user might have unchecked "run Steam after installation finished")
+        wine.runInsidePrefix(`${wine.programFiles()}/Steam/Steam.exe`, ["steam://nav/games"], false);
+
+        // wait until config.vdf exists
+        while (!fileExists(this.configVdf(wine))) {
+            Thread.sleep(1000);
+        }
+
+        // wait until Steam and Wine are closed
+        wine.wait();
+
+        this.fixCertificateIssue(wine);
+
+        // Steam installation has finished
+        setupWizard.wait(tr("Please wait..."));
+
+        this._preInstall(wine, setupWizard);
+
+        // back to generic wait (might have been changed in preInstall)
+        setupWizard.wait(tr("Please wait..."));
+
+        wine.runInsidePrefix(`${wine.programFiles()}/Steam/Steam.exe`, [`steam://install/${this._appId}`], false);
+
+        setupWizard.wait(tr("Please wait until Steam has finished the download..."));
+
+        // wait until download started
+        while (!this.downloadStarted(wine)) {
+            Thread.sleep(100);
+        }
+
+        // make sure download is finished
+        while (!this.downloadFinished(wine)) {
+            Thread.sleep(1000);
+        }
+
+        // close Steam
+        wine.runInsidePrefix(`${wine.programFiles()}/Steam/Steam.exe`, "-shutdown", true);
+
+        // back to generic wait
+        setupWizard.wait(tr("Please wait..."));
+
+        // create shortcut after installation (if executable is specified, it does not exist earlier)
+        this._createShortcut(wine.prefix());
+
+        this._postInstall(wine, setupWizard);
+
+        // deactivate game overlay if desired
+        if (!this._gameOverlay) {
+            wine.overrideDLL()
+                .set("", ["gameoverlayrenderer"])
+                .do();
+        }
+
+        // back to generic wait (might have been changed in postInstall)
+        setupWizard.wait(tr("Please wait..."));
+
+        setupWizard.close();
+    }
+};
+
+
+
+ + + + +
+ + + +
+ + + + + + + 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 42801eee4f..6f29120571 100644 --- a/docs/jsdoc/Engines_Wine_Settings_DirectDraw renderer_script.js.html +++ b/docs/jsdoc/Engines_Wine_Settings_DirectDraw renderer_script.js.html @@ -89,7 +89,7 @@

Source: Engines/Wine/Settings/DirectDraw renderer/script.
diff --git a/docs/jsdoc/Engines_Wine_Settings_Font smoothing_script.js.html b/docs/jsdoc/Engines_Wine_Settings_Font smoothing_script.js.html index 1ef94b926b..3d7790614e 100644 --- a/docs/jsdoc/Engines_Wine_Settings_Font smoothing_script.js.html +++ b/docs/jsdoc/Engines_Wine_Settings_Font smoothing_script.js.html @@ -113,7 +113,7 @@

Source: Engines/Wine/Settings/Font smoothing/script.js
diff --git a/docs/jsdoc/Engines_Wine_Settings_GLSL_script.js.html b/docs/jsdoc/Engines_Wine_Settings_GLSL_script.js.html index 6acabf1431..ccfe2ffa74 100644 --- a/docs/jsdoc/Engines_Wine_Settings_GLSL_script.js.html +++ b/docs/jsdoc/Engines_Wine_Settings_GLSL_script.js.html @@ -88,7 +88,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Settings_UseTakeFocus_script.js.html b/docs/jsdoc/Engines_Wine_Settings_UseTakeFocus_script.js.html index 40746cb155..2e6da3c3b9 100644 --- a/docs/jsdoc/Engines_Wine_Settings_UseTakeFocus_script.js.html +++ b/docs/jsdoc/Engines_Wine_Settings_UseTakeFocus_script.js.html @@ -84,7 +84,7 @@

Source: Engines/Wine/Settings/UseTakeFocus/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 4e18198ccb..a176db0a25 100644 --- a/docs/jsdoc/Engines_Wine_Settings_always offscreen_script.js.html +++ b/docs/jsdoc/Engines_Wine_Settings_always offscreen_script.js.html @@ -90,7 +90,7 @@

Source: Engines/Wine/Settings/always offscreen/script.js<
diff --git a/docs/jsdoc/Engines_Wine_Settings_hdpi_script.js.html b/docs/jsdoc/Engines_Wine_Settings_hdpi_script.js.html index 0023151fe6..6a21783e58 100644 --- a/docs/jsdoc/Engines_Wine_Settings_hdpi_script.js.html +++ b/docs/jsdoc/Engines_Wine_Settings_hdpi_script.js.html @@ -71,7 +71,7 @@

Source: Engines/Wine/Settings/hdpi/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 57e31cc445..57d893287a 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 @@ -89,7 +89,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 d8dd31a63e..8ba33ec26c 100644 --- a/docs/jsdoc/Engines_Wine_Settings_multisampling_script.js.html +++ b/docs/jsdoc/Engines_Wine_Settings_multisampling_script.js.html @@ -88,7 +88,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 8103c9c03f..a0df7b9bf6 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 @@ -88,7 +88,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 870c445368..7cae331e3f 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 @@ -88,7 +88,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 dd890540d8..9906c154c5 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 @@ -88,7 +88,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 243e51adf9..4b86596c19 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 @@ -88,7 +88,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 bfc92465ae..9673b8569c 100644 --- a/docs/jsdoc/Engines_Wine_Shortcuts_Reader_script.js.html +++ b/docs/jsdoc/Engines_Wine_Shortcuts_Reader_script.js.html @@ -163,7 +163,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 33eef9b1da..935c98c4c0 100644 --- a/docs/jsdoc/Engines_Wine_Shortcuts_Wine_script.js.html +++ b/docs/jsdoc/Engines_Wine_Shortcuts_Wine_script.js.html @@ -234,7 +234,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 ec69fbd57b..b608bf4c94 100644 --- a/docs/jsdoc/Engines_Wine_Tools_Configure Wine_script.js.html +++ b/docs/jsdoc/Engines_Wine_Tools_Configure Wine_script.js.html @@ -53,7 +53,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 b1352f8cd3..2670ff3db8 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 @@ -53,7 +53,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 fad3396125..50eb240b7d 100644 --- a/docs/jsdoc/Engines_Wine_Tools_Reboot Wine_script.js.html +++ b/docs/jsdoc/Engines_Wine_Tools_Reboot Wine_script.js.html @@ -53,7 +53,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 18e9839437..f92c101272 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 @@ -53,7 +53,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 345dde7769..1590d4be59 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 @@ -55,7 +55,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 0460d542da..17ac7f249a 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 @@ -53,7 +53,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 b588bf497b..574a7e62d3 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 @@ -78,7 +78,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 f82c8659c3..354423d291 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 d10085056f..0a0f005bfe 100644 --- a/docs/jsdoc/Engines_Wine_Tools_WineConsole_script.js.html +++ b/docs/jsdoc/Engines_Wine_Tools_WineConsole_script.js.html @@ -53,7 +53,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Verbs_D9VK_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_D9VK_script.js.html index 598ca12d2b..582efa1e4d 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_D9VK_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_D9VK_script.js.html @@ -28,97 +28,122 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
-const {Extractor} = include("utils.functions.filesystem.extract");
-const {ls, cp, remove} = include("utils.functions.filesystem.files");
+const { Extractor } = include("utils.functions.filesystem.extract");
+const { ls, cp, remove } = include("utils.functions.filesystem.files");
+
+const operatingSystemFetcher = Bean("operatingSystemFetcher");
+
+const Optional = Java.type("java.util.Optional");
 
 include("engines.wine.plugins.override_dll");
 
 /**
  * Verb to install D9VK
  * see: https://github.com/Joshua-Ashton/d9vk/
- *
- * @param {String} d9vkVersion D9VK version to download
- * @returns {Wine} Wine object
  */
-Wine.prototype.D9VK = function (d9vkVersion) {
-    var operatingSystemFetcher = Bean("operatingSystemFetcher");
+class D9VK {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-    print("NOTE: Wine version should be greater or equal to 3.10");
+    /**
+     * Specifies the D9VK version to download
+     *
+     * @param {string} d9vkVersion The D9VK version to download
+     * @returns {D9VK} The D9VK object
+     */
+    withVersion(d9vkVersion) {
+        this.d9vkVersion = d9vkVersion;
 
-    if (operatingSystemFetcher.fetchCurrentOperationSystem() != "Linux") {
-        this.wizard().message(tr("D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement"));
-    }
-    else {
-        this.wizard().message(tr("Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly."));
+        return this;
     }
 
-    if (typeof d9vkVersion !== 'string') {
-        d9vkVersion = "0.12";
-    }
+    go() {
+        const wizard = this.wine.wizard();
+        const prefixDirectory = this.wine.prefixDirectory();
+        const system32directory = this.wine.system32directory();
+        const architecture = this.wine.architecture();
+
+        print("NOTE: Wine version should be greater or equal to 3.10");
+
+        if (operatingSystemFetcher.fetchCurrentOperationSystem() != "Linux") {
+            wizard.message(
+                tr(
+                    "D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement"
+                )
+            );
+        } else {
+            wizard.message(
+                tr(
+                    "Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly."
+                )
+            );
+        }
 
-    var setupFile = new Resource()
-        .wizard(this.wizard())
-        .url("https://github.com/Joshua-Ashton/d9vk/releases/download/" + d9vkVersion + "/d9vk-" + d9vkVersion + ".tar.gz")
-        .name("d9vk-" + d9vkVersion + ".tar.gz")
-        .get();
-
-    new Extractor()
-        .wizard(this.wizard())
-        .archive(setupFile)
-        .to(this.prefixDirectory() + "/TMP/")
-        .extract();
-
-    var forEach = Array.prototype.forEach;
-    var sys32dir = this.system32directory();
-    var d9vkTmpDir = this.prefixDirectory() + "/TMP/d9vk-" + d9vkVersion;
-    var self = this;
-
-    //Copy 32 bits dll to system* and apply override
-    forEach.call(ls(d9vkTmpDir + "/x32"), function (file) {
-        if (file.endsWith(".dll")) {
-            cp(d9vkTmpDir + "/x32/" + file, sys32dir);
-            self.overrideDLL()
-                .set("native", [file])
-                .do();
+        if (typeof this.d9vkVersion !== "string") {
+            this.d9vkVersion = "0.12";
         }
-    });
 
-    if (this.architecture() == "amd64") {
-        var sys64dir = this.system64directory();
-        //Copy 64 bits dll to system*
-        forEach.call(ls(d9vkTmpDir + "/x64"), function (file) {
+        var setupFile = new Resource()
+            .wizard(wizard)
+            .url(
+                `https://github.com/Joshua-Ashton/d9vk/releases/download/${this.d9vkVersion}/d9vk-${this.d9vkVersion}.tar.gz`
+            )
+            .name(`d9vk-${this.d9vkVersion}.tar.gz`)
+            .get();
+
+        new Extractor()
+            .wizard(wizard)
+            .archive(setupFile)
+            .to(`${prefixDirectory}/TMP/`)
+            .extract();
+
+        const d9vkTmpDir = `${prefixDirectory}/TMP/d9vk-${this.d9vkVersion}`;
+
+        // copy 32 bits dll to system* and apply override
+        ls(`${d9vkTmpDir}/x32`).forEach(file => {
             if (file.endsWith(".dll")) {
-                cp(d9vkTmpDir + "/x64/" + file, sys64dir);
+                cp(`${d9vkTmpDir}/x32/${file}`, system32directory);
+
+                this.wine
+                    .overrideDLL()
+                    .set("native", [file])
+                    .do();
             }
         });
-    }
 
-    remove(this.prefixDirectory() + "/TMP/");
+        if (architecture == "amd64") {
+            const system64directory = this.wine.system64directory();
 
-    return this;
-}
+            // copy 64 bits dll to system*
+            ls(d9vkTmpDir + "/x64").forEach(file => {
+                if (file.endsWith(".dll")) {
+                    cp(`${d9vkTmpDir}/x64/${file}`, system64directory);
+                }
+            });
+        }
 
-/**
- * Verb to install D9VK
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class D9VKVerb {
-    constructor() {
-        // do nothing
+        remove(`${prefixDirectory}/TMP/`);
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "D9VK", Optional.empty());
+
+        const versions = ["0.12", "0.11", "0.10"];
+        const selectedVersion = wizard.menu(tr("Please select the version."), versions, "0.12");
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "D9VK", java.util.Optional.empty());
-        var versions = ["0.12", "0.11", "0.10"];
-        var selectedVersion = wizard.menu(tr("Please select the version."), versions, "0.12");
         wine.wizard(wizard);
+
         // install selected version
-        wine.D9VK(selectedVersion.text);
+        new D9VK(wine).withVersion(selectedVersion.text).go();
+
         wizard.close();
     }
 }
+
+module.default = D9VK;
 
@@ -129,7 +154,7 @@

Source: Engines/Wine/Verbs/D9VK/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 f26601394d..21e421ea08 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_DXVK_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_DXVK_script.js.html @@ -28,125 +28,179 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
-const {Extractor} = include("utils.functions.filesystem.extract");
-const {ls, cp, cat, remove} = include("utils.functions.filesystem.files");
+const { Extractor } = include("utils.functions.filesystem.extract");
+const { ls, cp, cat, remove } = include("utils.functions.filesystem.files");
+
+const operatingSystemFetcher = Bean("operatingSystemFetcher");
+
+const Optional = Java.type("java.util.Optional");
 
 include("engines.wine.plugins.override_dll");
 
 /**
  * Verb to install DXVK
- * see: https://github.com/doitsujin/dxvk/
  *
- * @param {String} dxvkVersion DXVK version to download
- * @returns {Wine} Wine object
+ * see: https://github.com/doitsujin/dxvk/
  */
-Wine.prototype.DXVK = function (dxvkVersion) {
-    var operatingSystemFetcher = Bean("operatingSystemFetcher");
+class DXVK {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-    print("NOTE: wine version should be greater or equal to 3.10");
+    /**
+     * Sets the DXVK version to download
+     *
+     * @param {string} dxvkVersion The DXVK version to download
+     * @returns {DXVK} The DXVK object
+     */
+    withVersion(dxvkVersion) {
+        this.dxvkVersion = dxvkVersion;
 
-    if (operatingSystemFetcher.fetchCurrentOperationSystem() != "Linux") {
-        this.wizard().message(tr("DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement"));
-    }
-    else {
-        this.wizard().message(tr("Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly."));
+        return this;
     }
 
-    if (typeof dxvkVersion !== 'string') {
-        var releaseFile = new Resource()
-            .wizard(this.wizard())
-            .url("https://raw.githubusercontent.com/doitsujin/dxvk/master/RELEASE")
-            .name("RELEASE.txt")
-            .get();
-        dxvkVersion = cat(releaseFile).replaceAll("\\n", "");
-    }
+    go() {
+        const wizard = this.wine.wizard();
+        const prefixDirectory = this.wine.prefixDirectory();
+        const sys32dir = this.wine.system32directory();
+        const architecture = this.wine.architecture();
+
+        print("NOTE: wine version should be greater or equal to 3.10");
+
+        if (operatingSystemFetcher.fetchCurrentOperationSystem() != "Linux") {
+            wizard.message(
+                tr(
+                    "DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement"
+                )
+            );
+        } else {
+            wizard.message(
+                tr(
+                    "Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly."
+                )
+            );
+        }
+
+        if (typeof this.dxvkVersion !== "string") {
+            const releaseFile = new Resource()
+                .wizard(wizard)
+                .url("https://raw.githubusercontent.com/doitsujin/dxvk/master/RELEASE")
+                .name("RELEASE.txt")
+                .get();
 
-    var setupFile = new Resource()
-        .wizard(this.wizard())
-        .url("https://github.com/doitsujin/dxvk/releases/download/v" + dxvkVersion + "/dxvk-" + dxvkVersion + ".tar.gz")
-        .name("dxvk-" + dxvkVersion + ".tar.gz")
-        .get();
-
-    new Extractor()
-        .wizard(this.wizard())
-        .archive(setupFile)
-        .to(this.prefixDirectory() + "/TMP/")
-        .extract();
-
-    var forEach = Array.prototype.forEach;
-    var sys32dir = this.system32directory();
-    var dxvkTmpDir = this.prefixDirectory() + "/TMP/dxvk-" + dxvkVersion;
-    var self = this;
-
-    //Copy 32 bits dll to system* and apply override
-    forEach.call(ls(dxvkTmpDir + "/x32"), function (file) {
-        if (file.endsWith(".dll")) {
-            cp(dxvkTmpDir + "/x32/" + file, sys32dir);
-            self.overrideDLL()
-                .set("native", [file])
-                .do();
+            this.dxvkVersion = cat(releaseFile).replaceAll("\\n", "");
         }
-    });
 
-    if (this.architecture() == "amd64") {
-        var sys64dir = this.system64directory();
-        //Copy 64 bits dll to system*
-        forEach.call(ls(dxvkTmpDir + "/x64"), function (file) {
+        const setupFile = new Resource()
+            .wizard(wizard)
+            .url(
+                `https://github.com/doitsujin/dxvk/releases/download/v${this.dxvkVersion}/dxvk-${this.dxvkVersion}.tar.gz`
+            )
+            .name(`dxvk-${this.dxvkVersion}.tar.gz`)
+            .get();
+
+        new Extractor()
+            .wizard(wizard)
+            .archive(setupFile)
+            .to(`${prefixDirectory}/TMP/`)
+            .extract();
+
+        const dxvkTmpDir = `${prefixDirectory}/TMP/dxvk-${this.dxvkVersion}`;
+
+        //Copy 32 bits dll to system* and apply override
+        ls(`${dxvkTmpDir}/x32`).forEach(file => {
             if (file.endsWith(".dll")) {
-                cp(dxvkTmpDir + "/x64/" + file, sys64dir);
+                cp(`${dxvkTmpDir}/x32/${file}`, sys32dir);
+
+                this.wine
+                    .overrideDLL()
+                    .set("native", [file])
+                    .do();
             }
         });
-    }
 
-    remove(this.prefixDirectory() + "/TMP/");
+        if (architecture == "amd64") {
+            const sys64dir = this.wine.system64directory();
 
-    return this;
-}
+            //Copy 64 bits dll to system*
+            ls(`${dxvkTmpDir}/x64`).forEach(file => {
+                if (file.endsWith(".dll")) {
+                    cp(`${dxvkTmpDir}/x64/${file}`, sys64dir);
+                }
+            });
+        }
 
-/**
- * Verb to install DXVK
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class DXVKVerb {
-    constructor() {
-        // do nothing
+        remove(`${prefixDirectory}/TMP/`);
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "DXVK", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "DXVK", java.util.Optional.empty());
+        wine.wizard(wizard);
 
         // get latest release version
-        var releaseFile = new Resource()
+        const releaseFile = new Resource()
             .wizard(wizard)
             .url("https://raw.githubusercontent.com/doitsujin/dxvk/master/RELEASE")
             .name("RELEASE.txt")
             .get();
 
-        var latestVersion = cat(releaseFile).replaceAll("\\n", "");
+        const latestVersion = cat(releaseFile).replaceAll("\\n", "");
+
         // query desired version (default: latest release version)
-        var versions = [
-            "1.2.2", "1.2.1", "1.2",
+        const versions = [
+            "1.2.2",
+            "1.2.1",
+            "1.2",
             "1.1.1",
-            "1.0.3", "1.0.2", "1.0.1", "1.0",
-            "0.96", "0.95", "0.94", "0.93", "0.92", "0.91", "0.90",
-            "0.81", "0.80", "0.72", "0.71", "0.70",
-            "0.65", "0.64", "0.63", "0.62", "0.61", "0.60",
-            "0.54", "0.53", "0.52", "0.51", "0.50",
-            "0.42", "0.41", "0.40",
-            "0.31", "0.30",
-            "0.21", "0.20"
+            "1.0.3",
+            "1.0.2",
+            "1.0.1",
+            "1.0",
+            "0.96",
+            "0.95",
+            "0.94",
+            "0.93",
+            "0.92",
+            "0.91",
+            "0.90",
+            "0.81",
+            "0.80",
+            "0.72",
+            "0.71",
+            "0.70",
+            "0.65",
+            "0.64",
+            "0.63",
+            "0.62",
+            "0.61",
+            "0.60",
+            "0.54",
+            "0.53",
+            "0.52",
+            "0.51",
+            "0.50",
+            "0.42",
+            "0.41",
+            "0.40",
+            "0.31",
+            "0.30",
+            "0.21",
+            "0.20"
         ];
 
-        var selectedVersion = wizard.menu(tr("Please select the version."), versions, latestVersion);
-        wine.wizard(wizard);
+        const selectedVersion = wizard.menu(tr("Please select the version."), versions, latestVersion);
+
         // install selected version
-        wine.DXVK(selectedVersion.text);
+        new DXVK(wine).withVersion(selectedVersion.text).go();
 
         wizard.close();
     }
 }
+
+module.default = DXVK;
 
@@ -157,7 +211,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Verbs_FAudio_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_FAudio_script.js.html index c63d3ab572..1d38851b04 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_FAudio_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_FAudio_script.js.html @@ -28,85 +28,94 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
-const {Extractor} = include("utils.functions.filesystem.extract");
-const {ls, cp} = include("utils.functions.filesystem.files");
+const { Extractor } = include("utils.functions.filesystem.extract");
+const { ls, cp } = include("utils.functions.filesystem.files");
+
+const Optional = Java.type("java.util.Optional");
 
 include("engines.wine.plugins.override_dll");
 
 /**
  * Verb to install FAudio
  * see: https://github.com/Kron4ek/FAudio-Builds
- *
- * @param {String} faudioVersion version of FAudio to downlaod
- * @returns {Wine} Wine object
  */
-Wine.prototype.faudio = function (faudioVersion) {
-    if (this.architecture() != "amd64") {
-        throw "FAudio does not support 32bit architecture.";
+class FAudio {
+    constructor(wine) {
+        this.wine = wine;
     }
-    if (typeof faudioVersion !== "string") {
-        faudioVersion = "19.06.07";
+
+    /**
+     * Sets the used FAudio version
+     *
+     * @param {string} faudioVersion The version of FAudio to downlaod
+     * @returns {FAudio} The FAudio object
+     */
+    withVersion(faudioVersion) {
+        this.faudioVersion = faudioVersion;
+
+        return this;
     }
 
-    var setupFile = new Resource()
-        .wizard(this.wizard())
-        .url(
-            "https://github.com/Kron4ek/FAudio-Builds/releases/download/" +
-                faudioVersion +
-                "/faudio-" +
-                faudioVersion +
-                ".tar.xz"
-        )
-        .name("faudio-" + faudioVersion + ".tar.xz")
-        .get();
-
-    new Extractor()
-        .wizard(this.wizard())
-        .archive(setupFile)
-        .to(this.prefixDirectory() + "/FAudio/")
-        .extract();
-
-    var forEach = Array.prototype.forEach;
-    var sys64dir = this.system64directory();
-    var faudioDir = this.prefixDirectory() + "/FAudio/faudio-" + faudioVersion;
-    var self = this;
-
-    forEach.call(ls(faudioDir + "/x64"), function (file) {
-        if (file.endsWith(".dll")) {
-            cp(faudioDir + "/x64/" + file, sys64dir);
-            self.overrideDLL()
-                .set("native", [file])
-                .do();
+    go() {
+        const wizard = this.wine.wizard();
+        const prefixDirectory = this.wine.prefixDirectory();
+        const system64directory = this.wine.system64directory();
+
+        if (this.wine.architecture() != "amd64") {
+            throw "FAudio does not support 32bit architecture.";
         }
-    });
 
-    return this;
-};
+        if (typeof this.faudioVersion !== "string") {
+            this.faudioVersion = "19.08";
+        }
 
-/**
- * Verb to install FAudio
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class FAudioVerb {
-    constructor() {
-        // do nothing
+        const setupFile = new Resource()
+            .wizard(wizard)
+            .url(
+                `https://github.com/Kron4ek/FAudio-Builds/releases/download/${this.faudioVersion}/faudio-${this.faudioVersion}.tar.xz`
+            )
+            .name(`faudio-${this.faudioVersion}.tar.xz`)
+            .get();
+
+        new Extractor()
+            .wizard(wizard)
+            .archive(setupFile)
+            .to(`${prefixDirectory}/FAudio/`)
+            .extract();
+
+        const faudioDir = `${prefixDirectory}/FAudio/faudio-${this.faudioVersion}`;
+
+        ls(`${faudioDir}/x64`).forEach(file => {
+            if (file.endsWith(".dll")) {
+                cp(`${faudioDir}/x64/${file}`, system64directory);
+
+                this.wine
+                    .overrideDLL()
+                    .set("native", [file])
+                    .do();
+            }
+        });
     }
 
-    install(container) {
-        const wizard = SetupWizard(InstallationType.VERBS, "FAudio", java.util.Optional.empty());
-        const versions = ["19.06.07", "19.06", "19.05", "19.04", "19.03", "19.02", "19.01"];
-
-        const selectedVersion = wizard.menu(tr("Please select the version."), versions, "19.06.07");
-
+    static install(container) {
         const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "FAudio", Optional.empty());
+
         wine.prefix(container);
         wine.wizard(wizard);
+
+        const versions = ["19.08", "19.07", "19.06.07", "19.06", "19.05", "19.04", "19.03", "19.02", "19.01"];
+
+        const selectedVersion = wizard.menu(tr("Please select the version."), versions, "19.08");
+
         // install selected version
-        wine.faudio(selectedVersion.text);
+        new FAudio(wine).withVersion(selectedVersion.text).go();
 
         wizard.close();
     }
 }
+
+module.default = FAudio;
 
@@ -117,7 +126,7 @@

Source: Engines/Wine/Verbs/FAudio/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 a4867423d0..4646cedf16 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_PhysX_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_PhysX_script.js.html @@ -29,45 +29,45 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
 
-include("engines.wine.verbs.luna");
+const Optional = Java.type("java.util.Optional");
 
 /**
  * Verb to install Nvidia PhysX
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.physx = function () {
-    var setupFile = new Resource()
-        .wizard(this.wizard())
-        .url("http://uk.download.nvidia.com/Windows/9.14.0702/PhysX-9.14.0702-SystemSoftware.msi")
-        .checksum("81e2d38e2356e807ad80cdf150ed5acfff839c8b")
-        .name("PhysX-9.14.0702-SystemSoftware.msi")
-        .get();
+class PhysX {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-    this.wizard().wait(tr("Please wait while {0} is installed...", "PhysX"));
-    this.run("msiexec", ["/i", setupFile, "/q"], null, false, true);
+    go() {
+        const wizard = this.wine.wizard();
 
-    return this;
-};
+        const setupFile = new Resource()
+            .wizard(wizard)
+            .url("http://uk.download.nvidia.com/Windows/9.14.0702/PhysX-9.14.0702-SystemSoftware.msi")
+            .checksum("81e2d38e2356e807ad80cdf150ed5acfff839c8b")
+            .name("PhysX-9.14.0702-SystemSoftware.msi")
+            .get();
 
-/**
- * Verb to install Nvidia PhysX
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class PhysXVerb {
-    constructor() {
-        // do nothing
+        wizard.wait(tr("Please wait while {0} is installed...", "PhysX"));
+
+        this.wine.run("msiexec", ["/i", setupFile, "/q"], null, false, true);
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "physx", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "physx", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.physx();
+
+        new PhysX(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = PhysX;
 
@@ -78,7 +78,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 0edd5cccec..b16f948872 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 @@ -29,43 +29,58 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
 
-/**
- * Verb to install QuickTime 7.6
- *
- * @returns {Wine} Wine object
- */
-Wine.prototype.quicktime76 = function () {
-    var setupFile = new Resource()
-        .wizard(this.wizard())
-        .url("http://appldnld.apple.com/QuickTime/041-0025.20101207.Ptrqt/QuickTimeInstaller.exe")
-        .checksum("1eec8904f041d9e0ad3459788bdb690e45dbc38e")
-        .name("QuickTimeInstaller.exe")
-        .get();
-
-    this.wizard().wait(tr("Please wait while {0} is installed...", "QuickTime"));
-    this.run(setupFile, ["ALLUSERS=1", "DESKTOP_SHORTCUTS=0", "QTTaskRunFlags=0", "QTINFO.BISQTPRO=1", "SCHEDULE_ASUW=0", "REBOOT_REQUIRED=No"], null, false, true);
-
-    return this;
-};
+const Optional = Java.type("java.util.Optional");
 
 /**
  * Verb to install QuickTime 7.6
  */
-// eslint-disable-next-line no-unused-vars
-module.default = class QuickTime76Verb {
-    constructor() {
-        // do nothing
+class QuickTime76 {
+    constructor(wine) {
+        this.wine = wine;
     }
 
-    install(container) {
-        var wine = new Wine();
+    go() {
+        const wizard = this.wine.wizard();
+
+        const setupFile = new Resource()
+            .wizard(wizard)
+            .url("http://appldnld.apple.com/QuickTime/041-0025.20101207.Ptrqt/QuickTimeInstaller.exe")
+            .checksum("1eec8904f041d9e0ad3459788bdb690e45dbc38e")
+            .name("QuickTimeInstaller.exe")
+            .get();
+
+        wizard.wait(tr("Please wait while {0} is installed...", "QuickTime"));
+
+        this.wine.run(
+            setupFile,
+            [
+                "ALLUSERS=1",
+                "DESKTOP_SHORTCUTS=0",
+                "QTTaskRunFlags=0",
+                "QTINFO.BISQTPRO=1",
+                "SCHEDULE_ASUW=0",
+                "REBOOT_REQUIRED=No"
+            ],
+            null,
+            false,
+            true
+        );
+    }
+
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "quicktime76", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "quicktime76", java.util.Optional.empty());
         wine.wizard(wizard);
+
         wine.quicktime76();
+
         wizard.close();
     }
 }
+
+module.default = QuickTime76;
 
@@ -76,7 +91,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Verbs_Remove Mono_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_Remove Mono_script.js.html index 83acb04dd5..eb67872f4b 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_Remove Mono_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_Remove Mono_script.js.html @@ -27,53 +27,60 @@

Source: Engines/Wine/Verbs/Remove Mono/script.js

const Wine = include("engines.wine.engine.object");
-const {remove} = include("utils.functions.filesystem.files");
+const { remove } = include("utils.functions.filesystem.files");
+
+const Optional = Java.type("java.util.Optional");
 
 include("engines.wine.plugins.regedit");
 
 /**
  * Verb to remove mono
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.removeMono = function () {
-    if (this.uninstall("Mono")) {
-        this.wizard().wait(tr("Please wait..."));
-        this.regedit().deleteKey("HKLM\\Software\\Microsoft\\.NETFramework\\v2.0.50727\\SBSDisabled");
+class RemoveMono {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-        this.wizard().wait(tr("Please wait..."));
-        this.regedit().deleteKey("HKLM\\Software\\Microsoft\\NET Framework Setup\\NDP\\v3.5");
+    go() {
+        const wizard = this.wine.wizard();
+        const system32directory = this.wine.system32directory();
+        const system64directory = this.wine.system64directory();
 
-        this.wizard().wait(tr("Please wait..."));
-        this.regedit().deleteKey("HKLM\\Software\\Microsoft\\NET Framework Setup\\NDP\\v4");
+        if (this.wine.uninstall("Mono")) {
+            wizard.wait(tr("Please wait..."));
 
-        remove(this.system32directory() + "/mscoree.dll");
-        if (this.architecture() == "amd64") {
-            remove(this.system64directory() + "/mscoree.dll");
-        }
-    }
+            this.wine.regedit().deleteKey("HKLM\\Software\\Microsoft\\.NETFramework\\v2.0.50727\\SBSDisabled");
 
-    return this;
-};
+            wizard.wait(tr("Please wait..."));
 
-/**
- * Verb to remove mono
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class RemoveMonoVerb {
-    constructor() {
-        // do nothing
+            this.wine.regedit().deleteKey("HKLM\\Software\\Microsoft\\NET Framework Setup\\NDP\\v3.5");
+
+            wizard.wait(tr("Please wait..."));
+
+            this.wine.regedit().deleteKey("HKLM\\Software\\Microsoft\\NET Framework Setup\\NDP\\v4");
+
+            remove(`${system32directory}/mscoree.dll`);
+
+            if (this.wine.architecture() == "amd64") {
+                remove(`${system64directory}/mscoree.dll`);
+            }
+        }
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "remove_mono", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "remove_mono", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.removeMono();
+
+        new RemoveMono(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = RemoveMono;
 
@@ -84,7 +91,7 @@

Source: Engines/Wine/Verbs/Remove Mono/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 3094d53b18..c925612f93 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_Tahoma_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_Tahoma_script.js.html @@ -28,59 +28,63 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
-const {cp} = include("utils.functions.filesystem.files");
-const {CabExtract} = include("utils.functions.filesystem.extract");
+const { cp } = include("utils.functions.filesystem.files");
+const { CabExtract } = include("utils.functions.filesystem.extract");
+
+const Optional = Java.type("java.util.Optional");
 
 include("engines.wine.plugins.register_font");
-include("engines.wine.verbs.luna");
 
 /**
  * Verb to install the Tahoma font
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.tahoma = function () {
-    var tahoma = new Resource()
-        .wizard(this.wizard())
-        .url("https://master.dl.sourceforge.net/project/corefonts/OldFiles/IELPKTH.CAB")
-        .checksum("40c3771ba4ce0811fe18a7a7903e40fcce46422d")
-        .name("IELPKTH.CAB")
-        .get();
-
-    new CabExtract()
-        .archive(tahoma)
-        .to(this.prefixDirectory() + "/drive_c/tahoma/")
-        .extract(["-L", "-F", "tahoma*.tff"]);
-
-    cp(this.prefixDirectory() + "/drive_c/tahoma/tahoma.ttf", this.fontDirectory());
-    cp(this.prefixDirectory() + "/drive_c/tahoma/tahomabd.ttf", this.fontDirectory());
-
-    this.registerFont()
-        .set("Tahoma", "tahoma.ttf")
-        .set("Tahoma Bold", "tahomabd.ttf")
-        .do();
-
-    return this;
-};
+class Tahoma {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-/**
- * Verb to install the Tahoma font
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class TahomaVerb {
-    constructor() {
-        // do nothing
+    go() {
+        const wizard = this.wine.wizard();
+        const prefixDirectory = this.wine.prefixDirectory();
+        const fontDirectory = this.wine.fontDirectory();
+
+        const tahoma = new Resource()
+            .wizard(wizard)
+            .url("https://master.dl.sourceforge.net/project/corefonts/OldFiles/IELPKTH.CAB")
+            .checksum("40c3771ba4ce0811fe18a7a7903e40fcce46422d")
+            .name("IELPKTH.CAB")
+            .get();
+
+        new CabExtract()
+            .wizard(wizard)
+            .archive(tahoma)
+            .to(`${prefixDirectory}/drive_c/tahoma/`)
+            .extract(["-L", "-F", "tahoma*.tff"]);
+
+        cp(`${prefixDirectory}/drive_c/tahoma/tahoma.ttf`, fontDirectory);
+        cp(`${prefixDirectory}/drive_c/tahoma/tahomabd.ttf`, fontDirectory);
+
+        this.wine
+            .registerFont()
+            .set("Tahoma", "tahoma.ttf")
+            .set("Tahoma Bold", "tahomabd.ttf")
+            .do();
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "tahoma", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "tahoma", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.tahoma();
+
+        new Tahoma(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = Tahoma;
 
@@ -91,7 +95,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 a1516572ba..cf255245bd 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_Uplay_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_Uplay_script.js.html @@ -29,42 +29,48 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
 
+const Optional = Java.type("java.util.Optional");
+
 /**
  * Verb to install Uplay
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.uplay = function () {
-    var setupFile = new Resource()
-        .wizard(this.wizard())
-        .url("https://ubistatic3-a.akamaihd.net/orbit/launcher_installer/UplayInstaller.exe")
-        .name("UplayInstaller.exe")
-        .get();
+class Uplay {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-    this.wizard().wait(tr("Please follow the steps of the Uplay setup.\n\nUncheck \"Run Uplay\" or close Uplay completely after the setup so that the installation can continue."));
-    this.run(setupFile, [], null, false, true);
+    go() {
+        const wizard = this.wine.wizard();
 
-    return this;
-};
+        const setupFile = new Resource()
+            .wizard(wizard)
+            .url("https://ubistatic3-a.akamaihd.net/orbit/launcher_installer/UplayInstaller.exe")
+            .name("UplayInstaller.exe")
+            .get();
 
-/**
- * Verb to install Uplay
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class UplayVerb {
-    constructor() {
-        // do nothing
+        wizard.wait(
+            tr(
+                'Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue.'
+            )
+        );
+
+        this.wine.run(setupFile, [], null, false, true);
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "uplay", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "uplay", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.uplay();
+
+        new Uplay(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = Uplay;
 
@@ -75,7 +81,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Verbs_VK9_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_VK9_script.js.html index 6b21d2c777..cc8d75103a 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_VK9_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_VK9_script.js.html @@ -28,102 +28,127 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
-const {Extractor} = include("utils.functions.filesystem.extract");
-const {cp, remove} = include("utils.functions.filesystem.files");
+const { Extractor } = include("utils.functions.filesystem.extract");
+const { cp, remove } = include("utils.functions.filesystem.files");
+
+const Optional = Java.type("java.util.Optional");
 
 include("engines.wine.plugins.override_dll");
 
+const operatingSystemFetcher = Bean("operatingSystemFetcher");
+
 /**
  * Verb to install VK9
  * see: https://github.com/disks86/VK9
- *
- * @param {String} vk9Version VK9 version to install
- * @returns {Wine} Wine object
  */
-Wine.prototype.VK9 = function (vk9Version) {
-    var operatingSystemFetcher = Bean("operatingSystemFetcher");
-
-    if (operatingSystemFetcher.fetchCurrentOperationSystem() != "Linux") {
-        this.wizard().message(tr("VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement"));
-    } else {
-        this.wizard().message(tr("Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly."));
+class VK9 {
+    constructor(wine) {
+        this.wine = wine;
     }
 
-    print("NOTE: wine version should be greater or equal to 3.5");
-    print("NOTE: works from 0.28.0");
+    /**
+     * Sets the VK9 version to install
+     *
+     * @param {string} vk9Version The VK9 version to install
+     * @returns {VK9} The VK9 object
+     */
+    withVersion(vk9Version) {
+        this.vk9Version = vk9Version;
 
-    if (typeof vk9Version !== 'string') {
-        vk9Version = "0.29.0";
+        return this;
     }
 
-    var setupFile32 = new Resource()
-        .wizard(this.wizard())
-        .url("https://github.com/disks86/VK9/releases/download/" + vk9Version + "/" + vk9Version + "-bin-x86-Release.zip")
-        .name(vk9Version + "-bin-x86-Realease.zip")
-        .get();
-
-    new Extractor()
-        .wizard(this.wizard())
-        .archive(setupFile32)
-        .to(this.prefixDirectory() + "/TMP32/")
-        .extract();
-
-    cp(this.prefixDirectory() + "/TMP32/" + vk9Version + "-bin-x86-Release/" + "d3d9.dll", this.system32directory());
-
-    remove(this.prefixDirectory() + "/TMP32/");
-
-    if (this.architecture() === "amd64") {
-        var setupFile64 = new Resource()
-            .wizard(this.wizard())
-            .url("https://github.com/disks86/VK9/releases/download/" + vk9Version + "/" + vk9Version + "-bin-x86_64-Release.zip")
-            .name(vk9Version + "-bin-x86_64-Realease.zip")
+    go() {
+        const wizard = this.wine.wizard();
+        const prefixDirectory = this.wine.prefixDirectory();
+        const system32directory = this.wine.system32directory();
+        const system64directory = this.wine.system64directory();
+
+        if (operatingSystemFetcher.fetchCurrentOperationSystem() != "Linux") {
+            wizard.message(
+                tr(
+                    "VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement"
+                )
+            );
+        } else {
+            wizard.message(
+                tr(
+                    "Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly."
+                )
+            );
+        }
+
+        print("NOTE: wine version should be greater or equal to 3.5");
+        print("NOTE: works from 0.28.0");
+
+        if (typeof this.vk9Version !== "string") {
+            this.vk9Version = "0.29.0";
+        }
+
+        const setupFile32 = new Resource()
+            .wizard(wizard)
+            .url(
+                `https://github.com/disks86/VK9/releases/download/${this.vk9Version}/${this.vk9Version}-bin-x86-Release.zip`
+            )
+            .name(`${this.vk9Version}-bin-x86-Realease.zip`)
             .get();
 
         new Extractor()
-            .wizard(this.wizard())
-            .archive(setupFile64)
-            .to(this.prefixDirectory() + "/TMP64/")
+            .wizard(wizard)
+            .archive(setupFile32)
+            .to(`${prefixDirectory}/TMP32/`)
             .extract();
 
-        cp(this.prefixDirectory() + "/TMP64/" + vk9Version + "-bin-x86_64-Release/" + "d3d9.dll", this.system64directory());
+        cp(`${prefixDirectory}/TMP32/${this.vk9Version}-bin-x86-Release/d3d9.dll`, system32directory);
 
-        remove(this.prefixDirectory() + "/TMP64/");
-    }
+        remove(`${prefixDirectory}/TMP32/`);
 
-    this.overrideDLL()
-        .set("native", ["d3d9"])
-        .do();
+        if (this.wine.architecture() === "amd64") {
+            const setupFile64 = new Resource()
+                .wizard(wizard)
+                .url(
+                    `https://github.com/disks86/VK9/releases/download/${this.vk9Version}/${this.vk9Version}-bin-x86_64-Release.zip`
+                )
+                .name(`${this.vk9Version}-bin-x86_64-Realease.zip`)
+                .get();
 
-    return this;
-}
+            new Extractor()
+                .wizard(wizard)
+                .archive(setupFile64)
+                .to(`${prefixDirectory}/TMP64/`)
+                .extract();
 
-/**
- * Verb to install VK9
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class VK9Verb {
-    constructor() {
-        // do nothing
+            cp(`${prefixDirectory}/TMP64/${this.vk9Version}-bin-x86_64-Release/d3d9.dll`, system64directory);
+
+            remove(`${prefixDirectory}/TMP64/`);
+        }
+
+        this.wine
+            .overrideDLL()
+            .set("native", ["d3d9"])
+            .do();
     }
 
-    install(container) {
-        var wine = new Wine();
-        wine.prefix(container);
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "VK9", Optional.empty());
 
-        var wizard = SetupWizard(InstallationType.VERBS, "VK9", java.util.Optional.empty());
+        wine.prefix(container);
+        wine.wizard(wizard);
 
         // this script is not able to install older versions (VK9.conf mandatory)
-        var versions = ["0.29.0", "0.28.1", "0.28.0"];
+        const versions = ["0.29.0", "0.28.1", "0.28.0"];
         // query desired version (default: 0.28.1)
-        var selectedVersion = wizard.menu(tr("Please select the version."), versions, "0.28.1");
-        wine.wizard(wizard);
+        const selectedVersion = wizard.menu(tr("Please select the version."), versions, "0.28.1");
 
         // install selected version
-        wine.VK9(selectedVersion.text);
+        new VK9(wine).withVersion(selectedVersion.text).go();
 
         wizard.close();
     }
 }
+
+module.default = VK9;
 
@@ -134,7 +159,7 @@

Source: Engines/Wine/Verbs/VK9/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 31820c85ed..7430b622d2 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 @@ -31,54 +31,60 @@

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

const { CabExtract } = include("utils.functions.filesystem.extract"); const { remove, fileName } = include("utils.functions.filesystem.files"); +const Optional = Java.type("java.util.Optional"); + /** * Verb to install Windows XP Service Pack 3 - * - * @param {string} fileToExtract path to file which shall be extracted - * @returns {Wine} Wine object */ -Wine.prototype.sp3extract = function (fileToExtract) { - const targetDirectory = this.system32directory(); - - const setupFile = new Resource() - .wizard(this.wizard()) - .url("http://freeware.epsc.wustl.edu/Win/XP_SP3/WindowsXP-KB936929-SP3-x86-ENU.exe") - .checksum("c81472f7eeea2eca421e116cd4c03e2300ebfde4") - .name("WindowsXP-KB936929-SP3-x86-ENU.exe") - .get(); - - new CabExtract() - .archive(setupFile) - .wizard(this.wizard()) - .to(this.prefixDirectory() + "/drive_c/sp3/") - .extract(["-F", "i386/" + fileToExtract.slice(0, -1) + "_"]); - - remove(targetDirectory + "/" + fileToExtract); +class WindowsXPSP3 { + constructor(wine) { + this.wine = wine; + } - new CabExtract() - .archive(this.prefixDirectory() + "/drive_c/sp3/i386/" + fileToExtract.slice(0, -1) + "_") - .wizard(this.wizard()) - .to(targetDirectory) - .extract(); + /** + * Sets the path to the file which shall be extracted + * + * @param {string} fileToExtract The path to the file which shall be extracted + * @returns {WindowsXPSP3} The WindowsXPSP3 object + */ + withFileToExtract(fileToExtract) { + this.fileToExtract = fileToExtract; - return this; -}; + return this; + } -/** - * Verb to install Windows XP Service Pack 3 - */ -module.default = class WindowsXPSP3Verb { - constructor() { - // do nothing + go() { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + const system32directory = this.wine.system32directory(); + + const setupFile = new Resource() + .wizard(wizard) + .url("http://freeware.epsc.wustl.edu/Win/XP_SP3/WindowsXP-KB936929-SP3-x86-ENU.exe") + .checksum("c81472f7eeea2eca421e116cd4c03e2300ebfde4") + .name("WindowsXP-KB936929-SP3-x86-ENU.exe") + .get(); + + new CabExtract() + .wizard(wizard) + .archive(setupFile) + .to(`${prefixDirectory}/drive_c/sp3/`) + .extract(["-F", `i386/${this.fileToExtract.slice(0, -1)}_`]); + + remove(`${system32directory}/${this.fileToExtract}`); + + new CabExtract() + .wizard(wizard) + .archive(`${prefixDirectory}/drive_c/sp3/i386/${this.fileToExtract.slice(0, -1)}_`) + .to(system32directory) + .extract(); } - install(container) { + static install(container) { const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "sp3extract", Optional.empty()); wine.prefix(container); - - const wizard = SetupWizard(InstallationType.VERBS, "sp3extract", java.util.Optional.empty()); - wine.wizard(wizard); // query .dll file which shall be extracted @@ -87,11 +93,13 @@

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

); // extract requested file - wine.sp3extract(fileToExtract); + new WindowsXPSP3(wine).withFileToExtract(fileToExtract).go(); wizard.close(); } -}; +} + +module.default = WindowsXPSP3;
@@ -102,7 +110,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Verbs_adobeair_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_adobeair_script.js.html index be9a9b4933..a8ad4ac2ce 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_adobeair_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_adobeair_script.js.html @@ -29,55 +29,52 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
 
+const Optional = Java.type("java.util.Optional");
+
 include("engines.wine.plugins.windows_version");
 
 /**
  * Verb to install adobeair
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.adobeair = function () {
-    const adobeair = new Resource()
-        .wizard(this.wizard())
-        .url("https://airdownload.adobe.com/air/win/download/latest/AdobeAIRInstaller.exe")
-        .name("AdobeAIRInstaller.exe")
-        .get();
-
-    // Using Windows XP to workaround the wine bug 43506
-    // See https://bugs.winehq.org/show_bug.cgi?id=43506
-    const currentWindowsVersion = this.windowsVersion();
+class AdobeAir {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-    this.windowsVersion("winxp");
+    go() {
+        const wizard = this.wine.wizard();
+        // Using Windows XP to workaround the wine bug 43506
+        // See https://bugs.winehq.org/show_bug.cgi?id=43506
+        const currentWindowsVersion = this.wine.windowsVersion();
 
-    this.run(adobeair);
-    this.wait();
+        this.wine.windowsVersion("winxp");
 
-    this.windowsVersion(currentWindowsVersion);
+        const adobeair = new Resource()
+            .wizard(wizard)
+            .url("https://airdownload.adobe.com/air/win/download/latest/AdobeAIRInstaller.exe")
+            .name("AdobeAIRInstaller.exe")
+            .get();
 
-    return this;
-};
+        this.wine.run(adobeair);
+        this.wine.wait();
 
-/**
- * Verb to install adobeair
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class AdobeAirVerb {
-    constructor() {
-        // do nothing
+        this.wine.windowsVersion(currentWindowsVersion);
     }
 
-    install(container) {
+    static install(container) {
         const wine = new Wine();
-        wine.prefix(container);
+        const wizard = SetupWizard(InstallationType.VERBS, "adobeair", Optional.empty());
 
-        const wizard = SetupWizard(InstallationType.VERBS, "adobeair", java.util.Optional.empty());
+        wine.prefix(container);
         wine.wizard(wizard);
 
-        wine.adobeair();
+        new AdobeAir(wine).go();
 
         wizard.close();
     }
 }
+
+module.default = AdobeAir;
 
@@ -88,7 +85,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Verbs_amstream_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_amstream_script.js.html index 6164bfcfb5..f299c67f0d 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_amstream_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_amstream_script.js.html @@ -28,80 +28,110 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
-const {cp, remove} = include("utils.functions.filesystem.files");
-const {CabExtract} = include("utils.functions.filesystem.extract");
+const { cp, remove } = include("utils.functions.filesystem.files");
+const { CabExtract } = include("utils.functions.filesystem.extract");
+
+const Optional = Java.type("java.util.Optional");
 
 include("engines.wine.plugins.override_dll");
 include("engines.wine.plugins.regsvr32");
-include("engines.wine.verbs.luna");
 
 /**
  * Verb to install amstream
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.amstream = function () {
-    var setupFile = new Resource()
-        .wizard(this.wizard())
-        .url("https://download.microsoft.com/download/0/A/F/0AFB5316-3062-494A-AB78-7FB0D4461357/windows6.1-KB976932-X86.exe")
-        .checksum("c3516bc5c9e69fee6d9ac4f981f5b95977a8a2fa")
-        .name("windows6.1-KB976932-X86.exe")
-        .get();
-
-    this.wizard().wait(tr("Please wait while {0} is installed...", "amstream"));
-
-    remove(this.system32directory() + "/amstream.dll");
-
-    new CabExtract()
-        .archive(setupFile)
-        .to(this.system32directory())
-        .extract(["-L", "-F", "x86_microsoft-windows-directshow-other_31bf3856ad364e35_6.1.7601.17514_none_0f58f1e53efca91e/amstream.dll"]);
-
-    cp(this.system32directory() + "/x86_microsoft-windows-directshow-other_31bf3856ad364e35_6.1.7601.17514_none_0f58f1e53efca91e/amstream.dll", this.system32directory());
-    this.regsvr32().install("amstream.dll");
-
-    if (this.architecture() == "amd64") {
-        var setupFilex64 = new Resource()
-            .wizard(this.wizard())
-            .url("https://download.microsoft.com/download/0/A/F/0AFB5316-3062-494A-AB78-7FB0D4461357/windows6.1-KB976932-X64.exe")
-            .checksum("74865ef2562006e51d7f9333b4a8d45b7a749dab")
-            .name("windows6.1-KB976932-X64.exe")
-            .get();
-        this.wizard().wait(tr("Please wait while {0} is installed...", "amstream"));
-        remove(this.system64directory() + "/amstream.dll");
-        new CabExtract()
-            .archive(setupFilex64)
-            .to(this.system64directory())
-            .extract(["-L", "-F", "amd64_microsoft-windows-directshow-other_31bf3856ad364e35_6.1.7601.17514_none_6b778d68f75a1a54/amstream.dll"]);
-        cp(this.system64directory() + "/amd64_microsoft-windows-directshow-other_31bf3856ad364e35_6.1.7601.17514_none_6b778d68f75a1a54/amstream.dll", this.system64directory());
-        this.regsvr64().install("amstream.dll");
+class Amstream {
+    constructor(wine) {
+        this.wine = wine;
     }
 
-    this.overrideDLL()
-        .set("native,builtin", ["amstream"])
-        .do();
+    go() {
+        const wizard = this.wine.wizard();
+        const system32directory = this.wine.system32directory();
+        const architecture = this.wine.architecture();
+
+        const setupFile = new Resource()
+            .wizard(wizard)
+            .url(
+                "https://download.microsoft.com/download/0/A/F/0AFB5316-3062-494A-AB78-7FB0D4461357/windows6.1-KB976932-X86.exe"
+            )
+            .checksum("c3516bc5c9e69fee6d9ac4f981f5b95977a8a2fa")
+            .name("windows6.1-KB976932-X86.exe")
+            .get();
 
-    return this;
-};
+        wizard.wait(tr("Please wait while {0} is installed...", "amstream"));
 
-/**
- * Verb to install amstream
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class AmstreamVerb {
-    constructor() {
-        // do nothing
+        remove(`${system32directory}/amstream.dll`);
+
+        new CabExtract()
+            .wizard(wizard)
+            .archive(setupFile)
+            .to(system32directory)
+            .extract([
+                "-L",
+                "-F",
+                "x86_microsoft-windows-directshow-other_31bf3856ad364e35_6.1.7601.17514_none_0f58f1e53efca91e/amstream.dll"
+            ]);
+
+        cp(
+            `${system32directory}/x86_microsoft-windows-directshow-other_31bf3856ad364e35_6.1.7601.17514_none_0f58f1e53efca91e/amstream.dll`,
+            system32directory
+        );
+
+        this.wine.regsvr32().install("amstream.dll");
+
+        if (architecture == "amd64") {
+            const system64directory = this.wine.system64directory();
+
+            const setupFilex64 = new Resource()
+                .wizard(wizard)
+                .url(
+                    "https://download.microsoft.com/download/0/A/F/0AFB5316-3062-494A-AB78-7FB0D4461357/windows6.1-KB976932-X64.exe"
+                )
+                .checksum("74865ef2562006e51d7f9333b4a8d45b7a749dab")
+                .name("windows6.1-KB976932-X64.exe")
+                .get();
+
+            wizard.wait(tr("Please wait while {0} is installed...", "amstream"));
+
+            remove(`${system64directory}/amstream.dll`);
+
+            new CabExtract()
+                .wizard(wizard)
+                .archive(setupFilex64)
+                .to(system64directory)
+                .extract([
+                    "-L",
+                    "-F",
+                    "amd64_microsoft-windows-directshow-other_31bf3856ad364e35_6.1.7601.17514_none_6b778d68f75a1a54/amstream.dll"
+                ]);
+            cp(
+                `${system64directory}/amd64_microsoft-windows-directshow-other_31bf3856ad364e35_6.1.7601.17514_none_6b778d68f75a1a54/amstream.dll`,
+                system64directory
+            );
+
+            this.wine.regsvr64().install("amstream.dll");
+        }
+
+        this.wine
+            .overrideDLL()
+            .set("native,builtin", ["amstream"])
+            .do();
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "amstream", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "amstream", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.amstream();
+
+        new Amstream(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = Amstream;
 
@@ -112,7 +142,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Verbs_atmlib_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_atmlib_script.js.html index 9516ede44c..f0bd128ff7 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_atmlib_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_atmlib_script.js.html @@ -28,57 +28,61 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
-const {CabExtract} = include("utils.functions.filesystem.extract");
-const {remove} = include("utils.functions.filesystem.files");
+const { CabExtract } = include("utils.functions.filesystem.extract");
+const { remove } = include("utils.functions.filesystem.files");
 
-/**
- * Verb to install atmlib
- *
- * @returns {Wine} Wine object
- */
-Wine.prototype.atmlib = function () {
-    var setupFile = new Resource()
-        .wizard(this.wizard())
-        .url("https://ftp.gnome.org/mirror/archive/ftp.sunet.se/pub/security/vendor/microsoft/win2000/Service_Packs/usa/W2KSP4_EN.EXE")
-        .checksum("fadea6d94a014b039839fecc6e6a11c20afa4fa8")
-        .name("W2ksp4_EN.exe")
-        .get();
-
-    new CabExtract()
-        .archive(setupFile)
-        .wizard(this.wizard())
-        .to(this.system32directory())
-        .extract();
-
-    new CabExtract()
-        .archive(this.system32directory() + "/i386/atmlib.dl_")
-        .wizard(this.wizard())
-        .to(this.system32directory())
-        .extract();
-
-    remove(this.system32directory() + "/i386/");
-
-    return this;
-};
+const Optional = Java.type("java.util.Optional");
 
 /**
  * Verb to install atmlib
  */
-// eslint-disable-next-line no-unused-vars
-module.default = class AtmlibVerb {
-    constructor() {
-        // do nothing
+class Atmlib {
+    constructor(wine) {
+        this.wine = wine;
+    }
+
+    go() {
+        const wizard = this.wine.wizard();
+        const system32directory = this.wine.system32directory();
+
+        const setupFile = new Resource()
+            .wizard(wizard)
+            .url(
+                "https://ftp.gnome.org/mirror/archive/ftp.sunet.se/pub/security/vendor/microsoft/win2000/Service_Packs/usa/W2KSP4_EN.EXE"
+            )
+            .checksum("fadea6d94a014b039839fecc6e6a11c20afa4fa8")
+            .name("W2ksp4_EN.exe")
+            .get();
+
+        new CabExtract()
+            .archive(setupFile)
+            .wizard(wizard)
+            .to(system32directory)
+            .extract();
+
+        new CabExtract()
+            .archive(`${system32directory}/i386/atmlib.dl_`)
+            .wizard(wizard)
+            .to(system32directory)
+            .extract();
+
+        remove(`${system32directory}/i386/`);
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "atmlib", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "atmlib", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.atmlib();
+
+        new Atmlib(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = Atmlib;
 
@@ -89,7 +93,7 @@

Source: Engines/Wine/Verbs/atmlib/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 6f1938c448..184fac5b0b 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_corefonts_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_corefonts_script.js.html @@ -30,160 +30,159 @@

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

const Resource = include("utils.functions.net.resource"); const { CabExtract } = include("utils.functions.filesystem.extract"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.register_font"); -include("engines.wine.verbs.luna"); /** * Verb to install corefonts - * - * @returns {Wine} Wine object */ -Wine.prototype.corefonts = function () { - const fontResources = [ - new Resource() - .wizard(this.wizard()) - .url("https://mirrors.kernel.org/gentoo/distfiles/arial32.exe") - .checksum("6d75f8436f39ab2da5c31ce651b7443b4ad2916e") - .name("arial32.exe") - .get(), - - new Resource() - .wizard(this.wizard()) - .url("https://mirrors.kernel.org/gentoo/distfiles/arialb32.exe") - .checksum("d45cdab84b7f4c1efd6d1b369f50ed0390e3d344") - .name("arialb32.exe") - .get(), - - new Resource() - .wizard(this.wizard()) - .url("https://mirrors.kernel.org/gentoo/distfiles/comic32.exe") - .checksum("2371d0327683dcc5ec1684fe7c275a8de1ef9a51") - .name("comic32.exe") - .get(), - - new Resource() - .wizard(this.wizard()) - .url("https://mirrors.kernel.org/gentoo/distfiles/courie32.exe") - .checksum("06a745023c034f88b4135f5e294fece1a3c1b057") - .name("courie32.exe") - .get(), - - new Resource() - .wizard(this.wizard()) - .url("https://mirrors.kernel.org/gentoo/distfiles/georgi32.exe") - .checksum("90e4070cb356f1d811acb943080bf97e419a8f1e") - .name("georgi32.exe") - .get(), - - new Resource() - .wizard(this.wizard()) - .url("https://mirrors.kernel.org/gentoo/distfiles/impact32.exe") - .checksum("86b34d650cfbbe5d3512d49d2545f7509a55aad2") - .name("impact32.exe") - .get(), - - new Resource() - .wizard(this.wizard()) - .url("https://mirrors.kernel.org/gentoo/distfiles/times32.exe") - .checksum("20b79e65cdef4e2d7195f84da202499e3aa83060") - .name("times32.exe") - .get(), - - new Resource() - .wizard(this.wizard()) - .url("https://mirrors.kernel.org/gentoo/distfiles/trebuc32.exe ") - .checksum("50aab0988423efcc9cf21fac7d64d534d6d0a34a") - .name("trebuc32.exe") - .get(), - - new Resource() - .wizard(this.wizard()) - .url("https://mirrors.kernel.org/gentoo/distfiles/verdan32.exe ") - .checksum("f5b93cedf500edc67502f116578123618c64a42a") - .name("verdan32.exe") - .get(), - - new Resource() - .wizard(this.wizard()) - .url("https://mirrors.kernel.org/gentoo/distfiles/webdin32.exe ") - .checksum("2fb4a42c53e50bc70707a7b3c57baf62ba58398f") - .name("webdin32.exe") - .get() - ]; - - const progressBar = this.wizard().progressBar(tr("Please wait...")); - progressBar.setText(tr("Installing {0}...", tr("fonts"))); - progressBar.setProgressPercentage(0); - - fontResources.reduce((numInstalledFonts, fontResource) => { - progressBar.setText(tr("Installing {0}...", tr("fonts"))); - progressBar.setProgressPercentage((numInstalledFonts * 100) / fontResources.length); - - new CabExtract() - .archive(fontResource) - .wizard(this.wizard()) - .to(this.fontDirectory()) - .extract(); - - return numInstalledFonts + 1; - }, 0); - - this.registerFont() - .set("Arial", "Arial.TTF") - .set("Arial Bold", "Arialbd.TTF") - .set("Arial Bold Italic", "Arialbi.TTF") - .set("Arial Italic", "Ariali.TTF") - .set("Arial Black", "AriBlk.TTF") - .set("Comic Sans MS", "Comic.TTF") - .set("Comic Sans MS Bold", "Comicbd.TTF") - .set("Courier New", "Cour.TTF") - .set("Courier New Bold", "CourBD.TTF") - .set("Courier New Bold Italic", "CourBI.TTF") - .set("Courier New Italic", "Couri.TTF") - .set("Georgia", "Georgia.TTF") - .set("Georgia Bold", "Georgiab.TTF") - .set("Georgia Bold Italic", "Georgiaz.TTF") - .set("Georgia Italic", "Georgiai.TTF") - .set("Impact", "Impact.TTF") - .set("Times New Roman", "Times.TTF") - .set("Times New Roman Bold", "Timesbd.TTF") - .set("Times New Roman Bold Italic", "Timesbi.TTF") - .set("Times New Roman Italic", "Timesi.TTF") - .set("Trebucet MS", "Trebuc.TTF") - .set("Trebucet MS Bold", "Trebucbd.TTF") - .set("Trebucet MS Bold Italic", "Trebucbi.TTF") - .set("Trebucet MS Italic", "Trebucit.TTF") - .set("Verdana", "Verdana.TTF") - .set("Verdana Bold", "Verdanab.TTF") - .set("Verdana Bold Italic", "Verdanaz.TTF") - .set("Verdana Italic", "Verdanai.TTF") - .set("Webdings", "Webdings.TTF") - .do(); - - return this; -}; +class Corefonts { + constructor(wine) { + this.wine = wine; + } -/** - * Verb to install corefonts - */ -module.default = class CorefontsVerb { - constructor() { - // do nothing + go() { + const wizard = this.wine.wizard(); + const fontDirectory = this.wine.fontDirectory(); + + const fontResources = [ + new Resource() + .wizard(wizard) + .url("https://mirrors.kernel.org/gentoo/distfiles/arial32.exe") + .checksum("6d75f8436f39ab2da5c31ce651b7443b4ad2916e") + .name("arial32.exe") + .get(), + + new Resource() + .wizard(wizard) + .url("https://mirrors.kernel.org/gentoo/distfiles/arialb32.exe") + .checksum("d45cdab84b7f4c1efd6d1b369f50ed0390e3d344") + .name("arialb32.exe") + .get(), + + new Resource() + .wizard(wizard) + .url("https://mirrors.kernel.org/gentoo/distfiles/comic32.exe") + .checksum("2371d0327683dcc5ec1684fe7c275a8de1ef9a51") + .name("comic32.exe") + .get(), + + new Resource() + .wizard(wizard) + .url("https://mirrors.kernel.org/gentoo/distfiles/courie32.exe") + .checksum("06a745023c034f88b4135f5e294fece1a3c1b057") + .name("courie32.exe") + .get(), + + new Resource() + .wizard(wizard) + .url("https://mirrors.kernel.org/gentoo/distfiles/georgi32.exe") + .checksum("90e4070cb356f1d811acb943080bf97e419a8f1e") + .name("georgi32.exe") + .get(), + + new Resource() + .wizard(wizard) + .url("https://mirrors.kernel.org/gentoo/distfiles/impact32.exe") + .checksum("86b34d650cfbbe5d3512d49d2545f7509a55aad2") + .name("impact32.exe") + .get(), + + new Resource() + .wizard(wizard) + .url("https://mirrors.kernel.org/gentoo/distfiles/times32.exe") + .checksum("20b79e65cdef4e2d7195f84da202499e3aa83060") + .name("times32.exe") + .get(), + + new Resource() + .wizard(wizard) + .url("https://mirrors.kernel.org/gentoo/distfiles/trebuc32.exe ") + .checksum("50aab0988423efcc9cf21fac7d64d534d6d0a34a") + .name("trebuc32.exe") + .get(), + + new Resource() + .wizard(wizard) + .url("https://mirrors.kernel.org/gentoo/distfiles/verdan32.exe ") + .checksum("f5b93cedf500edc67502f116578123618c64a42a") + .name("verdan32.exe") + .get(), + + new Resource() + .wizard(wizard) + .url("https://mirrors.kernel.org/gentoo/distfiles/webdin32.exe ") + .checksum("2fb4a42c53e50bc70707a7b3c57baf62ba58398f") + .name("webdin32.exe") + .get() + ]; + + const progressBar = wizard.progressBar(tr("Please wait...")); + progressBar.setText(tr("Installing {0}...", tr("fonts"))); + progressBar.setProgressPercentage(0); + + fontResources.reduce((numInstalledFonts, fontResource) => { + progressBar.setText(tr("Installing {0}...", tr("fonts"))); + progressBar.setProgressPercentage((numInstalledFonts * 100) / fontResources.length); + + new CabExtract() + .wizard(wizard) + .archive(fontResource) + .to(fontDirectory) + .extract(); + + return numInstalledFonts + 1; + }, 0); + + this.wine + .registerFont() + .set("Arial", "Arial.TTF") + .set("Arial Bold", "Arialbd.TTF") + .set("Arial Bold Italic", "Arialbi.TTF") + .set("Arial Italic", "Ariali.TTF") + .set("Arial Black", "AriBlk.TTF") + .set("Comic Sans MS", "Comic.TTF") + .set("Comic Sans MS Bold", "Comicbd.TTF") + .set("Courier New", "Cour.TTF") + .set("Courier New Bold", "CourBD.TTF") + .set("Courier New Bold Italic", "CourBI.TTF") + .set("Courier New Italic", "Couri.TTF") + .set("Georgia", "Georgia.TTF") + .set("Georgia Bold", "Georgiab.TTF") + .set("Georgia Bold Italic", "Georgiaz.TTF") + .set("Georgia Italic", "Georgiai.TTF") + .set("Impact", "Impact.TTF") + .set("Times New Roman", "Times.TTF") + .set("Times New Roman Bold", "Timesbd.TTF") + .set("Times New Roman Bold Italic", "Timesbi.TTF") + .set("Times New Roman Italic", "Timesi.TTF") + .set("Trebucet MS", "Trebuc.TTF") + .set("Trebucet MS Bold", "Trebucbd.TTF") + .set("Trebucet MS Bold Italic", "Trebucbi.TTF") + .set("Trebucet MS Italic", "Trebucit.TTF") + .set("Verdana", "Verdana.TTF") + .set("Verdana Bold", "Verdanab.TTF") + .set("Verdana Bold Italic", "Verdanaz.TTF") + .set("Verdana Italic", "Verdanai.TTF") + .set("Webdings", "Webdings.TTF") + .do(); } - install(container) { + static install(container) { const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "corefonts", Optional.empty()); wine.prefix(container); - - const wizard = SetupWizard(InstallationType.VERBS, "corefonts", java.util.Optional.empty()); - wine.wizard(wizard); - wine.corefonts(); + + new Corefonts(wine).go(); wizard.close(); } -}; +} + +module.default = Corefonts; @@ -194,7 +193,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 0f65b5f552..0c6013ba1f 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_crypt32_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_crypt32_script.js.html @@ -28,41 +28,43 @@

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

const Wine = include("engines.wine.engine.object");
 
+const Optional = Java.type("java.util.Optional");
+
 include("engines.wine.plugins.override_dll");
-include("engines.wine.verbs.sp3extract");
+const WindowsXPSP3 = include("engines.wine.verbs.sp3extract");
 
 /**
  * Verb to install crypt32
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.crypt32 = function () {
-    this.sp3extract("crypt32.dll");
-    this.sp3extract("msasn1.dll");
+class Crypt32 {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-    this.overrideDLL()
-        .set("native, builtin", ["crypt32"])
-        .do();
-};
+    go() {
+        new WindowsXPSP3(this.wine).withFileToExtract("crypt32.dll").go();
+        new WindowsXPSP3(this.wine).withFileToExtract("msasn1.dll").go();
 
-/**
- * Verb to install crypt32
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class Crypt32Verb {
-    constructor() {
-        // do nothing
+        this.wine
+            .overrideDLL()
+            .set("native, builtin", ["crypt32"])
+            .do();
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "crypt32", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "crypt32", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.crypt32();
+
+        new Crypt32(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = Crypt32;
 
@@ -73,7 +75,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Verbs_d3drm_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_d3drm_script.js.html index ba21c76222..749a81dcf0 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_d3drm_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_d3drm_script.js.html @@ -28,61 +28,68 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
-const {CabExtract} = include("utils.functions.filesystem.extract");
+const { CabExtract } = include("utils.functions.filesystem.extract");
+
+const Optional = Java.type("java.util.Optional");
 
 include("engines.wine.plugins.override_dll");
-include("engines.wine.verbs.luna");
 
 /**
  * Verb to install d3drm
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.d3drm = function () {
-    var setupFile = new Resource()
-        .wizard(this.wizard())
-        .url("https://download.microsoft.com/download/E/E/1/EE17FF74-6C45-4575-9CF4-7FC2597ACD18/directx_feb2010_redist.exe")
-        .checksum("a97c820915dc20929e84b49646ec275760012a42")
-        .name("directx_feb2010_redist.exe")
-        .get();
-
-    this.wizard().wait(tr("Please wait while {0} is installed...", "d3drm"));
-
-    new CabExtract()
-        .archive(setupFile)
-        .to(this.prefixDirectory() + "/drive_c/d3drm/")
-        .extract(["-L", "-F", "dxnt.cab"]);
-
-    new CabExtract()
-        .archive(this.prefixDirectory() + "/drive_c/d3drm/dxnt.cab")
-        .to(this.system32directory())
-        .extract(["-L", "-F", "d3drm.dll"]);
-
-    this.overrideDLL()
-        .set("native", ["d3drm"])
-        .do();
-
-    return this;
-};
+class D3drm {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-/**
- * Verb to install d3drm
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class D3drmVerb {
-    constructor() {
-        // do nothing
+    go() {
+        const wizard = this.wine.wizard();
+        const prefixDirectory = this.wine.prefixDirectory();
+        const system32directory = this.wine.system32directory();
+
+        const setupFile = new Resource()
+            .wizard(wizard)
+            .url(
+                "https://download.microsoft.com/download/E/E/1/EE17FF74-6C45-4575-9CF4-7FC2597ACD18/directx_feb2010_redist.exe"
+            )
+            .checksum("a97c820915dc20929e84b49646ec275760012a42")
+            .name("directx_feb2010_redist.exe")
+            .get();
+
+        wizard.wait(tr("Please wait while {0} is installed...", "d3drm"));
+
+        new CabExtract()
+            .wizard(wizard)
+            .archive(setupFile)
+            .to(`${prefixDirectory}/drive_c/d3drm/`)
+            .extract(["-L", "-F", "dxnt.cab"]);
+
+        new CabExtract()
+            .wizard(wizard)
+            .archive(`${prefixDirectory}/drive_c/d3drm/dxnt.cab`)
+            .to(system32directory)
+            .extract(["-L", "-F", "d3drm.dll"]);
+
+        this.wine
+            .overrideDLL()
+            .set("native", ["d3drm"])
+            .do();
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "d3drm", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "d3drm", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.d3drm();
+
+        new D3drm(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = D3drm;
 
@@ -93,7 +100,7 @@

Source: Engines/Wine/Verbs/d3drm/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 63d4ca093a..d19cfcfd2b 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_d3dx10_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_d3dx10_script.js.html @@ -30,15 +30,31 @@

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

const Resource = include("utils.functions.net.resource"); const { CabExtract } = include("utils.functions.filesystem.extract"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.override_dll"); /** * Verb to install D3DX10 - * - * @returns {Wine} Wine object */ -Wine.prototype.d3dx10 = function () { - const extractDirectXtoSystemDirectory = (progressBar, filesToExtract, destination, pattern) => { +class D3DX10 { + constructor(wine) { + this.wine = wine; + } + + /** + * Extracts DirectX10 to the system directory + * + * @param {*} progressBar The progress bar + * @param {*} filesToExtract A list of files to be extracted + * @param {*} destination The destination folder + * @param {*} pattern The file pattern used during extraction + * @returns {void} + */ + extractDirectXToSystemDirectory(progressBar, filesToExtract, destination, pattern) { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + filesToExtract.reduce((numberOfExtractedFiles, cabFile) => { print(tr("Extracting {0}...", cabFile)); @@ -46,113 +62,116 @@

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

progressBar.setProgressPercentage((numberOfExtractedFiles * 100) / filesToExtract.length); new CabExtract() - .archive(this.prefixDirectory() + "/drive_c/d3dx10/" + cabFile) + .wizard(wizard) + .archive(`${prefixDirectory}/drive_c/d3dx10/${cabFile}`) .to(destination) .extract(["-L", "-F", pattern]); return numberOfExtractedFiles + 1; }, 0); - }; - - const setupFile = new Resource() - .wizard(this.wizard()) - .url( - "http://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe" - ) - .checksum("f8f1217f666bf2f6863631a7d5e5fb3a8d1542df") - .name("directx_Jun2010_redist.exe") - .get(); - - const progressBar = this.wizard().progressBar(tr("Please wait...")); - progressBar.setText(tr("Extracting {0}...", "DirectX 10")); - progressBar.setProgressPercentage(0); - - new CabExtract() - .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/d3dx10/") - .extract(["-L", "-F", "*d3dx10*x86*"]); - - const filesToExtractx86 = [ - "apr2007_d3dx10_33_x86.cab", - "aug2007_d3dx10_35_x86.cab", - "aug2008_d3dx10_39_x86.cab", - "aug2009_d3dx10_42_x86.cab", - "dec2006_d3dx10_00_x86.cab", - "jun2007_d3dx10_34_x86.cab", - "jun2008_d3dx10_38_x86.cab", - "jun2010_d3dx10_43_x86.cab", - "mar2008_d3dx10_37_x86.cab", - "mar2009_d3dx10_41_x86.cab", - "nov2007_d3dx10_36_x86.cab", - "nov2008_d3dx10_40_x86.cab" - ]; - - extractDirectXtoSystemDirectory(progressBar, filesToExtractx86, this.system32directory(), "d3dx10*.dll"); - - if (this.architecture() == "amd64") { + } + + go() { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + const system32directory = this.wine.system32directory(); + const architecture = this.wine.architecture(); + + const setupFile = new Resource() + .wizard(wizard) + .url( + "http://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe" + ) + .checksum("f8f1217f666bf2f6863631a7d5e5fb3a8d1542df") + .name("directx_Jun2010_redist.exe") + .get(); + + const progressBar = wizard.progressBar(tr("Please wait...")); + progressBar.setText(tr("Extracting {0}...", "DirectX 10")); + progressBar.setProgressPercentage(0); + new CabExtract() + .wizard(wizard) .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/d3dx10/") - .extract(["-L", "-F", "*d3dx10*x64*"]); - - const filesToExtractx64 = [ - "apr2007_d3dx10_33_x64.cab", - "aug2007_d3dx10_35_x64.cab", - "aug2008_d3dx10_39_x64.cab", - "aug2009_d3dx10_42_x64.cab", - "dec2006_d3dx10_00_x64.cab", - "jun2007_d3dx10_34_x64.cab", - "jun2008_d3dx10_38_x64.cab", - "jun2010_d3dx10_43_x64.cab", - "mar2008_d3dx10_37_x64.cab", - "mar2009_d3dx10_41_x64.cab", - "nov2007_d3dx10_36_x64.cab", - "nov2008_d3dx10_40_x64.cab" + .to(`${prefixDirectory}/drive_c/d3dx10/`) + .extract(["-L", "-F", "*d3dx10*x86*"]); + + const filesToExtractx86 = [ + "apr2007_d3dx10_33_x86.cab", + "aug2007_d3dx10_35_x86.cab", + "aug2008_d3dx10_39_x86.cab", + "aug2009_d3dx10_42_x86.cab", + "dec2006_d3dx10_00_x86.cab", + "jun2007_d3dx10_34_x86.cab", + "jun2008_d3dx10_38_x86.cab", + "jun2010_d3dx10_43_x86.cab", + "mar2008_d3dx10_37_x86.cab", + "mar2009_d3dx10_41_x86.cab", + "nov2007_d3dx10_36_x86.cab", + "nov2008_d3dx10_40_x86.cab" ]; - extractDirectXtoSystemDirectory(progressBar, filesToExtractx64, this.system64directory(), "d3dx10*.dll"); - } + this.extractDirectXToSystemDirectory(progressBar, filesToExtractx86, system32directory, "d3dx10*.dll"); - this.overrideDLL() - .set("native", [ - "d3dx10_33", - "d3dx10_34", - "d3dx10_35", - "d3dx10_36", - "d3dx10_37", - "d3dx10_38", - "d3dx10_39", - "d3dx10_40", - "d3dx10_41", - "d3dx10_42", - "d3dx10_43" - ]) - .do(); - - return this; -}; + if (architecture == "amd64") { + const system64directory = this.wine.system64directory(); -/** - * Verb to install D3DX10 - */ -module.default = class D3DX10Verb { - constructor() { - // do nothing + new CabExtract() + .wizard(wizard) + .archive(setupFile) + .to(`${prefixDirectory}/drive_c/d3dx10/`) + .extract(["-L", "-F", "*d3dx10*x64*"]); + + const filesToExtractx64 = [ + "apr2007_d3dx10_33_x64.cab", + "aug2007_d3dx10_35_x64.cab", + "aug2008_d3dx10_39_x64.cab", + "aug2009_d3dx10_42_x64.cab", + "dec2006_d3dx10_00_x64.cab", + "jun2007_d3dx10_34_x64.cab", + "jun2008_d3dx10_38_x64.cab", + "jun2010_d3dx10_43_x64.cab", + "mar2008_d3dx10_37_x64.cab", + "mar2009_d3dx10_41_x64.cab", + "nov2007_d3dx10_36_x64.cab", + "nov2008_d3dx10_40_x64.cab" + ]; + + this.extractDirectXToSystemDirectory(progressBar, filesToExtractx64, system64directory, "d3dx10*.dll"); + } + + this.wine + .overrideDLL() + .set("native", [ + "d3dx10_33", + "d3dx10_34", + "d3dx10_35", + "d3dx10_36", + "d3dx10_37", + "d3dx10_38", + "d3dx10_39", + "d3dx10_40", + "d3dx10_41", + "d3dx10_42", + "d3dx10_43" + ]) + .do(); } - install(container) { + static install(container) { const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "d3dx10", Optional.empty()); wine.prefix(container); - - const wizard = SetupWizard(InstallationType.VERBS, "d3dx10", java.util.Optional.empty()); - wine.wizard(wizard); - wine.d3dx10(); + + new D3DX10(wine).go(); wizard.close(); } -}; +} + +module.default = D3DX10; @@ -163,7 +182,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Verbs_d3dx11_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_d3dx11_script.js.html index 117ccfbd76..5c54f1c750 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_d3dx11_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_d3dx11_script.js.html @@ -30,15 +30,31 @@

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

const Resource = include("utils.functions.net.resource"); const { CabExtract } = include("utils.functions.filesystem.extract"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.override_dll"); /** * Verb to install D3DX11 - * - * @returns {Wine} Wine object */ -Wine.prototype.d3dx11 = function () { - const extractDirectXtoSystemDirectory = (progressBar, filesToExtract, destination, pattern) => { +class D3DX11 { + constructor(wine) { + this.wine = wine; + } + + /** + * Extracts DirectX11 to the system directory + * + * @param {*} progressBar The progress bar + * @param {*} filesToExtract A list of files to extract + * @param {*} destination The destination folder + * @param {*} pattern The file pattern used during extraction + * @returns {void} + */ + extractDirectXToSystemDirectory(progressBar, filesToExtract, destination, pattern) { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + filesToExtract.reduce((numberOfExtractedFiles, cabFile) => { print(tr("Extracting {0}...", cabFile)); @@ -46,81 +62,84 @@

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

progressBar.setProgressPercentage((numberOfExtractedFiles * 100) / filesToExtract.length); new CabExtract() - .archive(this.prefixDirectory() + "/drive_c/d3dx11/" + cabFile) + .wizard(wizard) + .archive(`${prefixDirectory}/drive_c/d3dx11/${cabFile}`) .to(destination) .extract(["-L", "-F", pattern]); return numberOfExtractedFiles + 1; }, 0); - }; - - const setupFile = new Resource() - .wizard(this.wizard()) - .url( - "http://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe" - ) - .checksum("7c1fc2021cf57fed3c25c9b03cd0c31a") - .algorithm("MD5") - .name("directx_Jun2010_redist.exe") - .get(); - - const progressBar = this.wizard().progressBar(tr("Please wait...")); - progressBar.setText(tr("Extracting {0}...", "DirectX 11")); - progressBar.setProgressPercentage(0); - - new CabExtract() - .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/d3dx11/") - .extract(["-L", "-F", "*d3dx11*x86*"]); - - const filesToExtractx86 = ["Aug2009_d3dx11_42_x86.cab", "Jun2010_d3dx11_43_x86.cab"]; + } - extractDirectXtoSystemDirectory(progressBar, filesToExtractx86, this.system32directory(), "*.dll"); + go() { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + const system32directory = this.wine.system32directory(); + const architecture = this.wine.architecture(); + + const setupFile = new Resource() + .wizard(wizard) + .url( + "http://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe" + ) + .checksum("7c1fc2021cf57fed3c25c9b03cd0c31a") + .algorithm("MD5") + .name("directx_Jun2010_redist.exe") + .get(); + + const progressBar = wizard.progressBar(tr("Please wait...")); + progressBar.setText(tr("Extracting {0}...", "DirectX 11")); + progressBar.setProgressPercentage(0); - if (this.architecture() == "amd64") { new CabExtract() + .wizard(wizard) .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/d3dx11/") - .extract(["-L", "-F", "*d3dx11*x64*"]); + .to(`${prefixDirectory}/drive_c/d3dx11/`) + .extract(["-L", "-F", "*d3dx11*x86*"]); - const filesToExtractx64 = [ - "Aug2009_d3dx11_42_x86.cab", - "Jun2010_d3dx11_43_x86.cab", - "Aug2009_d3dx11_42_x64.cab", - "Jun2010_d3dx11_43_x64.cab" - ]; + const filesToExtractx86 = ["Aug2009_d3dx11_42_x86.cab", "Jun2010_d3dx11_43_x86.cab"]; - extractDirectXtoSystemDirectory(progressBar, filesToExtractx64, this.system64directory(), "*.dll"); - } + this.extractDirectXToSystemDirectory(progressBar, filesToExtractx86, system32directory, "*.dll"); - this.overrideDLL() - .set("native, builtin", ["d3dx11_42", "d3dx11_43"]) - .do(); + if (architecture == "amd64") { + const system64directory = this.wine.system64directory(); - return this; -}; - -/** - * Verb to install D3DX11 - */ -module.default = class D3DX11Verb { - constructor() { - // do nothing + new CabExtract() + .wizard(wizard) + .archive(setupFile) + .to(`${prefixDirectory}/drive_c/d3dx11/`) + .extract(["-L", "-F", "*d3dx11*x64*"]); + + const filesToExtractx64 = [ + "Aug2009_d3dx11_42_x86.cab", + "Jun2010_d3dx11_43_x86.cab", + "Aug2009_d3dx11_42_x64.cab", + "Jun2010_d3dx11_43_x64.cab" + ]; + + this.extractDirectXToSystemDirectory(progressBar, filesToExtractx64, system64directory, "*.dll"); + } + + this.wine + .overrideDLL() + .set("native, builtin", ["d3dx11_42", "d3dx11_43"]) + .do(); } - install(container) { + static install(container) { const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "d3dx11", Optional.empty()); wine.prefix(container); - - const wizard = SetupWizard(InstallationType.VERBS, "d3dx11", java.util.Optional.empty()); - wine.wizard(wizard); - wine.d3dx11(); + + new D3DX11(wine).go(); wizard.close(); } -}; +} + +module.default = D3DX11; @@ -131,7 +150,7 @@

Source: Engines/Wine/Verbs/d3dx11/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 08c45d0e9a..79c15c82c0 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_d3dx9_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_d3dx9_script.js.html @@ -30,15 +30,31 @@

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

const Resource = include("utils.functions.net.resource"); const { CabExtract } = include("utils.functions.filesystem.extract"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.override_dll"); /** * Verb to install D3DX9 - * - * @returns {Wine} Wine object */ -Wine.prototype.d3dx9 = function () { - const extractDirectXtoSystemDirectory = (progressBar, filesToExtract, destination, pattern) => { +class D3DX9 { + constructor(wine) { + this.wine = wine; + } + + /** + * Extracts DirectX9 to the system directory + * + * @param {*} progressBar The progress bar + * @param {*} filesToExtract A list of files to extract + * @param {*} destination The destination folder + * @param {*} pattern The file pattern used during extraction + * @returns {void} + */ + extractDirectXToSystemDirectory(progressBar, filesToExtract, destination, pattern) { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + filesToExtract.reduce((numberOfExtractedFiles, cabFile) => { print(tr("Extracting {0}...", cabFile)); @@ -46,137 +62,141 @@

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

progressBar.setProgressPercentage((numberOfExtractedFiles * 100) / filesToExtract.length); new CabExtract() - .archive(this.prefixDirectory() + "/drive_c/d3dx9/" + cabFile) + .wizard(wizard) + .archive(`${prefixDirectory}/drive_c/d3dx9/${cabFile}`) .to(destination) .extract(["-L", "-F", pattern]); return numberOfExtractedFiles + 1; }, 0); - }; - - const setupFile = new Resource() - .wizard(this.wizard()) - .url( - "http://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe" - ) - .checksum("f8f1217f666bf2f6863631a7d5e5fb3a8d1542df") - .name("directx_Jun2010_redist.exe") - .get(); - - const progressBar = this.wizard().progressBar(tr("Please wait...")); - progressBar.setText(tr("Extracting {0}...", "DirectX 9")); - progressBar.setProgressPercentage(0); - - new CabExtract() - .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/d3dx9/") - .extract(["-L", "-F", "*d3dx9*x86*"]); - - const filesToExtractx86 = [ - "apr2007_d3dx9_33_x86.cab", - "aug2007_d3dx9_35_x86.cab", - "apr2005_d3dx9_25_x86.cab", - "apr2006_d3dx9_30_x86.cab", - "aug2005_d3dx9_27_x86.cab", - "aug2008_d3dx9_39_x86.cab", - "aug2009_d3dx9_42_x86.cab", - "dec2006_d3dx9_32_x86.cab", - "dec2005_d3dx9_28_x86.cab", - "feb2005_d3dx9_24_x86.cab", - "feb2006_d3dx9_29_x86.cab", - "jun2007_d3dx9_34_x86.cab", - "jun2008_d3dx9_38_x86.cab", - "jun2005_d3dx9_26_x86.cab", - "jun2010_d3dx9_43_x86.cab", - "mar2008_d3dx9_37_x86.cab", - "mar2009_d3dx9_41_x86.cab", - "nov2007_d3dx9_36_x86.cab", - "nov2008_d3dx9_40_x86.cab", - "oct2006_d3dx9_31_x86.cab" - ]; - extractDirectXtoSystemDirectory(progressBar, filesToExtractx86, this.system32directory(), "d3dx9*.dll"); - - if (this.architecture() == "amd64") { + } + + go() { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + const system32directory = this.wine.system32directory(); + const architecture = this.wine.architecture(); + + const setupFile = new Resource() + .wizard(wizard) + .url( + "http://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe" + ) + .checksum("f8f1217f666bf2f6863631a7d5e5fb3a8d1542df") + .name("directx_Jun2010_redist.exe") + .get(); + + const progressBar = wizard.progressBar(tr("Please wait...")); + progressBar.setText(tr("Extracting {0}...", "DirectX 9")); + progressBar.setProgressPercentage(0); + new CabExtract() + .wizard(wizard) .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/d3dx9/") - .extract(["-L", "-F", "*d3dx9*x64*"]); - - const filesToExtractx64 = [ - "APR2007_d3dx9_33_x64.cab", - "AUG2007_d3dx9_35_x64.cab", - "Apr2005_d3dx9_25_x64.cab", - "Apr2006_d3dx9_30_x64.cab", - "Aug2005_d3dx9_27_x64.cab", - "Aug2008_d3dx9_39_x64.cab", - "Aug2009_d3dx9_42_x64.cab", - "DEC2006_d3dx9_32_x64.cab", - "Dec2005_d3dx9_28_x64.cab", - "Feb2005_d3dx9_24_x64.cab", - "Feb2006_d3dx9_29_x64.cab", - "JUN2007_d3dx9_34_x64.cab", - "JUN2008_d3dx9_38_x64.cab", - "Jun2005_d3dx9_26_x64.cab", - "Jun2010_d3dx9_43_x64.cab", - "Mar2008_d3dx9_37_x64.cab", - "Mar2009_d3dx9_41_x64.cab", - "Nov2007_d3dx9_36_x64.cab", - "Nov2008_d3dx9_40_x64.cab", - "OCT2006_d3dx9_31_x64.cab" + .to(`${prefixDirectory}/drive_c/d3dx9/`) + .extract(["-L", "-F", "*d3dx9*x86*"]); + + const filesToExtractx86 = [ + "apr2007_d3dx9_33_x86.cab", + "aug2007_d3dx9_35_x86.cab", + "apr2005_d3dx9_25_x86.cab", + "apr2006_d3dx9_30_x86.cab", + "aug2005_d3dx9_27_x86.cab", + "aug2008_d3dx9_39_x86.cab", + "aug2009_d3dx9_42_x86.cab", + "dec2006_d3dx9_32_x86.cab", + "dec2005_d3dx9_28_x86.cab", + "feb2005_d3dx9_24_x86.cab", + "feb2006_d3dx9_29_x86.cab", + "jun2007_d3dx9_34_x86.cab", + "jun2008_d3dx9_38_x86.cab", + "jun2005_d3dx9_26_x86.cab", + "jun2010_d3dx9_43_x86.cab", + "mar2008_d3dx9_37_x86.cab", + "mar2009_d3dx9_41_x86.cab", + "nov2007_d3dx9_36_x86.cab", + "nov2008_d3dx9_40_x86.cab", + "oct2006_d3dx9_31_x86.cab" ]; - extractDirectXtoSystemDirectory(progressBar, filesToExtractx64, this.system64directory(), "d3dx9*.dll"); - } + this.extractDirectXToSystemDirectory(progressBar, filesToExtractx86, system32directory, "d3dx9*.dll"); - this.overrideDLL() - .set("native", [ - "d3dx9_24", - "d3dx9_25", - "d3dx9_26", - "d3dx9_27", - "d3dx9_28", - "d3dx9_29", - "d3dx9_30", - "d3dx9_31", - "d3dx9_32", - "d3dx9_33", - "d3dx9_34", - "d3dx9_35", - "d3dx9_36", - "d3dx9_37", - "d3dx9_38", - "d3dx9_39", - "d3dx9_40", - "d3dx9_41", - "d3dx9_42", - "d3dx9_43" - ]) - .do(); - - return this; -}; + if (architecture == "amd64") { + const system64directory = this.wine.system64directory(); -/** - * Verb to install D3DX9 - */ -module.default = class D3DX9Verb { - constructor() { - // do nothing + new CabExtract() + .wizard(wizard) + .archive(setupFile) + .to(`${prefixDirectory}/drive_c/d3dx9/`) + .extract(["-L", "-F", "*d3dx9*x64*"]); + + const filesToExtractx64 = [ + "APR2007_d3dx9_33_x64.cab", + "AUG2007_d3dx9_35_x64.cab", + "Apr2005_d3dx9_25_x64.cab", + "Apr2006_d3dx9_30_x64.cab", + "Aug2005_d3dx9_27_x64.cab", + "Aug2008_d3dx9_39_x64.cab", + "Aug2009_d3dx9_42_x64.cab", + "DEC2006_d3dx9_32_x64.cab", + "Dec2005_d3dx9_28_x64.cab", + "Feb2005_d3dx9_24_x64.cab", + "Feb2006_d3dx9_29_x64.cab", + "JUN2007_d3dx9_34_x64.cab", + "JUN2008_d3dx9_38_x64.cab", + "Jun2005_d3dx9_26_x64.cab", + "Jun2010_d3dx9_43_x64.cab", + "Mar2008_d3dx9_37_x64.cab", + "Mar2009_d3dx9_41_x64.cab", + "Nov2007_d3dx9_36_x64.cab", + "Nov2008_d3dx9_40_x64.cab", + "OCT2006_d3dx9_31_x64.cab" + ]; + + this.extractDirectXToSystemDirectory(progressBar, filesToExtractx64, system64directory, "d3dx9*.dll"); + } + + this.wine + .overrideDLL() + .set("native", [ + "d3dx9_24", + "d3dx9_25", + "d3dx9_26", + "d3dx9_27", + "d3dx9_28", + "d3dx9_29", + "d3dx9_30", + "d3dx9_31", + "d3dx9_32", + "d3dx9_33", + "d3dx9_34", + "d3dx9_35", + "d3dx9_36", + "d3dx9_37", + "d3dx9_38", + "d3dx9_39", + "d3dx9_40", + "d3dx9_41", + "d3dx9_42", + "d3dx9_43" + ]) + .do(); } - install(container) { + static install(container) { const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "d3dx9", Optional.empty()); wine.prefix(container); - - const wizard = SetupWizard(InstallationType.VERBS, "d3dx9", java.util.Optional.empty()); - wine.wizard(wizard); - wine.d3dx9(); + + new D3DX9(wine).go(); wizard.close(); } -}; +} + +module.default = D3DX9; @@ -187,7 +207,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Verbs_devenum_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_devenum_script.js.html index 54ba5e27d7..79cbdc7cec 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_devenum_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_devenum_script.js.html @@ -28,63 +28,70 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
-const {CabExtract} = include("utils.functions.filesystem.extract");
+const { CabExtract } = include("utils.functions.filesystem.extract");
+
+const Optional = Java.type("java.util.Optional");
 
 include("engines.wine.plugins.override_dll");
 include("engines.wine.plugins.regsvr32");
-include("engines.wine.verbs.luna");
 
 /**
  * Verb to install devenum
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.devenum = function () {
-    var setupFile = new Resource()
-        .wizard(this.wizard())
-        .url("https://download.microsoft.com/download/E/E/1/EE17FF74-6C45-4575-9CF4-7FC2597ACD18/directx_feb2010_redist.exe")
-        .checksum("a97c820915dc20929e84b49646ec275760012a42")
-        .name("directx_feb2010_redist.exe")
-        .get();
-
-    this.wizard().wait(tr("Please wait while {0} is installed...", "devenum"));
-
-    new CabExtract()
-        .archive(setupFile)
-        .to(this.prefixDirectory() + "/drive_c/devenum/")
-        .extract(["-L", "-F", "dxnt.cab"]);
-
-    new CabExtract()
-        .archive(this.prefixDirectory() + "/drive_c/devenum/dxnt.cab")
-        .to(this.system32directory())
-        .extract(["-L", "-F", "devenum.dll"]);
-
-    this.regsvr32().install("devenum.dll");
-    this.overrideDLL()
-        .set("native", ["devenum"])
-        .do();
-
-    return this;
-};
+class Devenum {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-/**
- * Verb to install devenum
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class DevenumVerb {
-    constructor() {
-        // do nothing
+    go() {
+        const wizard = this.wine.wizard();
+        const prefixDirectory = this.wine.prefixDirectory();
+        const system32directory = this.wine.system32directory();
+
+        const setupFile = new Resource()
+            .wizard(wizard)
+            .url(
+                "https://download.microsoft.com/download/E/E/1/EE17FF74-6C45-4575-9CF4-7FC2597ACD18/directx_feb2010_redist.exe"
+            )
+            .checksum("a97c820915dc20929e84b49646ec275760012a42")
+            .name("directx_feb2010_redist.exe")
+            .get();
+
+        wizard.wait(tr("Please wait while {0} is installed...", "devenum"));
+
+        new CabExtract()
+            .wizard(wizard)
+            .archive(setupFile)
+            .to(`${prefixDirectory}/drive_c/devenum/`)
+            .extract(["-L", "-F", "dxnt.cab"]);
+
+        new CabExtract()
+            .wizard(wizard)
+            .archive(`${prefixDirectory}/drive_c/devenum/dxnt.cab`)
+            .to(system32directory)
+            .extract(["-L", "-F", "devenum.dll"]);
+
+        this.wine.regsvr32().install("devenum.dll");
+        this.wine
+            .overrideDLL()
+            .set("native", ["devenum"])
+            .do();
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "devenum", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "devenum", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.devenum();
+
+        new Devenum(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = Devenum;
 
@@ -95,7 +102,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Verbs_dotnet20_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_dotnet20_script.js.html index 561b903c56..d32a8c97d0 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_dotnet20_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_dotnet20_script.js.html @@ -28,61 +28,82 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
-const {remove} = include("utils.functions.filesystem.files");
+const { remove } = include("utils.functions.filesystem.files");
+
+const Optional = Java.type("java.util.Optional");
 
 include("engines.wine.plugins.override_dll");
 include("engines.wine.plugins.windows_version");
-include("engines.wine.verbs.remove_mono");
+const RemoveMono = include("engines.wine.verbs.remove_mono");
 
 /**
  * Verb to install .NET 2.0
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.dotnet20 = function () {
-    var osVersion = this.windowsVersion();
+class DotNET20 {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-    if (this.architecture() == "x86") {
-        this.windowsVersion("win2k");
+    go() {
+        const wizard = this.wine.wizard();
+        const windowsVersion = this.wine.windowsVersion();
+        const system32directory = this.wine.system32directory();
 
-        var setupFile32 = new Resource()
-            .wizard(this.wizard())
-            .url("https://download.lenovo.com/ibmdl/pub/pc/pccbbs/thinkvantage_en/dotnetfx.exe")
-            .checksum("a3625c59d7a2995fb60877b5f5324892a1693b2a")
-            .name("dotnetfx.exe")
-            .get();
+        if (this.wine.architecture() == "x86") {
+            this.wine.windowsVersion("win2k");
 
-        this.removeMono();
+            const setupFile32 = new Resource()
+                .wizard(wizard)
+                .url("https://download.lenovo.com/ibmdl/pub/pc/pccbbs/thinkvantage_en/dotnetfx.exe")
+                .checksum("a3625c59d7a2995fb60877b5f5324892a1693b2a")
+                .name("dotnetfx.exe")
+                .get();
 
-        this.wizard().wait(tr("Please wait while {0} is installed...", ".NET Framework 2.0"));
-        this.run(setupFile32, ["/q:a", "/c:install.exe /q"], null, false, true);
+            new RemoveMono(this.wine).go();
 
-        this.windowsVersion(osVersion);
+            wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 2.0"));
 
-        remove(this.system32directory() + "/msvcr80.dll");
-        remove(this.system32directory() + "/msvcm80.dll");
-        remove(this.system32directory() + "/msvcp80.dll");
-    }
-    else {
-        var setupFile64 = new Resource()
-            .wizard(this.wizard())
-            .url("https://download.microsoft.com/download/a/3/f/a3f1bf98-18f3-4036-9b68-8e6de530ce0a/NetFx64.exe")
-            .checksum("e59cca309463a5d98daeaada83d1b05fed5126c5")
-            .name("NetFx64.exe")
-            .get();
-
-        this.removeMono();
-
-        this.wizard().wait(tr("Please wait while {0} is installed...", ".NET Framework 2.0"));
-        this.run(setupFile64, ["/q:a", "/c:install.exe /q"], null, false, true)
+            this.wine.run(setupFile32, ["/q:a", "/c:install.exe /q"], null, false, true);
+
+            this.wine.windowsVersion(windowsVersion);
+
+            remove(`${system32directory}/msvcr80.dll`);
+            remove(`${system32directory}/msvcm80.dll`);
+            remove(`${system32directory}/msvcp80.dll`);
+        } else {
+            const setupFile64 = new Resource()
+                .wizard(wizard)
+                .url("https://download.microsoft.com/download/a/3/f/a3f1bf98-18f3-4036-9b68-8e6de530ce0a/NetFx64.exe")
+                .checksum("e59cca309463a5d98daeaada83d1b05fed5126c5")
+                .name("NetFx64.exe")
+                .get();
+
+            new RemoveMono(this.wine).go();
+
+            wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 2.0"));
+
+            this.wine.run(setupFile64, ["/q:a", "/c:install.exe /q"], null, false, true);
+        }
+
+        //This is in winetricks source, but does not seem to work
+        //this.wizard().wait(tr("Please wait while executing ngen..."));
+        //this.run(this.prefixDirectory() + "/drive_c/windows/Microsoft.NET/Framework/v2.0.50727/ngen.exe", "executequeueditems", null, false, true);
     }
 
-    //This is in winetricks source, but does not seem to work
-    //this.wizard().wait(tr("Please wait while executing ngen..."));
-    //this.run(this.prefixDirectory() + "/drive_c/windows/Microsoft.NET/Framework/v2.0.50727/ngen.exe", "executequeueditems", null, false, true);
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "dotnet20", Optional.empty());
+
+        wine.prefix(container);
+        wine.wizard(wizard);
+
+        new DotNET20(wine).go();
+
+        wizard.close();
+    }
+}
 
-    return this;
-};
+module.default = DotNET20;
 
@@ -93,7 +114,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Verbs_dotnet20sp2_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_dotnet20sp2_script.js.html index 81ed071237..788379c970 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_dotnet20sp2_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_dotnet20sp2_script.js.html @@ -28,85 +28,90 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
-const {remove} = include("utils.functions.filesystem.files");
+const { remove } = include("utils.functions.filesystem.files");
+
+const Optional = Java.type("java.util.Optional");
 
 include("engines.wine.plugins.override_dll");
 include("engines.wine.plugins.windows_version");
 include("engines.wine.plugins.regedit");
-include("engines.wine.verbs.remove_mono");
+const RemoveMono = include("engines.wine.verbs.remove_mono");
 
 /**
- * Verb to install .NET 2.0 SP2
- *
- * @returns {Wine} Wine object
+ * Verb to install dotnet20sp2
  */
-Wine.prototype.dotnet20sp2 = function () {
-    var osVersion = this.windowsVersion();
-    this.windowsVersion("winxp");
-    var dlls = [
-        "ngen.exe",
-        "regsvcs.exe",
-        "mscorsvw.exe"];
-    this.overrideDLL()
-        .set("builtin", dlls)
-        .do();
-    this.removeMono();
-
-    if (this.architecture() == "x86") {
-
-        var setupFile32 = new Resource()
-            .wizard(this.wizard())
-            .url("https://download.microsoft.com/download/c/6/e/c6e88215-0178-4c6c-b5f3-158ff77b1f38/NetFx20SP2_x86.exe")
-            .checksum("22d776d4d204863105a5db99e8b8888be23c61a7")
-            .name("NetFx20SP2_x86.exe")
-            .get();
-
-
-        this.wizard().wait(tr("Please wait while {0} is installed...", ".NET Framework 2.0 SP2"));
-        this.run(setupFile32, [setupFile32, "/q", "/c:\"install.exe /q\""], null, false, true);
-
-        remove(this.system32directory() + "/msvcr80.dll");
-        remove(this.system32directory() + "/msvcm80.dll");
-        remove(this.system32directory() + "/msvcp80.dll");
+class DotNET20SP2 {
+    constructor(wine) {
+        this.wine = wine;
     }
-    else {
-        var setupFile64 = new Resource()
-            .wizard(this.wizard())
-            .url("https://download.microsoft.com/download/c/6/e/c6e88215-0178-4c6c-b5f3-158ff77b1f38/NetFx20SP2_x64.exe")
-            .checksum("a7cc6c6e5a4ad9cdf3df16a7d277eb09fec429b7")
-            .name("NetFx20SP2_x64.exe")
-            .get();
-
 
-        this.wizard().wait(tr("Please wait while {0} is installed...", ".NET Framework 2.0 SP2"));
-        this.run(setupFile64, [setupFile64, "/q", "/c:\"install.exe /q\""], null, false, true);
+    go() {
+        const wizard = this.wine.wizard();
+        const osVersion = this.wine.windowsVersion();
+        const system32directory = this.wine.system32directory();
+
+        this.wine.windowsVersion("winxp");
+
+        this.wine
+            .overrideDLL()
+            .set("builtin", ["ngen.exe", "regsvcs.exe", "mscorsvw.exe"])
+            .do();
+
+        new RemoveMono(this.wine).go();
+
+        if (this.wine.architecture() == "x86") {
+            const setupFile32 = new Resource()
+                .wizard(wizard)
+                .url(
+                    "https://download.microsoft.com/download/c/6/e/c6e88215-0178-4c6c-b5f3-158ff77b1f38/NetFx20SP2_x86.exe"
+                )
+                .checksum("22d776d4d204863105a5db99e8b8888be23c61a7")
+                .name("NetFx20SP2_x86.exe")
+                .get();
+
+            wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 2.0 SP2"));
+
+            this.wine.run(setupFile32, [setupFile32, "/q", '/c:"install.exe /q"'], null, false, true);
+
+            remove(`${system32directory}/msvcr80.dll`);
+            remove(`${system32directory}/msvcm80.dll`);
+            remove(`${system32directory}/msvcp80.dll`);
+        } else {
+            const setupFile64 = new Resource()
+                .wizard(wizard)
+                .url(
+                    "https://download.microsoft.com/download/c/6/e/c6e88215-0178-4c6c-b5f3-158ff77b1f38/NetFx20SP2_x64.exe"
+                )
+                .checksum("a7cc6c6e5a4ad9cdf3df16a7d277eb09fec429b7")
+                .name("NetFx20SP2_x64.exe")
+                .get();
+
+            wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 2.0 SP2"));
+
+            this.wine.run(setupFile64, [setupFile64, "/q", '/c:"install.exe /q"'], null, false, true);
+        }
+
+        this.wine.windowsVersion(osVersion);
+
+        this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*ngen.exe");
+        this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*regsvcs.exe");
+        this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*mscorsvw.exe");
     }
-    this.windowsVersion(osVersion);
-    this.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*ngen.exe");
-    this.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*regsvcs.exe");
-    this.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*mscorsvw.exe");
 
-    return this;
-};
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "dotnet20sp2", Optional.empty());
 
-/**
- * Verb to install dotnet20sp2
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class Dotnet20SP2Verb {
-    constructor() {
-        // do nothing
-    }
-
-    install(container) {
-        var wine = new Wine();
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "dotnet20sp2", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.dotnet20sp2();
+
+        new DotNET20SP2(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = DotNET20SP2;
 
@@ -117,7 +122,7 @@

Source: Engines/Wine/Verbs/dotnet20sp2/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 eb1f4a9e19..6c9de50f18 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_dotnet40_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_dotnet40_script.js.html @@ -29,88 +29,106 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
 
+const Optional = Java.type("java.util.Optional");
+
 include("engines.wine.plugins.override_dll");
 include("engines.wine.plugins.windows_version");
 include("engines.wine.plugins.regedit");
-include("engines.wine.verbs.remove_mono");
-
+const RemoveMono = include("engines.wine.verbs.remove_mono");
 
 /**
  * Verb to install .NET 4.0
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.dotnet40 = function () {
-    if (this.architecture() == "amd64") {
-        print(tr("This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.", "dotnet40"));
+class DotNET40 {
+    constructor(wine) {
+        this.wine = wine;
     }
 
-    var osVersion = this.windowsVersion();
+    go() {
+        const wizard = this.wine.wizard();
+        const windowsVersion = this.wine.windowsVersion();
+
+        if (this.wine.architecture() == "amd64") {
+            print(
+                tr(
+                    "This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.",
+                    "dotnet40"
+                )
+            );
+        }
 
-    var setupFile = new Resource()
-        .wizard(this.wizard())
-        .url("http://download.microsoft.com/download/9/5/A/95A9616B-7A37-4AF6-BC36-D6EA96C8DAAE/dotNetFx40_Full_x86_x64.exe")
-        .checksum("58da3d74db353aad03588cbb5cea8234166d8b99")
-        .name("dotNetFx40_Full_x86_x64.exe")
-        .get();
+        const setupFile = new Resource()
+            .wizard(wizard)
+            .url(
+                "http://download.microsoft.com/download/9/5/A/95A9616B-7A37-4AF6-BC36-D6EA96C8DAAE/dotNetFx40_Full_x86_x64.exe"
+            )
+            .checksum("58da3d74db353aad03588cbb5cea8234166d8b99")
+            .name("dotNetFx40_Full_x86_x64.exe")
+            .get();
 
-    this.removeMono();
+        new RemoveMono(this.wine).go();
 
-    this.windowsVersion("winxp");
+        this.wine.windowsVersion("winxp");
 
-    this.overrideDLL()
-        .set("builtin", ["fusion"])
-        .do();
+        this.wine
+            .overrideDLL()
+            .set("builtin", ["fusion"])
+            .do();
 
-    this.wizard().wait(tr("Please wait while {0} is installed...", ".NET Framework 4.0"));
-    this.run(setupFile, [setupFile, "/q", "/c:\"install.exe /q\""], null, false, true);
+        wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.0"));
 
-    this.wizard().wait(tr("Please wait..."));
-    this.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion");
+        this.wine.run(setupFile, [setupFile, "/q", '/c:"install.exe /q"'], null, false, true);
 
-    this.overrideDLL()
-        .set("native", ["mscoree"])
-        .do();
+        wizard.wait(tr("Please wait..."));
 
-    this.wizard().wait(tr("Please wait..."));
-    var regeditFileContent = "REGEDIT4\n" +
-        "\n" +
-        "[HKEY_LOCAL_MACHINE\\Software\\Microsoft\\NET Framework Setup\\NDP\\v4\\Full]\n" +
-        "\"Install\"=dword:0001\n" +
-        "\"Version\"=\"4.0.30319\"";
+        this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion");
 
-    this.regedit().patch(regeditFileContent);
+        this.wine
+            .overrideDLL()
+            .set("native", ["mscoree"])
+            .do();
 
-    //This is in winetricks source, but does not seem to work
-    //this.wizard().wait(tr("Please wait while executing ngen..."));
-    //this.run(this.prefixDirectory() + "/drive_c/windows/Microsoft.NET/Framework/v4.0.30319/ngen.exe", "executequeueditems", null, false, true);
+        wizard.wait(tr("Please wait..."));
 
-    this.windowsVersion(osVersion);
+        const regeditFileContent =
+            "REGEDIT4\n" +
+            "\n" +
+            "[HKEY_LOCAL_MACHINE\\Software\\Microsoft\\NET Framework Setup\\NDP\\v4\\Full]\n" +
+            '"Install"=dword:0001\n' +
+            '"Version"="4.0.30319"';
 
-    return this;
-};
+        this.wine.regedit().patch(regeditFileContent);
 
-/**
- * Verb to install .NET 4.0
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class Dotnet40Verb {
-    constructor() {
-        // do nothing
+        //This is in winetricks source, but does not seem to work
+        //this.wizard().wait(tr("Please wait while executing ngen..."));
+        //this.run(this.prefixDirectory() + "/drive_c/windows/Microsoft.NET/Framework/v4.0.30319/ngen.exe", "executequeueditems", null, false, true);
+
+        this.wine.windowsVersion(windowsVersion);
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "dotnet40", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "dotnet40", java.util.Optional.empty());
+        wine.wizard(wizard);
+
         if (wine.architecture() == "amd64") {
-            wizard.message(tr("This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.", "dotnet40"));
+            wizard.message(
+                tr(
+                    "This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.",
+                    "dotnet40"
+                )
+            );
         }
-        wine.wizard(wizard);
-        wine.dotnet40();
+
+        new DotNET40(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = DotNET40;
 
@@ -121,7 +139,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 563c28e0a2..4100965629 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_dotnet452_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_dotnet452_script.js.html @@ -29,77 +29,84 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
 
+const Optional = Java.type("java.util.Optional");
+
 include("engines.wine.plugins.override_dll");
 include("engines.wine.plugins.windows_version");
 include("engines.wine.plugins.regedit");
-include("engines.wine.verbs.remove_mono");
-include("engines.wine.verbs.dotnet40");
-
+const RemoveMono = include("engines.wine.verbs.remove_mono");
+const DotNET40 = include("engines.wine.verbs.dotnet40");
 
 /**
  * Verb to install .NET 4.5.2
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.dotnet452 = function () {
-    print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet452"));
+class DotNET452 {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-    var osVersion = this.windowsVersion();
+    go() {
+        const wizard = this.wine.wizard();
+        const windowsVersion = this.wine.windowsVersion();
 
-    var setupFile = new Resource()
-        .wizard(this.wizard())
-        .url("https://download.microsoft.com/download/E/2/1/E21644B5-2DF2-47C2-91BD-63C560427900/NDP452-KB2901907-x86-x64-AllOS-ENU.exe")
-        .checksum("89f86f9522dc7a8a965facce839abb790a285a63")
-        .name("NDP452-KB2901907-x86-x64-AllOS-ENU.exe")
-        .get();
+        print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet452"));
 
-    this.removeMono();
+        const setupFile = new Resource()
+            .wizard(wizard)
+            .url(
+                "https://download.microsoft.com/download/E/2/1/E21644B5-2DF2-47C2-91BD-63C560427900/NDP452-KB2901907-x86-x64-AllOS-ENU.exe"
+            )
+            .checksum("89f86f9522dc7a8a965facce839abb790a285a63")
+            .name("NDP452-KB2901907-x86-x64-AllOS-ENU.exe")
+            .get();
 
-    this.dotnet40();
-    this.windowsVersion("win7");
+        new RemoveMono(this.wine).go();
 
-    this.overrideDLL()
-        .set("builtin", ["fusion"])
-        .do();
+        new DotNET40(this.wine).go();
 
-    this.wizard().wait(tr("Please wait while {0} is installed...", ".NET Framework 4.5.2"));
-    this.run(setupFile, [setupFile, "/q", "/c:\"install.exe /q\""], null, false, true);
+        this.wine.windowsVersion("win7");
 
-    this.wizard().wait(tr("Please wait..."));
-    this.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion");
+        this.wine
+            .overrideDLL()
+            .set("builtin", ["fusion"])
+            .do();
 
-    this.overrideDLL()
-        .set("native", ["mscoree"])
-        .do();
+        wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.5.2"));
 
-    this.windowsVersion(osVersion);
+        this.wine.run(setupFile, [setupFile, "/q", '/c:"install.exe /q"'], null, false, true);
 
-    if (osVersion != "win2003") {
-        print(tr("{0} applications can have issues when windows version is not set to \"win2003\"", ".NET 4.5.2"));
-    }
+        wizard.wait(tr("Please wait..."));
 
-    return this;
-};
+        this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion");
 
-/**
- * Verb to install .NET 4.5.2
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class Dotnet452Verb {
-    constructor() {
-        // do nothing
+        this.wine
+            .overrideDLL()
+            .set("native", ["mscoree"])
+            .do();
+
+        this.wine.windowsVersion(windowsVersion);
+
+        if (windowsVersion != "win2003") {
+            print(tr('{0} applications can have issues when windows version is not set to "win2003"', ".NET 4.5.2"));
+        }
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "dotnet452", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "dotnet452", java.util.Optional.empty());
-        wizard.message(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet452"));
         wine.wizard(wizard);
-        wine.dotnet452();
+
+        wizard.message(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet452"));
+
+        new DotNET452(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = DotNET452;
 
@@ -110,7 +117,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 1dc8d8ccc2..525a45e6c0 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_dotnet45_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_dotnet45_script.js.html @@ -29,79 +29,99 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
 
+const Optional = Java.type("java.util.Optional");
+
 include("engines.wine.plugins.override_dll");
 include("engines.wine.plugins.windows_version");
 include("engines.wine.plugins.regedit");
-include("engines.wine.verbs.remove_mono");
-include("engines.wine.verbs.dotnet40");
+const RemoveMono = include("engines.wine.verbs.remove_mono");
+const DotNET40 = include("engines.wine.verbs.dotnet40");
 
 /**
  * Verb to install .NET 4.5
- * @returns {Wine} Wine object
  */
-Wine.prototype.dotnet45 = function () {
-    if (this.architecture() == "amd64") {
-        print(tr("This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.", "dotnet45"));
+class DotNET45 {
+    constructor(wine) {
+        this.wine = wine;
     }
 
-    var osVersion = this.windowsVersion();
+    go() {
+        const wizard = this.wine.wizard();
+        const windowsVersion = this.wine.windowsVersion();
+        const architecture = this.wine.architecture();
+
+        if (architecture == "amd64") {
+            print(
+                tr(
+                    "This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.",
+                    "dotnet45"
+                )
+            );
+        }
 
-    var setupFile = new Resource()
-        .wizard(this.wizard())
-        .url("http://download.microsoft.com/download/b/a/4/ba4a7e71-2906-4b2d-a0e1-80cf16844f5f/dotnetfx45_full_x86_x64.exe")
-        .checksum("b2ff712ca0947040ca0b8e9bd7436a3c3524bb5d")
-        .name("dotnetfx45_full_x86_x64.exe")
-        .get();
+        const setupFile = new Resource()
+            .wizard(wizard)
+            .url(
+                "http://download.microsoft.com/download/b/a/4/ba4a7e71-2906-4b2d-a0e1-80cf16844f5f/dotnetfx45_full_x86_x64.exe"
+            )
+            .checksum("b2ff712ca0947040ca0b8e9bd7436a3c3524bb5d")
+            .name("dotnetfx45_full_x86_x64.exe")
+            .get();
 
-    this.removeMono();
+        new RemoveMono(this.wine).go();
 
-    this.dotnet40();
-    this.windowsVersion("win7");
+        new DotNET40(this.wine).go();
 
-    this.overrideDLL()
-        .set("builtin", ["fusion"])
-        .do();
+        this.wine.windowsVersion("win7");
 
-    this.wizard().wait(tr("Please wait while {0} is installed...", ".NET Framework 4.5"));
-    this.run(setupFile, [setupFile, "/q", "/c:\"install.exe /q\""], null, false, true);
+        this.wine
+            .overrideDLL()
+            .set("builtin", ["fusion"])
+            .do();
 
-    this.wizard().wait(tr("Please wait..."));
-    this.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion");
+        wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.5"));
 
-    this.overrideDLL()
-        .set("native", ["mscoree"])
-        .do();
+        this.wine.run(setupFile, [setupFile, "/q", '/c:"install.exe /q"'], null, false, true);
 
-    this.windowsVersion(osVersion);
+        wizard.wait(tr("Please wait..."));
 
-    if (osVersion != "win2003") {
-        print(tr("{0} applications can have issues when windows version is not set to \"win2003\"", ".NET 4.5"));
-    }
+        this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion");
 
-    return this;
-};
+        this.wine
+            .overrideDLL()
+            .set("native", ["mscoree"])
+            .do();
 
-/**
- * Verb to install .NET 4.5
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class Dotnet45Verb {
-    constructor() {
-        // do nothing
+        this.wine.windowsVersion(windowsVersion);
+
+        if (windowsVersion != "win2003") {
+            print(tr('{0} applications can have issues when windows version is not set to "win2003"', ".NET 4.5"));
+        }
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "dotnet45", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "dotnet45", java.util.Optional.empty());
+        wine.wizard(wizard);
+
         if (wine.architecture() == "amd64") {
-            wizard.message(tr("This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.", "dotnet45"));
+            wizard.message(
+                tr(
+                    "This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.",
+                    "dotnet45"
+                )
+            );
         }
-        wine.wizard(wizard);
-        wine.dotnet45();
+
+        new DotNET45(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = DotNET45;
 
@@ -112,7 +132,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Verbs_dotnet461_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_dotnet461_script.js.html index 399676fd66..bd1e9268fe 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_dotnet461_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_dotnet461_script.js.html @@ -29,73 +29,80 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
 
+const Optional = Java.type("java.util.Optional");
+
 include("engines.wine.plugins.override_dll");
 include("engines.wine.plugins.windows_version");
 include("engines.wine.plugins.regedit");
-include("engines.wine.verbs.remove_mono");
-include("engines.wine.verbs.dotnet46");
-
+const RemoveMono = include("engines.wine.verbs.remove_mono");
+const DotNET46 = include("engines.wine.verbs.dotnet46");
 
 /**
  * Verb to install .NET 4.6.1
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.dotnet461 = function () {
-    print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet461"));
+class DotNET461 {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-    var osVersion = this.windowsVersion();
+    go() {
+        const wizard = this.wine.wizard();
+        const windowsVersion = this.wine.windowsVersion();
 
-    var setupFile = new Resource()
-        .wizard(this._wizard)
-        .url("https://download.microsoft.com/download/E/4/1/E4173890-A24A-4936-9FC9-AF930FE3FA40/NDP461-KB3102436-x86-x64-AllOS-ENU.exe")
-        .checksum("83d048d171ff44a3cad9b422137656f585295866")
-        .name("NDP461-KB3102436-x86-x64-AllOS-ENU.exe")
-        .get();
+        print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet461"));
 
-    this.removeMono();
+        const setupFile = new Resource()
+            .wizard(wizard)
+            .url(
+                "https://download.microsoft.com/download/E/4/1/E4173890-A24A-4936-9FC9-AF930FE3FA40/NDP461-KB3102436-x86-x64-AllOS-ENU.exe"
+            )
+            .checksum("83d048d171ff44a3cad9b422137656f585295866")
+            .name("NDP461-KB3102436-x86-x64-AllOS-ENU.exe")
+            .get();
 
-    this.dotnet46();
-    this.windowsVersion("win7");
+        new RemoveMono(this.wine).go();
 
-    this.overrideDLL()
-        .set("builtin", ["fusion"])
-        .do();
+        new DotNET46(this.wine).go();
 
-    this.wizard().wait(tr("Please wait while {0} is installed...", ".NET Framework 4.6.1"));
-    this.run(setupFile, [setupFile, "/q", "/norestart"], null, false, true);
+        this.wine.windowsVersion("win7");
 
-    this.wizard().wait(tr("Please wait..."));
-    this.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion");
+        this.wine
+            .overrideDLL()
+            .set("builtin", ["fusion"])
+            .do();
 
-    this.overrideDLL()
-        .set("native", ["mscoree"])
-        .do();
+        wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.6.1"));
 
-    this.windowsVersion(osVersion);
+        this.wine.run(setupFile, [setupFile, "/q", "/norestart"], null, false, true);
 
-    return this;
-};
+        wizard.wait(tr("Please wait..."));
 
-/**
- * Verb to install .NET 4.6.1
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class Dotnet461Verb {
-    constructor() {
-        // do nothing
+        this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion");
+
+        this.wine
+            .overrideDLL()
+            .set("native", ["mscoree"])
+            .do();
+
+        this.wine.windowsVersion(windowsVersion);
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "dotnet461", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "dotnet461", java.util.Optional.empty());
-        wizard.message(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet461"));
         wine.wizard(wizard);
-        wine.dotnet461();
+
+        wizard.message(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet461"));
+
+        new DotNET461(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = DotNET461;
 
@@ -106,7 +113,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Verbs_dotnet462_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_dotnet462_script.js.html index 429c2c4229..752e55d056 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_dotnet462_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_dotnet462_script.js.html @@ -29,73 +29,80 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
 
+const Optional = Java.type("java.util.Optional");
+
 include("engines.wine.plugins.override_dll");
 include("engines.wine.plugins.windows_version");
 include("engines.wine.plugins.regedit");
-include("engines.wine.verbs.remove_mono");
-include("engines.wine.verbs.dotnet461");
-
+const RemoveMono = include("engines.wine.verbs.remove_mono");
+const DotNET461 = include("engines.wine.verbs.dotnet461");
 
 /**
  * Verb to install .NET 4.6.2
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.dotnet462 = function () {
-    print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet462"));
+class DotNET462 {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-    var osVersion = this.windowsVersion();
+    go() {
+        const wizard = this.wine.wizard();
+        const windowsVersion = this.wine.windowsVersion();
 
-    var setupFile = new Resource()
-        .wizard(this._wizard)
-        .url("https://download.microsoft.com/download/F/9/4/F942F07D-F26F-4F30-B4E3-EBD54FABA377/NDP462-KB3151800-x86-x64-AllOS-ENU.exe")
-        .checksum("a70f856bda33d45ad0a8ad035f73092441715431")
-        .name("NDP462-KB3151800-x86-x64-AllOS-ENU.exe")
-        .get();
+        print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet462"));
 
-    this.removeMono();
+        const setupFile = new Resource()
+            .wizard(wizard)
+            .url(
+                "https://download.microsoft.com/download/F/9/4/F942F07D-F26F-4F30-B4E3-EBD54FABA377/NDP462-KB3151800-x86-x64-AllOS-ENU.exe"
+            )
+            .checksum("a70f856bda33d45ad0a8ad035f73092441715431")
+            .name("NDP462-KB3151800-x86-x64-AllOS-ENU.exe")
+            .get();
 
-    this.dotnet461();
-    this.windowsVersion("win7");
+        new RemoveMono(this.wine).go();
 
-    this.overrideDLL()
-        .set("builtin", ["fusion"])
-        .do();
+        new DotNET461(this.wine).go();
 
-    this.wizard().wait(tr("Please wait while {0} is installed...", ".NET Framework 4.6.2"));
-    this.run(setupFile, [setupFile, "/sfxlang:1027", "/q", "/norestart"], null, false, true);
+        this.wine.windowsVersion("win7");
 
-    this.wizard().wait(tr("Please wait..."));
-    this.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion");
+        this.wine
+            .overrideDLL()
+            .set("builtin", ["fusion"])
+            .do();
 
-    this.overrideDLL()
-        .set("native", ["mscoree"])
-        .do();
+        wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.6.2"));
 
-    this.windowsVersion(osVersion);
+        this.wine.run(setupFile, [setupFile, "/sfxlang:1027", "/q", "/norestart"], null, false, true);
 
-    return this;
-};
+        wizard.wait(tr("Please wait..."));
 
-/**
- * Verb to install .NET 4.6.2
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class Dotnet462Verb {
-    constructor() {
-        // do nothing
+        this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion");
+
+        this.wine
+            .overrideDLL()
+            .set("native", ["mscoree"])
+            .do();
+
+        this.wine.windowsVersion(windowsVersion);
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "dotnet462", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "dotnet462", java.util.Optional.empty());
-        wizard.message(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet462"));
         wine.wizard(wizard);
-        wine.dotnet462();
+
+        wizard.message(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet462"));
+
+        new DotNET462(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = DotNET462;
 
@@ -106,7 +113,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Verbs_dotnet46_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_dotnet46_script.js.html index cd4fdea7e2..7ebe5a4cc6 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_dotnet46_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_dotnet46_script.js.html @@ -29,72 +29,80 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
 
+const Optional = Java.type("java.util.Optional");
+
 include("engines.wine.plugins.override_dll");
 include("engines.wine.plugins.windows_version");
 include("engines.wine.plugins.regedit");
-include("engines.wine.verbs.remove_mono");
-include("engines.wine.verbs.dotnet45");
+const RemoveMono = include("engines.wine.verbs.remove_mono");
+const DotNET45 = include("engines.wine.verbs.dotnet45");
 
 /**
  * Verb to install .NET 4.6
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.dotnet46 = function () {
-    print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet46"));
+class DotNET46 {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-    var osVersion = this.windowsVersion();
+    go() {
+        const wizard = this.wine.wizard();
+        const windowsVersion = this.wine.windowsVersion();
 
-    var setupFile = new Resource()
-        .wizard(this._wizard)
-        .url("https://download.microsoft.com/download/C/3/A/C3A5200B-D33C-47E9-9D70-2F7C65DAAD94/NDP46-KB3045557-x86-x64-AllOS-ENU.exe")
-        .checksum("3049a85843eaf65e89e2336d5fe6e85e416797be")
-        .name("NDP46-KB3045557-x86-x64-AllOS-ENU.exe")
-        .get();
+        print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet46"));
 
-    this.removeMono();
+        const setupFile = new Resource()
+            .wizard(wizard)
+            .url(
+                "https://download.microsoft.com/download/C/3/A/C3A5200B-D33C-47E9-9D70-2F7C65DAAD94/NDP46-KB3045557-x86-x64-AllOS-ENU.exe"
+            )
+            .checksum("3049a85843eaf65e89e2336d5fe6e85e416797be")
+            .name("NDP46-KB3045557-x86-x64-AllOS-ENU.exe")
+            .get();
 
-    this.dotnet45();
-    this.windowsVersion("win7");
+        new RemoveMono(this.wine).go();
 
-    this.overrideDLL()
-        .set("builtin", ["fusion"])
-        .do();
+        new DotNET45(this.wine).go();
 
-    this.wizard().wait(tr("Please wait while {0} is installed...", ".NET Framework 4.6"));
-    this.run(setupFile, [setupFile, "/q", "/c:\"install.exe /q\""], null, false, true);
+        this.wine.windowsVersion("win7");
 
-    this.wizard().wait(tr("Please wait..."));
-    this.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion");
+        this.wine
+            .overrideDLL()
+            .set("builtin", ["fusion"])
+            .do();
 
-    this.overrideDLL()
-        .set("native", ["mscoree"])
-        .do();
+        wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.6"));
 
-    this.windowsVersion(osVersion);
+        this.wine.run(setupFile, [setupFile, "/q", '/c:"install.exe /q"'], null, false, true);
 
-    return this;
-};
+        wizard.wait(tr("Please wait..."));
 
-/**
- * Verb to install .NET 4.6
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class Dotnet46Verb {
-    constructor() {
-        // do nothing
+        this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion");
+
+        this.wine
+            .overrideDLL()
+            .set("native", ["mscoree"])
+            .do();
+
+        this.wine.windowsVersion(windowsVersion);
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "dotnet46", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "dotnet46", java.util.Optional.empty());
-        wizard.message(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet46"));
         wine.wizard(wizard);
-        wine.dotnet46();
+
+        wizard.message(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet46"));
+
+        new DotNET46(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = DotNET46;
 
@@ -105,7 +113,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Verbs_dotnet472_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_dotnet472_script.js.html index e9caf76d76..516b2655c2 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_dotnet472_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_dotnet472_script.js.html @@ -29,73 +29,80 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
 
+const Optional = Java.type("java.util.Optional");
+
 include("engines.wine.plugins.override_dll");
 include("engines.wine.plugins.windows_version");
 include("engines.wine.plugins.regedit");
-include("engines.wine.verbs.remove_mono");
-include("engines.wine.verbs.dotnet462");
-
+const RemoveMono = include("engines.wine.verbs.remove_mono");
+const DotNET462 = include("engines.wine.verbs.dotnet462");
 
 /**
  * Verb to install .NET 4.7.2
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.dotnet472 = function () {
-    print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet472"));
+class DotNET472 {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-    var osVersion = this.windowsVersion();
+    go() {
+        const wizard = this.wine.wizard();
+        const windowsVersion = this.wine.windowsVersion();
 
-    var setupFile = new Resource()
-        .wizard(this._wizard)
-        .url("https://download.microsoft.com/download/6/E/4/6E48E8AB-DC00-419E-9704-06DD46E5F81D/NDP472-KB4054530-x86-x64-AllOS-ENU.exe")
-        .checksum("31fc0d305a6f651c9e892c98eb10997ae885eb1e")
-        .name("NDP472-KB4054530-x86-x64-AllOS-ENU.exe")
-        .get();
+        print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet472"));
 
-    this.removeMono();
+        const setupFile = new Resource()
+            .wizard(wizard)
+            .url(
+                "https://download.microsoft.com/download/6/E/4/6E48E8AB-DC00-419E-9704-06DD46E5F81D/NDP472-KB4054530-x86-x64-AllOS-ENU.exe"
+            )
+            .checksum("31fc0d305a6f651c9e892c98eb10997ae885eb1e")
+            .name("NDP472-KB4054530-x86-x64-AllOS-ENU.exe")
+            .get();
 
-    this.dotnet462();
-    this.windowsVersion("win7");
+        new RemoveMono(this.wine).go();
 
-    this.overrideDLL()
-        .set("builtin", ["fusion"])
-        .do();
+        new DotNET462(this.wine).go();
 
-    this.wizard().wait(tr("Please wait while {0} is installed...", ".NET Framework 4.7.2"));
-    this.run(setupFile, [setupFile, "/sfxlang:1027", "/q", "/norestart"], null, false, true);
+        this.wine.windowsVersion("win7");
 
-    this.wizard().wait(tr("Please wait..."));
-    this.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion");
+        this.wine
+            .overrideDLL()
+            .set("builtin", ["fusion"])
+            .do();
 
-    this.overrideDLL()
-        .set("native", ["mscoree"])
-        .do();
+        wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.7.2"));
 
-    this.windowsVersion(osVersion);
+        this.wine.run(setupFile, [setupFile, "/sfxlang:1027", "/q", "/norestart"], null, false, true);
 
-    return this;
-};
+        wizard.wait(tr("Please wait..."));
 
-/**
- * Verb to install .NET 4.7.2
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class Dotnet472Verb {
-    constructor() {
-        // do nothing
+        this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion");
+
+        this.wine
+            .overrideDLL()
+            .set("native", ["mscoree"])
+            .do();
+
+        this.wine.windowsVersion(windowsVersion);
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "dotnet472", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "dotnet472", java.util.Optional.empty());
-        wizard.message(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet472"));
         wine.wizard(wizard);
-        wine.dotnet472();
+
+        wizard.message(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet472"));
+
+        new DotNET472(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = DotNET472;
 
@@ -106,7 +113,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Verbs_gallium9_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_gallium9_script.js.html index e1f0044377..c92470356a 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_gallium9_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_gallium9_script.js.html @@ -28,106 +28,117 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
-const {Extractor} = include("utils.functions.filesystem.extract");
-const {remove, lns} = include("utils.functions.filesystem.files");
+const { Extractor } = include("utils.functions.filesystem.extract");
+const { remove, lns } = include("utils.functions.filesystem.files");
+
+const Optional = Java.type("java.util.Optional");
 
 include("engines.wine.plugins.override_dll");
 
 /**
  * Verb to install Gallium 9 Standalone
  * see: https://github.com/iXit/wine-nine-standalone/
- *
- * @param {String} gallium9Version Gallium 9 Standalone version to download
- * @returns {Wine} Wine object
  */
-Wine.prototype.gallium9 = function (gallium9Version) {
-    if (typeof gallium9Version !== "string") {
-        gallium9Version = "0.4";
+class Gallium9 {
+    constructor(wine) {
+        this.wine = wine;
     }
 
-    this.wizard().message(
-        tr(
-            "Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits)."
-        )
-    );
-
-    const setupFile = new Resource()
-        .wizard(this.wizard())
-        .url(
-            "https://github.com/iXit/wine-nine-standalone/releases/download/v" +
-                gallium9Version +
-                "/gallium-nine-standalone-v" +
-                gallium9Version +
-                ".tar.gz"
-        )
-        .name("gallium-nine-standalone-v" + gallium9Version + ".tar.gz")
-        .get();
-
-    new Extractor()
-        .wizard(this.wizard())
-        .archive(setupFile)
-        .to(this.prefixDirectory())
-        .extract();
-
-    remove(this.system32directory() + "/d3d9.dll");
-    lns(
-        this.prefixDirectory() + "/gallium-nine-standalone/lib32/d3d9-nine.dll.so",
-        this.system32directory() + "/d3d9-nine.dll"
-    );
-    lns(
-        this.prefixDirectory() + "/gallium-nine-standalone/bin32/ninewinecfg.exe.so",
-        this.system32directory() + "/ninewinecfg.exe"
-    );
-    lns(this.system32directory() + "/d3d9-nine.dll", this.system32directory() + "/d3d9.dll");
-
-    if (this.architecture() == "amd64") {
-        remove(this.system64directory() + "/d3d9.dll");
-        lns(
-            this.prefixDirectory() + "/gallium-nine-standalone/lib64/d3d9-nine.dll.so",
-            this.system64directory() + "/d3d9-nine.dll"
-        );
-        lns(
-            this.prefixDirectory() + "/gallium-nine-standalone/bin64/ninewinecfg.exe.so",
-            this.system64directory() + "/ninewinecfg.exe"
-        );
-        lns(this.system64directory() + "/d3d9-nine.dll", this.system64directory() + "/d3d9.dll");
+    /**
+     * Sets the used gallium9 version
+     *
+     * @param {string} gallium9Version The Gallium 9 Standalone version to download
+     * @returns {Gallium9} The Gallium9 object
+     */
+    withVersion(gallium9Version) {
+        this.gallium9Version = gallium9Version;
 
-        this.run(this.system64directory() + "ninewinecfg.exe", ["-e"], null, false, true);
-    } else {
-        this.run(this.system32directory() + "ninewinecfg.exe", ["-e"], null, false, true);
+        return this;
     }
 
-    this.overrideDLL()
-        .set("native", ["d3d9"])
-        .do();
+    go() {
+        const wizard = this.wine.wizard();
+        const prefixDirectory = this.wine.prefixDirectory();
+        const system32directory = this.wine.system32directory();
 
-    return this;
-};
+        if (typeof this.gallium9Version !== "string") {
+            this.gallium9Version = "0.4";
+        }
 
-/**
- * Verb to install Gallium 9 Standalone
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class Gallium9Verb {
-    constructor() {
-        // do nothing
+        wizard.message(
+            tr(
+                "Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits)."
+            )
+        );
+
+        const setupFile = new Resource()
+            .wizard(wizard)
+            .url(
+                `https://github.com/iXit/wine-nine-standalone/releases/download/v${this.gallium9Version}/gallium-nine-standalone-v${this.gallium9Version}.tar.gz`
+            )
+            .name(`gallium-nine-standalone-v${this.gallium9Version}.tar.gz`)
+            .get();
+
+        new Extractor()
+            .wizard(wizard)
+            .archive(setupFile)
+            .to(prefixDirectory)
+            .extract();
+
+        remove(`${system32directory}/d3d9.dll`);
+
+        lns(`${prefixDirectory}/gallium-nine-standalone/lib32/d3d9-nine.dll.so`, `${system32directory}/d3d9-nine.dll`);
+        lns(
+            `${prefixDirectory}/gallium-nine-standalone/bin32/ninewinecfg.exe.so`,
+            `${system32directory}/ninewinecfg.exe`
+        );
+        lns(`${system32directory}/d3d9-nine.dll`, `${system32directory}/d3d9.dll`);
+
+        if (this.wine.architecture() == "amd64") {
+            const system64directory = this.wine.system64directory();
+
+            remove(`${system64directory}/d3d9.dll`);
+
+            lns(
+                `${prefixDirectory}/gallium-nine-standalone/lib64/d3d9-nine.dll.so`,
+                `${system64directory}/d3d9-nine.dll`
+            );
+            lns(
+                `${prefixDirectory}/gallium-nine-standalone/bin64/ninewinecfg.exe.so`,
+                `${system64directory}/ninewinecfg.exe`
+            );
+            lns(`${system64directory}/d3d9-nine.dll`, `${system64directory}/d3d9.dll`);
+
+            this.wine.run(`${system64directory}ninewinecfg.exe`, ["-e"], null, false, true);
+        } else {
+            this.wine.run(`${system32directory}ninewinecfg.exe`, ["-e"], null, false, true);
+        }
+
+        this.wine
+            .overrideDLL()
+            .set("native", ["d3d9"])
+            .do();
     }
 
-    install(container) {
-        const wizard = SetupWizard(InstallationType.VERBS, "gallium9", java.util.Optional.empty());
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "gallium9", Optional.empty());
+
         const versions = ["0.4", "0.3", "0.2"];
 
         const selectedVersion = wizard.menu(tr("Please select the version."), versions, "0.4");
 
-        const wine = new Wine();
         wine.prefix(container);
         wine.wizard(wizard);
+
         // install selected version
-        wine.gallium9(selectedVersion.text);
+        new Gallium9(wine).withVersion(selectedVersion.text).go();
 
         wizard.close();
     }
 }
+
+module.default = Gallium9;
 
@@ -138,7 +149,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Verbs_gdiplus_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_gdiplus_script.js.html index 4164cb4f76..4345d39d0c 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_gdiplus_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_gdiplus_script.js.html @@ -28,53 +28,83 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
-const {cp} = include("utils.functions.filesystem.files");
+const { CabExtract } = include("utils.functions.filesystem.extract");
+const { cp, remove } = include("utils.functions.filesystem.files");
+
+const Optional = Java.type("java.util.Optional");
 
 include("engines.wine.plugins.override_dll");
 
 /**
  * Verb to install gdiplus
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.gdiplus = function () {
-    var setupFile = new Resource()
-        .wizard(this.wizard())
-        .url("http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe")
-        .checksum("b9a84bc3de92863bba1f5eb1d598446567fbc646")
-        .name("WindowsXP-KB975337-x86-ENU.exe")
-        .get();
-
-    this.wizard().wait(tr("Please wait while {0} is installed...", "GDI+"));
-    this.run(setupFile, ["/extract:C:\\Tmp", "/q"], null, true, true);
-
-    this.overrideDLL()
-        .set("native", ["gdiplus"])
-        .do();
-
-    cp(this.prefixDirectory() + "/drive_c/Tmp/asms/10/msft/windows/gdiplus/gdiplus.dll", this.system32directory());
-
-    return this;
-};
+class GDIPlus {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-/**
- * Verb to install gdiplus
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class GdiplusVerb {
-    constructor() {
-        // do nothing
+    go() {
+        const wizard = this.wine.wizard();
+        const prefixDirectory = this.wine.prefixDirectory();
+        const system32directory = this.wine.system32directory();
+        const architecture = this.wine.architecture();
+
+        const setupFile = new Resource()
+            .wizard(wizard)
+            .url("https://download.microsoft.com/download/0/A/F/0AFB5316-3062-494A-AB78-7FB0D4461357/windows6.1-KB976932-X86.exe")
+            .checksum("c3516bc5c9e69fee6d9ac4f981f5b95977a8a2fa")
+            .name("windows6.1-KB976932-X86.exe")
+            .get();
+
+        new CabExtract()
+            .archive(setupFile)
+            .wizard(wizard)
+            .to(`${prefixDirectory}/drive_c/gdiplus/`)
+            .extract(["-L", "-F", "x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601.17514_none_72d18a4386696c80/gdiplus.dll"]);
+
+        cp(`${prefixDirectory}/drive_c/gdiplus/x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601.17514_none_72d18a4386696c80/gdiplus.dll`, system32directory);
+
+        if (architecture == "amd64") {
+            const system64directory = this.wine.system64directory();
+
+            const setupFile64 = new Resource()
+                .wizard(wizard)
+                .url("https://download.microsoft.com/download/0/A/F/0AFB5316-3062-494A-AB78-7FB0D4461357/windows6.1-KB976932-X64.exe")
+                .checksum("74865ef2562006e51d7f9333b4a8d45b7a749dab")
+                .name("windows6.1-KB976932-X64.exe")
+                .get();
+
+            new CabExtract()
+                .archive(setupFile64)
+                .wizard(wizard)
+                .to(`${prefixDirectory}/drive_c/gdiplus/`)
+                .extract(["-L", "-F", "amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601.17514_none_2b24536c71ed437a/gdiplus.dll"]);
+
+            cp(`${prefixDirectory}/drive_c/gdiplus/amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601.17514_none_2b24536c71ed437a/gdiplus.dll`, system64directory);
+        }
+
+        remove(`${prefixDirectory}/drive_c/gdiplus/`);
+
+        this.wine
+            .overrideDLL()
+            .set("native", ["gdiplus"])
+            .do();
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "gdiplus", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "gdiplus", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.gdiplus();
+
+        new GDIPlus(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = GDIPlus;
 
@@ -85,7 +115,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Verbs_gdiplus_winxp_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_gdiplus_winxp_script.js.html new file mode 100644 index 0000000000..bffd8e719a --- /dev/null +++ b/docs/jsdoc/Engines_Wine_Verbs_gdiplus_winxp_script.js.html @@ -0,0 +1,119 @@ + + + + + JSDoc: Source: Engines/Wine/Verbs/gdiplus_winxp/script.js + + + + + + + + + + +
+ +

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

+ + + + + + +
+
+
const Wine = include("engines.wine.engine.object");
+const Resource = include("utils.functions.net.resource");
+const { CabExtract } = include("utils.functions.filesystem.extract");
+const { remove, cat, writeToFile } = include("utils.functions.filesystem.files");
+
+const Optional = Java.type("java.util.Optional");
+
+include("engines.wine.plugins.override_dll");
+
+/**
+ * Verb to install gdiplus (windows xp)
+ *
+ * @returns {Wine} Wine object
+ */
+class GDIPlusWinXP {
+    constructor(wine) {
+        this.wine = wine;
+    }
+
+    go() {
+        const wizard = this.wine.wizard();
+        const prefixDirectory = this.wine.prefixDirectory();
+        const system32directory = this.wine.system32directory();
+
+        const setupFile = new Resource()
+            .wizard(wizard)
+            .url("https://download.microsoft.com/download/1/4/6/1467c2ba-4d1f-43ad-8d9b-3e8bc1c6ac3d/NDP1.0sp2-KB830348-X86-Enu.exe")
+            .checksum("6113cd89d77525958295ccbd73b5fb8b89abd0aa")
+            .name("NDP1.0sp2-KB830348-X86-Enu.exe")
+            .get();
+
+        new CabExtract()
+            .archive(setupFile)
+            .wizard(wizard)
+            .to(`${prefixDirectory}/drive_c/gdiplus/`)
+            .extract(["-F", "FL_gdiplus_dll_____X86.3643236F_FC70_11D3_A536_0090278A1BB8"]);
+
+        new CabExtract()
+            .archive(setupFile)
+            .wizard(wizard)
+            .to(`${prefixDirectory}/drive_c/gdiplus/`)
+            .extract(["-L", "-F", "x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601.17514_none_72d18a4386696c80/gdiplus.dll"]);
+
+        const content = cat(`${prefixDirectory}/drive_c/gdiplus/drive_c/gdiplus/FL_gdiplus_dll_____X86.3643236F_FC70_11D3_A536_0090278A1BB8`);
+        writeToFile(`${system32directory}/gdiplus.dll`, content);
+
+        remove(`${prefixDirectory}/drive_c/gdiplus/`);
+
+        this.wine
+            .overrideDLL()
+            .set("native", ["gdiplus"])
+            .do();
+    }
+
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "gdiplus (windows xp)", Optional.empty());
+
+        wine.prefix(container);
+        wine.wizard(wizard);
+
+        new GDIPlusWinXP(wine).go();
+
+        wizard.close();
+    }
+}
+
+module.default = GDIPlusWinXP;
+
+
+
+ + + + +
+ + + +
+ + + + + + + diff --git a/docs/jsdoc/Engines_Wine_Verbs_luna_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_luna_script.js.html index e5b423969d..56cd596f89 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_luna_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_luna_script.js.html @@ -28,57 +28,59 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
-const {mkdir, cp} = include("utils.functions.filesystem.files");
+const { mkdir, cp } = include("utils.functions.filesystem.files");
+
+const Optional = Java.type("java.util.Optional");
 
 include("engines.wine.plugins.regedit");
 
 /**
  * Verb to install luna
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.luna = function () {
-    var lunaStyle = new Resource()
-        .wizard(this.wizard())
-        .url("https://repository.playonlinux.com/divers/luna.msstyles")
-        .checksum("50a71767f90c1d3d86ca188a84393f2d39664311")
-        .name("luna.msstyles")
-        .get();
+class Luna {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-    var lunaReg = new Resource()
-        .wizard(this.wizard())
-        .url("https://repository.playonlinux.com/divers/luna.reg")
-        .checksum("074e655d391ae87527f4cc50ba822a8aad83a09f")
-        .name("luna.reg")
-        .get();
+    go() {
+        const wizard = this.wine.wizard();
+        const prefixDirectory = this.wine.prefixDirectory();
 
+        const lunaStyle = new Resource()
+            .wizard(wizard)
+            .url("https://repository.playonlinux.com/divers/luna.msstyles")
+            .checksum("50a71767f90c1d3d86ca188a84393f2d39664311")
+            .name("luna.msstyles")
+            .get();
 
-    mkdir(this.prefixDirectory() + "/drive_c/windows/Resources/Themes/luna/");
-    cp(lunaStyle, this.prefixDirectory() + "/drive_c/windows/Resources/Themes/luna/");
+        const lunaReg = new Resource()
+            .wizard(wizard)
+            .url("https://repository.playonlinux.com/divers/luna.reg")
+            .checksum("074e655d391ae87527f4cc50ba822a8aad83a09f")
+            .name("luna.reg")
+            .get();
 
-    this.regedit().open(lunaReg);
+        mkdir(`${prefixDirectory}/drive_c/windows/Resources/Themes/luna/`);
 
-    return this;
-};
+        cp(lunaStyle, `${prefixDirectory}/drive_c/windows/Resources/Themes/luna/`);
 
-/**
- * Verb to install luna
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class LunaVerb {
-    constructor() {
-        // do nothing
+        this.wine.regedit().open(lunaReg);
     }
 
-    install(container) {
+    static install(container) {
         var wine = new Wine();
+        var wizard = SetupWizard(InstallationType.VERBS, "luna", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "luna", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.luna();
+
+        new Luna(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = Luna;
 
@@ -89,7 +91,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 59448da5d2..32614da84b 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_mfc42_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_mfc42_script.js.html @@ -28,64 +28,67 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
-const {CabExtract} = include("utils.functions.filesystem.extract");
-const {remove} = include("utils.functions.filesystem.files");
+const { CabExtract } = include("utils.functions.filesystem.extract");
+const { remove } = include("utils.functions.filesystem.files");
+
+const Optional = Java.type("java.util.Optional");
 
 include("engines.wine.plugins.override_dll");
 
 /**
  * Verb to install mfc42.dll and mfc42u.dll
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.mfc42 = function () {
-    var setupFile = new Resource()
-        .wizard(this.wizard())
-        .url("http://download.microsoft.com/download/vc60pro/Update/2/W9XNT4/EN-US/VC6RedistSetup_deu.exe")
-        .checksum("a8c4dd33e281c166488846a10edf97ff0ce37044")
-        .name("VC6RedistSetup_deu.exe")
-        .get();
-
-    remove(this.system32directory() + "/mfc42.dll");
-    remove(this.system32directory() + "/mfc42u.dll");
-
-    new CabExtract()
-        .archive(setupFile)
-        .wizard(this.wizard())
-        .to(this.system32directory())
-        .extract();
-
-    new CabExtract()
-        .archive(this.system32directory() + "/vcredist.exe")
-        .wizard(this.wizard())
-        .to(this.system32directory())
-        .extract(['-F', 'mfc42*.dll']);
-
-    this.overrideDLL()
-        .set("native, builtin", ["mfc42", "mfc42u"])
-        .do();
-
-    return this;
-};
+class Mfc42 {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-/**
- * Verb to install mfc42.dll and mfc42u.dll
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class Mfc42Verb {
-    constructor() {
-        // do nothing
+    go() {
+        const wizard = this.wine.wizard();
+        const system32directory = this.wine.system32directory();
+
+        const setupFile = new Resource()
+            .wizard(wizard)
+            .url("http://download.microsoft.com/download/vc60pro/Update/2/W9XNT4/EN-US/VC6RedistSetup_deu.exe")
+            .checksum("a8c4dd33e281c166488846a10edf97ff0ce37044")
+            .name("VC6RedistSetup_deu.exe")
+            .get();
+
+        remove(`${system32directory}/mfc42.dll`);
+        remove(`${system32directory}/mfc42u.dll`);
+
+        new CabExtract()
+            .wizard(wizard)
+            .archive(setupFile)
+            .to(system32directory)
+            .extract();
+
+        new CabExtract()
+            .wizard(wizard)
+            .archive(`${system32directory}/vcredist.exe`)
+            .to(system32directory)
+            .extract(["-F", "mfc42*.dll"]);
+
+        this.wine
+            .overrideDLL()
+            .set("native, builtin", ["mfc42", "mfc42u"])
+            .do();
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "mfc42", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "mfc42", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.mfc42();
+
+        new Mfc42(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = Mfc42;
 
@@ -96,7 +99,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 037504fc76..2b1b48a905 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_msls31_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_msls31_script.js.html @@ -28,51 +28,53 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
-const {CabExtract} = include("utils.functions.filesystem.extract");
-const {remove} = include("utils.functions.filesystem.files");
+const { CabExtract } = include("utils.functions.filesystem.extract");
+const { remove } = include("utils.functions.filesystem.files");
+
+const Optional = Java.type("java.util.Optional");
 
 /**
  * Verb to install msls31.dll
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.msls31 = function () {
-    var setupFile = new Resource()
-        .wizard(this.wizard())
-        .url("ftp://ftp.hp.com/pub/softlib/software/msi/InstMsiW.exe")
-        .checksum("4fc3bf0dc96b5cf5ab26430fac1c33c5c50bd142")
-        .name("InstMsiW.exe")
-        .get();
+class Msls31 {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-    remove(this.system32directory() + "/msls31.dll");
+    go() {
+        const wizard = this.wine.wizard();
+        const system32directory = this.wine.system32directory();
 
-    new CabExtract()
-        .archive(setupFile)
-        .wizard(this.wizard())
-        .to(this.system32directory())
-        .extract(["-F", "msls31.dll"]);
+        const setupFile = new Resource()
+            .wizard(wizard)
+            .url("ftp://ftp.hp.com/pub/softlib/software/msi/InstMsiW.exe")
+            .checksum("4fc3bf0dc96b5cf5ab26430fac1c33c5c50bd142")
+            .name("InstMsiW.exe")
+            .get();
 
-    return this;
-};
+        remove(`${system32directory}/msls31.dll`);
 
-/**
- * Verb to install msls31.dll
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class Msls31Verb {
-    constructor() {
-        // do nothing
+        new CabExtract()
+            .wizard(wizard)
+            .archive(setupFile)
+            .to(system32directory)
+            .extract(["-F", "msls31.dll"]);
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "msls31", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "msls31", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.msls31();
+
+        new Msls31(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = Msls31;
 
@@ -83,7 +85,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 d650b139f1..e0cf12baaf 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_mspatcha_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_mspatcha_script.js.html @@ -28,66 +28,71 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
-const {CabExtract} = include("utils.functions.filesystem.extract");
-const {remove} = include("utils.functions.filesystem.files");
+const { CabExtract } = include("utils.functions.filesystem.extract");
+const { remove } = include("utils.functions.filesystem.files");
+
+const Optional = Java.type("java.util.Optional");
 
 include("engines.wine.plugins.override_dll");
 
 /**
  * Verb to install mspatcha
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.mspatcha = function () {
-    //Inspired from winetricks mspatcha, but with a link Phoenicis can understand
-    var setupFile = new Resource()
-        .wizard(this.wizard())
-        .url("https://ftp.gnome.org/mirror/archive/ftp.sunet.se/pub/security/vendor/microsoft/win2000/Service_Packs/usa/W2KSP4_EN.EXE")
-        .checksum("fadea6d94a014b039839fecc6e6a11c20afa4fa8")
-        .name("W2ksp4_EN.exe")
-        .get();
-
-    remove(this.system32directory() + "/mspatcha.dll");
-
-    new CabExtract()
-        .archive(setupFile)
-        .wizard(this.wizard())
-        .to(this.system32directory())
-        .extract();
-
-    new CabExtract()
-        .archive(this.system32directory() + "/i386/mspatcha.dl_")
-        .wizard(this.wizard())
-        .to(this.system32directory())
-        .extract();
-
-    remove(this.system32directory() + "/i386/");
-
-    this.overrideDLL()
-        .set("native, builtin", ["mspatcha"])
-        .do();
-
-    return this;
-};
+class Mspatcha {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-/**
- * Verb to install mspatcha
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class MspatchaVerb {
-    constructor() {
-        // do nothing
+    go() {
+        const wizard = this.wine.wizard();
+        const system32directory = this.wine.system32directory();
+
+        //Inspired from winetricks mspatcha, but with a link Phoenicis can understand
+        const setupFile = new Resource()
+            .wizard(wizard)
+            .url(
+                "https://ftp.gnome.org/mirror/archive/ftp.sunet.se/pub/security/vendor/microsoft/win2000/Service_Packs/usa/W2KSP4_EN.EXE"
+            )
+            .checksum("fadea6d94a014b039839fecc6e6a11c20afa4fa8")
+            .name("W2ksp4_EN.exe")
+            .get();
+
+        remove(`${system32directory}/mspatcha.dll`);
+
+        new CabExtract()
+            .wizard(wizard)
+            .archive(setupFile)
+            .to(system32directory)
+            .extract();
+
+        new CabExtract()
+            .wizard(wizard)
+            .archive(`${system32directory}/i386/mspatcha.dl_`)
+            .to(system32directory)
+            .extract();
+
+        remove(`${system32directory}/i386/`);
+
+        this.wine
+            .overrideDLL()
+            .set("native, builtin", ["mspatcha"])
+            .do();
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "mspatcha", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "mspatcha", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.mspatcha();
+
+        new Mspatcha(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = Mspatcha;
 
@@ -98,7 +103,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Verbs_msxml3_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_msxml3_script.js.html index ff3037c33f..d90d45d4f3 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_msxml3_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_msxml3_script.js.html @@ -28,53 +28,57 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
-const {remove} = include("utils.functions.filesystem.files");
+const { remove } = include("utils.functions.filesystem.files");
+
+const Optional = Java.type("java.util.Optional");
 
 include("engines.wine.plugins.override_dll");
 
 /**
  * Verb to install msxml3
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.msxml3 = function () {
-    var setupFile32 = new Resource()
-        .wizard(this.wizard())
-        .url("https://media.codeweavers.com/pub/other/msxml3.msi")
-        .checksum("d4c2178dfb807e1a0267fce0fd06b8d51106d913")
-        .name("msxml3.msi")
-        .get();
+class Msxml3 {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-    remove(this.system32directory() + "/msxml3.dll");
+    go() {
+        const wizard = this.wine.wizard();
+        const system32directory = this.wine.system32directory();
 
-    this.overrideDLL()
-        .set("native", ["msxml3"])
-        .do();
+        const setupFile32 = new Resource()
+            .wizard(wizard)
+            .url("https://media.codeweavers.com/pub/other/msxml3.msi")
+            .checksum("d4c2178dfb807e1a0267fce0fd06b8d51106d913")
+            .name("msxml3.msi")
+            .get();
 
-    this.wizard().wait(tr("Please wait while {0} is installed...", "msxml3"));
-    this.run(setupFile32, ["/q:a", "/c:msxml3.msi /q"], null, false, true);
+        remove(`${system32directory}/msxml3.dll`);
 
-    return this;
-};
+        this.wine
+            .overrideDLL()
+            .set("native", ["msxml3"])
+            .do();
 
-/**
- * Verb to install msxml3
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class Msxml3Verb {
-    constructor() {
-        // do nothing
+        wizard.wait(tr("Please wait while {0} is installed...", "msxml3"));
+
+        this.wine.run(setupFile32, ["/q:a", "/c:msxml3.msi /q"], null, false, true);
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "msxml3", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "msxml3", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.msxml3();
+
+        new Msxml3(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = Msxml3;
 
@@ -85,7 +89,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Verbs_msxml6_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_msxml6_script.js.html index 49405b9df6..b8f2101df7 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_msxml6_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_msxml6_script.js.html @@ -28,68 +28,82 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
-const {remove} = include("utils.functions.filesystem.files");
+const { remove, fileExists } = include("utils.functions.filesystem.files");
+
+const Optional = Java.type("java.util.Optional");
 
 include("engines.wine.plugins.override_dll");
 
 /**
  * Verb to install msxml6
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.msxml6 = function () {
-    if (this.architecture() == "amd64") {
-        var setupFile64 = new Resource()
-            .wizard(this.wizard())
-            .url("https://download.microsoft.com/download/e/a/f/eafb8ee7-667d-4e30-bb39-4694b5b3006f/msxml6_x64.msi")
-            .checksum("ca0c0814a9c7024583edb997296aad7cb0a3cbf7")
-            .name("msxml6_x64.msi")
-            .get();
-    } else {
-        var setupFile32 = new Resource()
-            .wizard(this.wizard())
-            .url("https://download.microsoft.com/download/e/a/f/eafb8ee7-667d-4e30-bb39-4694b5b3006f/msxml6_x86.msi")
-            .checksum("5125220e985b33c946bbf9f60e2b222c7570bfa2")
-            .name("msxml6_x86.msi")
-            .get();
+class Msxml6 {
+    constructor(wine) {
+        this.wine = wine;
     }
 
-    remove(this.system32directory() + "/msxml6.dll");
-
-    this.overrideDLL()
-        .set("native,builtin", ["msxml6"])
-        .do();
-
-    if (this.architecture() == "amd64") {
-        remove(this.system64directory() + "/msxml6.dll")
-        this.wizard().wait(tr("Please wait while {0} is installed...", "msxml6"));
-        this.run(setupFile64, ["/q:a", "/c:msxml6_x64.msi /q"], null, false, true);
-    } else {
-        this.wizard().wait(tr("Please wait while {0} is installed...", "msxml6"));
-        this.run(setupFile32, ["/q:a", "/c:msxml6_x86.msi /q"], null, false, true);
+    go() {
+        const wizard = this.wine.wizard();
+        const system32directory = this.wine.system32directory();
+
+        if(fileExists(`${system32directory}/msxml6.dll`)) {
+            remove(`${system32directory}/msxml6.dll`);
+        }
+
+        this.wine
+            .overrideDLL()
+            .set("native,builtin", ["msxml6"])
+            .do();
+
+        if (this.wine.architecture() == "amd64") {
+            const system64directory = this.wine.system64directory();
+
+            if(fileExists(`${system64directory}/msxml6.dll`)) {
+                remove(`${system64directory}/msxml6.dll`);
+            }
+
+            const setupFile64 = new Resource()
+                .wizard(wizard)
+                .url(
+                    "https://download.microsoft.com/download/e/a/f/eafb8ee7-667d-4e30-bb39-4694b5b3006f/msxml6_x64.msi"
+                )
+                .checksum("ca0c0814a9c7024583edb997296aad7cb0a3cbf7")
+                .name("msxml6_x64.msi")
+                .get();
+
+            wizard.wait(tr("Please wait while {0} is installed...", "msxml6"));
+
+            this.wine.run(setupFile64, ["/q:a", "/c:msxml6_x64.msi /q"], null, false, true);
+        } else {
+            const setupFile32 = new Resource()
+                .wizard(wizard)
+                .url(
+                    "https://download.microsoft.com/download/e/a/f/eafb8ee7-667d-4e30-bb39-4694b5b3006f/msxml6_x86.msi"
+                )
+                .checksum("5125220e985b33c946bbf9f60e2b222c7570bfa2")
+                .name("msxml6_x86.msi")
+                .get();
+
+            wizard.wait(tr("Please wait while {0} is installed...", "msxml6"));
+
+            this.wine.run(setupFile32, ["/q:a", "/c:msxml6_x86.msi /q"], null, false, true);
+        }
     }
 
-    return this;
-};
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "msxml6", Optional.empty());
 
-/**
- * Verb to install msxml6
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class Msxml6Verb {
-    constructor() {
-        // do nothing
-    }
-
-    install(container) {
-        var wine = new Wine();
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "msxml6", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.msxml6();
+
+        new Msxml6(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = Msxml6;
 
@@ -100,7 +114,7 @@

Source: Engines/Wine/Verbs/msxml6/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 77d461c467..c08ac0a94f 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_quartz_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_quartz_script.js.html @@ -28,66 +28,72 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
-const {CabExtract} = include("utils.functions.filesystem.extract");
-const {remove} = include("utils.functions.filesystem.files");
+const { CabExtract } = include("utils.functions.filesystem.extract");
+const { remove } = include("utils.functions.filesystem.files");
+
+const Optional = Java.type("java.util.Optional");
 
 include("engines.wine.plugins.override_dll");
 include("engines.wine.plugins.regsvr32");
 
 /**
  * Verb to install quartz
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.quartz = function () {
-    var setupFile = new Resource()
-        .wizard(this.wizard())
-        .url("https://download.microsoft.com/download/E/E/1/EE17FF74-6C45-4575-9CF4-7FC2597ACD18/directx_feb2010_redist.exe")
-        .checksum("a97c820915dc20929e84b49646ec275760012a42")
-        .name("directx_feb2010_redist.exe")
-        .get();
-
-    new CabExtract()
-        .archive(setupFile)
-        .wizard(this.wizard())
-        .to(this.prefixDirectory() + "/TMP/")
-        .extract(["-L", "-F", "dxnt.cab"]);
-
-    new CabExtract()
-        .archive(this.prefixDirectory() + "/TMP/dxnt.cab")
-        .wizard(this.wizard())
-        .to(this.system32directory())
-        .extract(["-L", "-F", "quartz.dll"]);
-
-    remove(this.prefixDirectory() + "/TMP/");
-
-    this.regsvr32().install("quartz.dll");
-
-    this.overrideDLL()
-        .set("native, builtin", ["quartz"])
-        .do()
-
-    return this;
-}
+class Quartz {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-/**
- * Verb to install quartz
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class QuartzVerb {
-    constructor() {
-        // do nothing
+    go() {
+        const wizard = this.wine.wizard();
+        const prefixDirectory = this.wine.prefixDirectory();
+        const system32directory = this.wine.system32directory();
+
+        var setupFile = new Resource()
+            .wizard(wizard)
+            .url(
+                "https://download.microsoft.com/download/E/E/1/EE17FF74-6C45-4575-9CF4-7FC2597ACD18/directx_feb2010_redist.exe"
+            )
+            .checksum("a97c820915dc20929e84b49646ec275760012a42")
+            .name("directx_feb2010_redist.exe")
+            .get();
+
+        new CabExtract()
+            .wizard(wizard)
+            .archive(setupFile)
+            .to(`${prefixDirectory}/TMP/`)
+            .extract(["-L", "-F", "dxnt.cab"]);
+
+        new CabExtract()
+            .wizard(wizard)
+            .archive(`${prefixDirectory}/TMP/dxnt.cab`)
+            .to(system32directory)
+            .extract(["-L", "-F", "quartz.dll"]);
+
+        remove(`${prefixDirectory}/TMP/`);
+
+        this.wine.regsvr32().install("quartz.dll");
+
+        this.wine
+            .overrideDLL()
+            .set("native, builtin", ["quartz"])
+            .do();
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "quartz", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "quartz", java.util.Optional.empty());
         wine.wizard(wizard);
+
         wine.quartz();
+
         wizard.close();
     }
 }
+
+module.default = Quartz;
 
@@ -98,7 +104,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 dd38ff463f..f9418d21be 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_sandbox_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_sandbox_script.js.html @@ -27,44 +27,47 @@

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

const Wine = include("engines.wine.engine.object");
-const {remove, lns} = include("utils.functions.filesystem.files");
+const { remove, lns } = include("utils.functions.filesystem.files");
+
+const propertyReader = Bean("propertyReader");
+
+const Optional = Java.type("java.util.Optional");
 
 /**
  * Verb to install a sandbox
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.sandbox = function () {
-    var tmp = Bean("propertyReader").getProperty("application.user.tmp");
-    var resources = Bean("propertyReader").getProperty("application.user.resources");
+class Sandbox {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-    remove(this.prefixDirectory() + "/dosdevices/z:");
-    remove(this.prefixDirectory() + "/dosdevices/y:");
+    go() {
+        const prefixDirectory = this.wine.prefixDirectory();
 
-    lns(tmp, this.prefixDirectory() + "/dosdevices/z:");
-    lns(resources, this.prefixDirectory() + "/dosdevices/y:");
+        const tmp = propertyReader.getProperty("application.user.tmp");
+        const resources = propertyReader.getProperty("application.user.resources");
 
-    return this;
-};
+        remove(`${prefixDirectory}/dosdevices/z:`);
+        remove(`${prefixDirectory}/dosdevices/y:`);
 
-/**
- * Verb to install a sandbox
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class SandboxVerb {
-    constructor() {
-        // do nothing
+        lns(tmp, `${prefixDirectory}/dosdevices/z:`);
+        lns(resources, `${prefixDirectory}/dosdevices/y:`);
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "sandbox", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "sandbox", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.sandbox();
+
+        new Sandbox(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = Sandbox;
 
@@ -75,7 +78,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 9e44bad6ba..89529b6f0c 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_secur32_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_secur32_script.js.html @@ -28,78 +28,103 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
-const {CabExtract} = include("utils.functions.filesystem.extract");
-const {cp, remove} = include("utils.functions.filesystem.files");
+const { CabExtract } = include("utils.functions.filesystem.extract");
+const { cp, remove } = include("utils.functions.filesystem.files");
+
+const Optional = Java.type("java.util.Optional");
 
 include("engines.wine.plugins.override_dll");
 
 /**
  * Verb to install secur32
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.secur32 = function () {
-    var setupFilex86 = new Resource()
-        .wizard(this.wizard())
-        .url("https://download.microsoft.com/download/0/A/F/0AFB5316-3062-494A-AB78-7FB0D4461357/windows6.1-KB976932-X86.exe")
-        .checksum("c3516bc5c9e69fee6d9ac4f981f5b95977a8a2fa")
-        .name("windows6.1-KB976932-X86.exe")
-        .get();
-
-    new CabExtract()
-        .archive(setupFilex86)
-        .wizard(this.wizard())
-        .to(this.prefixDirectory() + "/TMP/")
-        .extract(["-L", "-F", "x86_microsoft-windows-lsa_31bf3856ad364e35_6.1.7601.17514_none_a851f4adbb0d5141/secur32.dll"]);
-
-    cp(this.prefixDirectory() + "/TMP/" + "x86_microsoft-windows-lsa_31bf3856ad364e35_6.1.7601.17514_none_a851f4adbb0d5141/secur32.dll", this.system32directory());
-
-    remove(this.prefixDirectory() + "/TMP/");
-
-    if (this.architecture() == "amd64") {
-        var setupFilex64 = new Resource()
-            .wizard(this.wizard())
-            .url("https://download.microsoft.com/download/0/A/F/0AFB5316-3062-494A-AB78-7FB0D4461357/windows6.1-KB976932-X64.exe")
-            .checksum("74865ef2562006e51d7f9333b4a8d45b7a749dab")
-            .name("windows6.1-KB976932-X64.exe")
+class Secur32 {
+    constructor(wine) {
+        this.wine = wine;
+    }
+
+    go() {
+        const wizard = this.wine.wizard();
+        const prefixDirectory = this.wine.prefixDirectory();
+        const system32directory = this.wine.system32directory();
+        const architecture = this.wine.architecture();
+
+        const setupFilex86 = new Resource()
+            .wizard(wizard)
+            .url(
+                "https://download.microsoft.com/download/0/A/F/0AFB5316-3062-494A-AB78-7FB0D4461357/windows6.1-KB976932-X86.exe"
+            )
+            .checksum("c3516bc5c9e69fee6d9ac4f981f5b95977a8a2fa")
+            .name("windows6.1-KB976932-X86.exe")
             .get();
 
         new CabExtract()
-            .archive(setupFilex64)
-            .wizard(this.wizard())
-            .to(this.prefixDirectory() + "/TMP/")
-            .extract(["-L", "-F", "amd64_microsoft-windows-lsa_31bf3856ad364e35_6.1.7601.17514_none_04709031736ac277/secur32.dll"]);
-
-        cp(this.prefixDirectory() + "/TMP/" + "amd64_microsoft-windows-lsa_31bf3856ad364e35_6.1.7601.17514_none_04709031736ac277/secur32.dll", this.system64directory());
-
-        remove(this.prefixDirectory() + "/TMP/");
+            .wizard(wizard)
+            .archive(setupFilex86)
+            .to(`${prefixDirectory}/TMP/`)
+            .extract([
+                "-L",
+                "-F",
+                "x86_microsoft-windows-lsa_31bf3856ad364e35_6.1.7601.17514_none_a851f4adbb0d5141/secur32.dll"
+            ]);
+
+        cp(
+            `${prefixDirectory}/TMP/x86_microsoft-windows-lsa_31bf3856ad364e35_6.1.7601.17514_none_a851f4adbb0d5141/secur32.dll`,
+            system32directory
+        );
+
+        remove(`${prefixDirectory}/TMP/`);
+
+        if (architecture == "amd64") {
+            const system64directory = this.wine.system64directory();
+
+            const setupFilex64 = new Resource()
+                .wizard(wizard)
+                .url(
+                    "https://download.microsoft.com/download/0/A/F/0AFB5316-3062-494A-AB78-7FB0D4461357/windows6.1-KB976932-X64.exe"
+                )
+                .checksum("74865ef2562006e51d7f9333b4a8d45b7a749dab")
+                .name("windows6.1-KB976932-X64.exe")
+                .get();
+
+            new CabExtract()
+                .wizard(wizard)
+                .archive(setupFilex64)
+                .to(`${prefixDirectory}/TMP/`)
+                .extract([
+                    "-L",
+                    "-F",
+                    "amd64_microsoft-windows-lsa_31bf3856ad364e35_6.1.7601.17514_none_04709031736ac277/secur32.dll"
+                ]);
+
+            cp(
+                `${prefixDirectory}/TMP/amd64_microsoft-windows-lsa_31bf3856ad364e35_6.1.7601.17514_none_04709031736ac277/secur32.dll`,
+                system64directory
+            );
+
+            remove(`${prefixDirectory}/TMP/`);
+        }
+
+        this.wine
+            .overrideDLL()
+            .set("native, builtin", ["secur32"])
+            .do();
     }
 
-    this.overrideDLL()
-        .set("native, builtin", ["secur32"])
-        .do()
-
-    return this;
-}
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "secur32", Optional.empty());
 
-/**
- * Verb to install secur32
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class Secur32Verb {
-    constructor() {
-        // do nothing
-    }
-
-    install(container) {
-        var wine = new Wine();
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "secur32", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.secur32();
+
+        new Secur32(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = Secur32;
 
@@ -110,7 +135,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 11d617f96d..7cbfef45b5 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun2003_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun2003_script.js.html @@ -30,54 +30,51 @@

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

const Resource = include("utils.functions.net.resource"); const { cp } = include("utils.functions.filesystem.files"); -include("engines.wine.verbs.luna"); +const Optional = Java.type("java.util.Optional"); /** * Verb to install vcrun2003 - * - * @returns {Wine} Wine object */ -Wine.prototype.vcrun2003 = function () { - const setupFile = new Resource() - .wizard(this.wizard()) - .url("https://sourceforge.net/projects/bzflag/files/bzedit%20win32/1.6.5/BZEditW32_1.6.5.exe") - .checksum("bdd1b32c4202fd77e6513fd507c8236888b09121") - .name("BZEditW32_1.6.5.exe") - .get(); +class Vcrun2003 { + constructor(wine) { + this.wine = wine; + } - this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2003 Redistributable (x86)")); - this.run(setupFile, "/S", null, false, true); + go() { + const wizard = this.wine.wizard(); + const programFiles = this.wine.programFiles(); + const system32directory = this.wine.system32directory(); - const dlls = ["msvcp71", "mfc71"]; + const setupFile = new Resource() + .wizard(wizard) + .url("https://sourceforge.net/projects/bzflag/files/bzedit%20win32/1.6.5/BZEditW32_1.6.5.exe") + .checksum("bdd1b32c4202fd77e6513fd507c8236888b09121") + .name("BZEditW32_1.6.5.exe") + .get(); - dlls.forEach(dll => { - cp(this.programFiles() + "/BZEdit1.6.5/" + dll, this.system32directory()); - }); + wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2003 Redistributable (x86)")); - return this; -}; + this.wine.run(setupFile, "/S", null, false, true); -/** - * Verb to install vcrun2003 - */ -module.default = class Vcrun2003Verb { - constructor() { - // do nothing + ["msvcp71", "mfc71"].forEach(dll => { + cp(`${programFiles}/BZEdit1.6.5/${dll}`, system32directory); + }); } - install(container) { + static install(container) { const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "vcrun2003", Optional.empty()); wine.prefix(container); - - const wizard = SetupWizard(InstallationType.VERBS, "vcrun2003", java.util.Optional.empty()); - wine.wizard(wizard); - wine.vcrun2003(); + + new Vcrun2003(wine).go(); wizard.close(); } -}; +} + +module.default = Vcrun2003; @@ -88,7 +85,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 e970beb702..5bcd802ae6 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun2005_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun2005_script.js.html @@ -29,56 +29,52 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
 
-include("engines.wine.verbs.luna");
+const Optional = Java.type("java.util.Optional");
+
 include("engines.wine.plugins.override_dll");
 
 /**
  * Verb to install vcrun2005
- * @returns {Wine} Wine object
  */
-Wine.prototype.vcrun2005 = function () {
-    var setupFile = new Resource()
-        .wizard(this.wizard())
-        .url("http://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE")
-        .checksum("b8fab0bb7f62a24ddfe77b19cd9a1451abd7b847")
-        .name("vcredist_x86.EXE")
-        .get();
-
-    this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2005 Redistributable (x86)"));
-    this.run(setupFile, "/q", null, false, true);
-
-    var dlls = [
-        "atl80",
-        "msvcm80",
-        "msvcp80",
-        "msvcr80",
-        "vcomp"
-    ];
-    this.overrideDLL()
-        .set("native, builtin", dlls)
-        .do();
-
-    return this;
-};
+class Vcrun2005 {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-/**
- * Verb to install vcrun2005
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class Vcrun2005Verb {
-    constructor() {
-        // do nothing
+    go() {
+        const wizard = this.wine.wizard();
+
+        const setupFile = new Resource()
+            .wizard(wizard)
+            .url("http://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE")
+            .checksum("b8fab0bb7f62a24ddfe77b19cd9a1451abd7b847")
+            .name("vcredist_x86.EXE")
+            .get();
+
+        wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2005 Redistributable (x86)"));
+
+        this.wine.run(setupFile, "/q", null, false, true);
+
+        this.wine
+            .overrideDLL()
+            .set("native, builtin", ["atl80", "msvcm80", "msvcp80", "msvcr80", "vcomp"])
+            .do();
     }
 
     install(container) {
-        var wine = new Wine();
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "vcrun2005", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "vcrun2005", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.vcrun2005();
+
+        new Vcrun2005(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = Vcrun2005;
 
@@ -89,7 +85,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 eee3d47125..7ff11df338 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun2008_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun2008_script.js.html @@ -29,69 +29,67 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
 
-include("engines.wine.verbs.luna");
+const Optional = Java.type("java.util.Optional");
+
 include("engines.wine.plugins.override_dll");
 
 /**
  * Verb to install vcrun2008
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.vcrun2008 = function () {
-    var setupFile32 = new Resource()
-        .wizard(this.wizard())
-        .url("http://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe")
-        .checksum("470640aa4bb7db8e69196b5edb0010933569e98d")
-        .name("vcredist_x86.exe")
-        .get();
-
-    this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2008 Redistributable (x86)"));
-    this.run(setupFile32, "/q", null, false, true);
-
-    if (this.architecture() == "amd64") {
-        var setupFile64 = new Resource()
-            .wizard(this.wizard())
-            .url("https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe")
-            .checksum("a7c83077b8a28d409e36316d2d7321fa0ccdb7e8")
-            .name("vcredist_x64.exe")
+class Vcrun2008 {
+    constructor(wine) {
+        this.wine = wine;
+    }
+
+    go() {
+        const wizard = this.wine.wizard();
+
+        const setupFile32 = new Resource()
+            .wizard(wizard)
+            .url("http://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe")
+            .checksum("470640aa4bb7db8e69196b5edb0010933569e98d")
+            .name("vcredist_x86.exe")
             .get();
 
-        this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2008 Redistributable (x64)"));
-        this.run(setupFile64, "/q", null, false, true);
-    }
+        wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2008 Redistributable (x86)"));
 
-    var dlls = [
-        "atl90",
-        "msvcm90",
-        "msvcp90",
-        "msvcr90",
-        "vcomp90",
-    ];
-    this.overrideDLL()
-        .set("native, builtin", dlls)
-        .do();
+        this.wine.run(setupFile32, "/q", null, false, true);
 
-    return this;
-};
+        if (this.wine.architecture() == "amd64") {
+            const setupFile64 = new Resource()
+                .wizard(wizard)
+                .url(
+                    "https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe"
+                )
+                .checksum("a7c83077b8a28d409e36316d2d7321fa0ccdb7e8")
+                .name("vcredist_x64.exe")
+                .get();
 
-/**
- * Verb to install vcrun2008
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class Vcrun2008Verb {
-    constructor() {
-        // do nothing
+            wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2008 Redistributable (x64)"));
+
+            this.wine.run(setupFile64, "/q", null, false, true);
+        }
+
+        this.wine
+            .overrideDLL()
+            .set("native, builtin", ["atl90", "msvcm90", "msvcp90", "msvcr90", "vcomp90"])
+            .do();
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "vcrun2008", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "vcrun2008", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.vcrun2008();
+
+        new Vcrun2008(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = Vcrun2008;
 
@@ -102,7 +100,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 20d1ec6862..9414554d55 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun2010_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun2010_script.js.html @@ -29,68 +29,67 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
 
-include("engines.wine.verbs.luna");
+const Optional = Java.type("java.util.Optional");
+
 include("engines.wine.plugins.override_dll");
 
 /**
  * Verb to install vcrun2010
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.vcrun2010 = function () {
-    var setupFile32 = new Resource()
-        .wizard(this.wizard())
-        .url("http://download.microsoft.com/download/5/B/C/5BC5DBB3-652D-4DCE-B14A-475AB85EEF6E/vcredist_x86.exe")
-        .checksum("372d9c1670343d3fb252209ba210d4dc4d67d358")
-        .name("vcredist_x86.exe")
-        .get();
-
-    this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2010 Redistributable (x86)"));
-    this.run(setupFile32, "/q", null, false, true);
-
-    if (this.architecture() == "amd64") {
-        var setupFile64 = new Resource()
-            .wizard(this.wizard())
-            .url("http://download.microsoft.com/download/A/8/0/A80747C3-41BD-45DF-B505-E9710D2744E0/vcredist_x64.exe")
-            .checksum("027d0c2749ec5eb21b031f46aee14c905206f482")
-            .name("vcredist_x64.exe")
+class Vcrun2010 {
+    constructor(wine) {
+        this.wine = wine;
+    }
+
+    go() {
+        const wizard = this.wine.wizard();
+
+        const setupFile32 = new Resource()
+            .wizard(wizard)
+            .url("http://download.microsoft.com/download/5/B/C/5BC5DBB3-652D-4DCE-B14A-475AB85EEF6E/vcredist_x86.exe")
+            .checksum("372d9c1670343d3fb252209ba210d4dc4d67d358")
+            .name("vcredist_x86.exe")
             .get();
 
-        this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2010 Redistributable (x64)"));
-        this.run(setupFile64, "/q", null, false, true);
-    }
+        wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2010 Redistributable (x86)"));
 
-    var dlls = [
-        "atl100",
-        "msvcp100",
-        "msvcr100",
-        "vcomp100",
-    ];
-    this.overrideDLL()
-        .set("native, builtin", dlls)
-        .do();
+        this.wine.run(setupFile32, "/q", null, false, true);
 
-    return this;
-};
+        if (this.wine.architecture() == "amd64") {
+            const setupFile64 = new Resource()
+                .wizard(wizard)
+                .url(
+                    "http://download.microsoft.com/download/A/8/0/A80747C3-41BD-45DF-B505-E9710D2744E0/vcredist_x64.exe"
+                )
+                .checksum("027d0c2749ec5eb21b031f46aee14c905206f482")
+                .name("vcredist_x64.exe")
+                .get();
 
-/**
- * Verb to install vcrun2010
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class Vcrun2010Verb {
-    constructor() {
-        // do nothing
+            wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2010 Redistributable (x64)"));
+
+            this.wine.run(setupFile64, "/q", null, false, true);
+        }
+
+        this.wine
+            .overrideDLL()
+            .set("native, builtin", ["atl100", "msvcp100", "msvcr100", "vcomp100"])
+            .do();
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "vcrun2010", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "vcrun2010", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.vcrun2010();
+
+        new Vcrun2010(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = Vcrun2010;
 
@@ -101,7 +100,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 601c166089..d23c378cef 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun2012_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun2012_script.js.html @@ -29,68 +29,69 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
 
-include("engines.wine.verbs.luna");
+const Optional = Java.type("java.util.Optional");
+
 include("engines.wine.plugins.override_dll");
 
 /**
  * Verb to install vcrun2012
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.vcrun2012 = function () {
-    var setupFile32 = new Resource()
-        .wizard(this.wizard())
-        .url("http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe")
-        .checksum("96b377a27ac5445328cbaae210fc4f0aaa750d3f")
-        .name("vcredist_x86.exe")
-        .get();
-
-    this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2012 Redistributable (x86)"));
-    this.run(setupFile32, "/q", null, false, true);
-
-    if (this.architecture() == "amd64") {
-        var setupFile64 = new Resource()
-            .wizard(this.wizard())
-            .url("http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe")
-            .checksum("1a5d93dddbc431ab27b1da711cd3370891542797")
-            .name("vcredist_x64")
+class Vcrun2012 {
+    constructor(wine) {
+        this.wine = wine;
+    }
+
+    go() {
+        const wizard = this.wine.wizard();
+
+        const setupFile32 = new Resource()
+            .wizard(wizard)
+            .url(
+                "http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe"
+            )
+            .checksum("96b377a27ac5445328cbaae210fc4f0aaa750d3f")
+            .name("vcredist_x86.exe")
             .get();
 
-        this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2012 Redistributable (x64)"));
-        this.run(setupFile64, "/q", null, false, true);
-    }
+        wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2012 Redistributable (x86)"));
 
-    var dlls = [
-        "atl110",
-        "msvcp110",
-        "msvcr110",
-        "vcomp110"
-    ];
-    this.overrideDLL()
-        .set("native, builtin", dlls)
-        .do();
+        this.wine.run(setupFile32, "/q", null, false, true);
 
-    return this;
-};
+        if (this.wine.architecture() == "amd64") {
+            const setupFile64 = new Resource()
+                .wizard(wizard)
+                .url(
+                    "http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe"
+                )
+                .checksum("1a5d93dddbc431ab27b1da711cd3370891542797")
+                .name("vcredist_x64")
+                .get();
 
-/**
- * Verb to install vcrun2012
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class Vcrun2012Verb {
-    constructor() {
-        // do nothing
+            wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2012 Redistributable (x64)"));
+
+            this.wine.run(setupFile64, "/q", null, false, true);
+        }
+
+        this.wine
+            .overrideDLL()
+            .set("native, builtin", ["atl110", "msvcp110", "msvcr110", "vcomp110"])
+            .do();
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "vcrun2012", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "vcrun2012", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.vcrun2012();
+
+        new Vcrun2012(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = Vcrun2012;
 
@@ -101,7 +102,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 568590a70d..0ded242ca2 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun2013_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun2013_script.js.html @@ -29,62 +29,67 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
 
-include("engines.wine.verbs.luna");
+const Optional = Java.type("java.util.Optional");
+
 include("engines.wine.plugins.override_dll");
 
 /**
  * Verb to install vcrun2013
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.vcrun2013 = function () {
-    var setupFile32 = new Resource()
-        .wizard(this.wizard())
-        .url("http://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe")
-        .checksum("df7f0a73bfa077e483e51bfb97f5e2eceedfb6a3")
-        .name("vcredist_x86.exe")
-        .get();
-
-    this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2013 Redistributable (x86)"));
-    this.run(setupFile32, "/q", null, false, true);
-
-    if (this.architecture() == "amd64") {
-        var setupFile64 = new Resource()
-            .wizard(this.wizard())
-            .url("http://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe")
-            .checksum("8bf41ba9eef02d30635a10433817dbb6886da5a2")
-            .name("vcredist_x64.exe")
+class Vcrun2013 {
+    constructor(wine) {
+        this.wine = wine;
+    }
+
+    go() {
+        const wizard = this.wine.wizard();
+
+        const setupFile32 = new Resource()
+            .wizard(wizard)
+            .url("http://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe")
+            .checksum("df7f0a73bfa077e483e51bfb97f5e2eceedfb6a3")
+            .name("vcredist_x86.exe")
             .get();
 
-        this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2013 Redistributable (x64)"));
-        this.run(setupFile64, "/q", null, false, true);
-    }
+        wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2013 Redistributable (x86)"));
 
-    this.overrideDLL()
-        .set("native, builtin", ["atl120", "msvcp120", "msvcr120", "vcomp120"])
-        .do();
+        this.wine.run(setupFile32, "/q", null, false, true);
 
-    return this;
-};
+        if (this.wine.architecture() == "amd64") {
+            const setupFile64 = new Resource()
+                .wizard(wizard)
+                .url(
+                    "http://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe"
+                )
+                .checksum("8bf41ba9eef02d30635a10433817dbb6886da5a2")
+                .name("vcredist_x64.exe")
+                .get();
 
-/**
- * Verb to install vcrun2013
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class Vcrun2013Verb {
-    constructor() {
-        // do nothing
+            wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2013 Redistributable (x64)"));
+
+            this.wine.run(setupFile64, "/q", null, false, true);
+        }
+
+        this.wine
+            .overrideDLL()
+            .set("native, builtin", ["atl120", "msvcp120", "msvcr120", "vcomp120"])
+            .do();
     }
 
     install(container) {
-        var wine = new Wine();
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "vcrun2013", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "vcrun2013", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.vcrun2013();
+
+        new Vcrun2013(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = Vcrun2013;
 
@@ -95,7 +100,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 429cbcc543..d155c4a4d2 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun2015_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun2015_script.js.html @@ -29,78 +29,82 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
 
-include("engines.wine.verbs.luna");
+const Optional = Java.type("java.util.Optional");
+
 include("engines.wine.plugins.override_dll");
 
 /**
  * Verb to install vcrun2015
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.vcrun2015 = function () {
-    var setupFile32 = new Resource()
-        .wizard(this.wizard())
-        .url("https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe")
-        .checksum("bfb74e498c44d3a103ca3aa2831763fb417134d1")
-        .name("vc_redist.x86.exe")
-        .get();
-
-    this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2015 Redistributable (x86)"));
-    this.run(setupFile32, "/q", null, false, true);
-
-    if (this.architecture() == "amd64") {
-        var setupFile64 = new Resource()
-            .wizard(this.wizard())
-            .url("https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe")
-            .checksum("3155cb0f146b927fcc30647c1a904cd162548c8c")
-            .name("vc_redist.x64.exe")
-            .get();
-
-        this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2015 Redistributable (x64)"));
-        this.run(setupFile64, "/q", null, false, true);
+class Vcrun2015 {
+    constructor(wine) {
+        this.wine = wine;
     }
 
-    var dlls = [
-        "api-ms-win-crt-conio-l1-1-0",
-        "api-ms-win-crt-heap-l1-1-0",
-        "api-ms-win-crt-locale-l1-1-0",
-        "api-ms-win-crt-math-l1-1-0",
-        "api-ms-win-crt-runtime-l1-1-0",
-        "api-ms-win-crt-stdio-l1-1-0",
-        "api-ms-win-crt-time-l1-1-0",
-        "atl140",
-        "concrt140",
-        "msvcp140",
-        "msvcr140",
-        "ucrtbase",
-        "vcomp140",
-        "vcruntime140"
-    ];
-    this.overrideDLL()
-        .set("native, builtin", dlls)
-        .do();
-
-    return this;
-};
+    go() {
+        const wizard = this.wine.wizard();
 
-/**
- * Verb to install vcrun2015
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class Vcrun2015Verb {
-    constructor() {
-        // do nothing
+        const setupFile32 = new Resource()
+            .wizard(wizard)
+            .url("https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe")
+            .checksum("bfb74e498c44d3a103ca3aa2831763fb417134d1")
+            .name("vc_redist.x86.exe")
+            .get();
+
+        wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2015 Redistributable (x86)"));
+
+        this.wine.run(setupFile32, "/q", null, false, true);
+
+        if (this.wine.architecture() == "amd64") {
+            const setupFile64 = new Resource()
+                .wizard(wizard)
+                .url(
+                    "https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe"
+                )
+                .checksum("3155cb0f146b927fcc30647c1a904cd162548c8c")
+                .name("vc_redist.x64.exe")
+                .get();
+
+            wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2015 Redistributable (x64)"));
+
+            this.wine.run(setupFile64, "/q", null, false, true);
+        }
+
+        this.wine
+            .overrideDLL()
+            .set("native, builtin", [
+                "api-ms-win-crt-conio-l1-1-0",
+                "api-ms-win-crt-heap-l1-1-0",
+                "api-ms-win-crt-locale-l1-1-0",
+                "api-ms-win-crt-math-l1-1-0",
+                "api-ms-win-crt-runtime-l1-1-0",
+                "api-ms-win-crt-stdio-l1-1-0",
+                "api-ms-win-crt-time-l1-1-0",
+                "atl140",
+                "concrt140",
+                "msvcp140",
+                "msvcr140",
+                "ucrtbase",
+                "vcomp140",
+                "vcruntime140"
+            ])
+            .do();
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "vcrun2015", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "vcrun2015", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.vcrun2015();
+
+        new Vcrun2015(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = Vcrun2015;
 
@@ -111,7 +115,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 9783528ef4..395e0fcaaf 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun2017_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun2017_script.js.html @@ -29,78 +29,84 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
 
-include("engines.wine.verbs.luna");
+const Optional = Java.type("java.util.Optional");
+
 include("engines.wine.plugins.override_dll");
 
 /**
  * Verb to install vcrun2017
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.vcrun2017 = function () {
-    var setupFile32 = new Resource()
-        .wizard(this.wizard())
-        .url("https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe")
-        .checksum("370583c380c26064885289037380af7d8d5f4e81")
-        .name("vc_redist.x86.exe")
-        .get();
-
-    this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2017 Redistributable (x86)"));
-    this.run(setupFile32, "/q", null, false, true);
-
-    if (this.architecture() == "amd64") {
-        var setupFile64 = new Resource()
-            .wizard(this.wizard())
-            .url("https://download.visualstudio.microsoft.com/download/pr/11100230/15ccb3f02745c7b206ad10373cbca89b/VC_redist.x64.exe")
-            .checksum("bdb645ebaf3c91eceb1a143be6793ca57e6435c3")
-            .name("vc_redist.x64.exe")
-            .get();
-
-        this.wizard().wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2017 Redistributable (x64)"));
-        this.run(setupFile64, "/q", null, false, true);
+class Vcrun2017 {
+    constructor(wine) {
+        this.wine = wine;
     }
 
-    var dlls = [
-        "api-ms-win-crt-conio-l1-1-0",
-        "api-ms-win-crt-heap-l1-1-0",
-        "api-ms-win-crt-locale-l1-1-0",
-        "api-ms-win-crt-math-l1-1-0",
-        "api-ms-win-crt-runtime-l1-1-0",
-        "api-ms-win-crt-stdio-l1-1-0",
-        "api-ms-win-crt-time-l1-1-0",
-        "atl140",
-        "concrt140",
-        "msvcp140",
-        "msvcr140",
-        "ucrtbase",
-        "vcomp140",
-        "vcruntime140"
-    ];
-    this.overrideDLL()
-        .set("native, builtin", dlls)
-        .do();
-
-    return this;
-};
+    go() {
+        const wizard = this.wine.wizard();
 
-/**
- * Verb to install vcrun2017
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class Vcrun2017Verb {
-    constructor() {
-        // do nothing
+        const setupFile32 = new Resource()
+            .wizard(wizard)
+            .url(
+                "https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe"
+            )
+            .checksum("370583c380c26064885289037380af7d8d5f4e81")
+            .name("vc_redist.x86.exe")
+            .get();
+
+        wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2017 Redistributable (x86)"));
+
+        this.wine.run(setupFile32, "/q", null, false, true);
+
+        if (this.wine.architecture() == "amd64") {
+            const setupFile64 = new Resource()
+                .wizard(wizard)
+                .url(
+                    "https://download.visualstudio.microsoft.com/download/pr/11100230/15ccb3f02745c7b206ad10373cbca89b/VC_redist.x64.exe"
+                )
+                .checksum("bdb645ebaf3c91eceb1a143be6793ca57e6435c3")
+                .name("vc_redist.x64.exe")
+                .get();
+
+            wizard.wait(tr("Please wait while {0} is installed...", "Microsoft Visual C++ 2017 Redistributable (x64)"));
+
+            this.wine.run(setupFile64, "/q", null, false, true);
+        }
+
+        this.wine
+            .overrideDLL()
+            .set("native, builtin", [
+                "api-ms-win-crt-conio-l1-1-0",
+                "api-ms-win-crt-heap-l1-1-0",
+                "api-ms-win-crt-locale-l1-1-0",
+                "api-ms-win-crt-math-l1-1-0",
+                "api-ms-win-crt-runtime-l1-1-0",
+                "api-ms-win-crt-stdio-l1-1-0",
+                "api-ms-win-crt-time-l1-1-0",
+                "atl140",
+                "concrt140",
+                "msvcp140",
+                "msvcr140",
+                "ucrtbase",
+                "vcomp140",
+                "vcruntime140"
+            ])
+            .do();
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "vcrun2017", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "vcrun2017", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.vcrun2017();
+
+        new Vcrun2017(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = Vcrun2017;
 
@@ -111,7 +117,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Verbs_vcrun6sp6_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_vcrun6sp6_script.js.html index bb9bf259af..02bf40e41b 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vcrun6sp6_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vcrun6sp6_script.js.html @@ -28,59 +28,62 @@

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

const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
-const {CabExtract} = include("utils.functions.filesystem.extract");
-const {remove} = include("utils.functions.filesystem.files");
+const { CabExtract } = include("utils.functions.filesystem.extract");
+const { remove } = include("utils.functions.filesystem.files");
 
-include("engines.wine.verbs.luna");
+const Optional = Java.type("java.util.Optional");
 
 /**
  * Verb to install vcrun6sp6
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.vcrun6sp6 = function () {
-    var toBeCabExtracted = new Resource()
-        .wizard(this.wizard())
-        .url("https://download.microsoft.com/download/1/9/f/19fe4660-5792-4683-99e0-8d48c22eed74/Vs6sp6.exe")
-        .checksum("2292437a8967349261c810ae8b456592eeb76620")
-        .name("Vs6sp6.exe")
-        .get();
-
-    var setupFile = new CabExtract()
-        .archive(toBeCabExtracted)
-        .to(this.prefixDirectory() + "/drive_c/vcrun6sp6/")
-        .extract(["-L", "-F", "vcredist.exe"]);
-
-    remove(this.system32directory() + "comcat.dll");
-    remove(this.system32directory() + "msvcrt.dll");
-    remove(this.system32directory() + "oleaut32.dll");
-    remove(this.system32directory() + "olepro32.dll");
-    remove(this.system32directory() + "stdole2.dll");
-
-    this.wizard().wait(tr("Please wait while {0} is installed...", "vcrun6sp6"));
-    this.run(setupFile, "/q", null, false, true);
-
-    return this;
-};
+class Vcrun6SP6 {
+    constructor(wine) {
+        this.wine = wine;
+    }
 
-/**
- * Verb to install vcrun6sp6
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class Vcrun6SP6Verb {
-    constructor() {
-        // do nothing
+    go() {
+        const wizard = this.wine.wizard();
+        const prefixDirectory = this.wine.prefixDirectory();
+        const system32directory = this.wine.system32directory();
+
+        const toBeCabExtracted = new Resource()
+            .wizard(wizard)
+            .url("https://download.microsoft.com/download/1/9/f/19fe4660-5792-4683-99e0-8d48c22eed74/Vs6sp6.exe")
+            .checksum("2292437a8967349261c810ae8b456592eeb76620")
+            .name("Vs6sp6.exe")
+            .get();
+
+        const setupFile = new CabExtract()
+            .wizard(wizard)
+            .archive(toBeCabExtracted)
+            .to(`${prefixDirectory}/drive_c/vcrun6sp6/`)
+            .extract(["-L", "-F", "vcredist.exe"]);
+
+        remove(`${system32directory}/comcat.dll`);
+        remove(`${system32directory}/msvcrt.dll`);
+        remove(`${system32directory}/oleaut32.dll`);
+        remove(`${system32directory}/olepro32.dll`);
+        remove(`${system32directory}/stdole2.dll`);
+
+        wizard.wait(tr("Please wait while {0} is installed...", "vcrun6sp6"));
+
+        this.wine.run(setupFile, "/q", null, false, true);
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "vcrun6sp6", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "vcrun6sp6", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.vcrun6sp6();
+
+        new Vcrun6SP6(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = Vcrun6SP6;
 
@@ -91,7 +94,7 @@

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


diff --git a/docs/jsdoc/Engines_Wine_Verbs_vulkanSDK_script.js.html b/docs/jsdoc/Engines_Wine_Verbs_vulkanSDK_script.js.html index 0bb7cb97a1..f7ff6a10a5 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_vulkanSDK_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_vulkanSDK_script.js.html @@ -26,85 +26,93 @@

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

-

-const Wine = include("engines.wine.engine.object");
+            
const Wine = include("engines.wine.engine.object");
 const Resource = include("utils.functions.net.resource");
-const {touch, writeToFile} = include("utils.functions.filesystem.files");
+const { touch, writeToFile } = include("utils.functions.filesystem.files");
+
+const Optional = Java.type("java.util.Optional");
 
 include("engines.wine.plugins.regedit");
 
 /**
- * All the necessary things to run winevulkan (even inside wine mainline or newest wine-staging)
+ * Verb to install all the necessary things to run winevulkan (even inside wine mainline or newest wine-staging)
  * see: https://github.com/roderickc/wine-vulkan
- *
- * @returns {Wine} Wine object
  */
-Wine.prototype.vulkanSDK = function () {
-    print("NOTE: you need a graphic driver that supports Vulkan to run winevulkan");
-    print("NOTE: Vulkan works in wine from version 3.3 (if compiled with vulkan support)");
-
-    var sdkVersion = "1.1.97.0";
-
-    var setupFile = new Resource()
-        .wizard(this.wizard())
-        .url("https://sdk.lunarg.com/sdk/download/" + sdkVersion + "/windows/VulkanSDK-" + sdkVersion + "-Installer.exe")
-        .checksum("6bab01f98473bfd550544bbe9773a6d05872a61a")
-        .name("VulkanSDK-" + sdkVersion + "-Installer.exe")
-        .get();
-
-    this.run(setupFile, "/S");
-    this.wait();
-
-    var pathVulkanJSON = this.prefixDirectory() + "drive_c/windows/winevulkan.json";
-    touch(pathVulkanJSON);
-    var contentVulkanJSON = JSON.stringify({
-        "file_format_version": "1.0.0", "ICD": {
-            "library_path": "c:\\windows\\system32\\winevulkan.dll",
-            "api_version": sdkVersion
-        }
-    }, null, 4);
+class VulkanSDK {
+    constructor(wine) {
+        this.wine = wine;
+    }
+
+    go() {
+        const wizard = this.wine.wizard();
+        const prefixDirectory = this.wine.prefixDirectory();
+
+        print("NOTE: you need a graphic driver that supports Vulkan to run winevulkan");
+        print("NOTE: Vulkan works in wine from version 3.3 (if compiled with vulkan support)");
+
+        const sdkVersion = "1.1.97.0";
+
+        const setupFile = new Resource()
+            .wizard(wizard)
+            .url(`https://sdk.lunarg.com/sdk/download/${sdkVersion}/windows/VulkanSDK-${sdkVersion}-Installer.exe`)
+            .checksum("6bab01f98473bfd550544bbe9773a6d05872a61a")
+            .name(`VulkanSDK-${sdkVersion}-Installer.exe`)
+            .get();
+
+        this.wine.run(setupFile, "/S");
+        this.wine.wait();
+
+        const pathVulkanJSON = `${prefixDirectory}/drive_c/windows/winevulkan.json`;
 
-    writeToFile(pathVulkanJSON, contentVulkanJSON);
+        touch(pathVulkanJSON);
 
-    var regeditFileContent32 =
-        "REGEDIT4\n" +
-        "\n" +
-        "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Khronos\\Vulkan\\Drivers]\n" +
-        "\"C:\\\\Windows\\\\winevulkan.json\"=dword:00000000";
+        const contentVulkanJSON = JSON.stringify(
+            {
+                "file_format_version": "1.0.0",
+                "ICD": {
+                    "library_path": "c:\\windows\\system32\\winevulkan.dll",
+                    "api_version": sdkVersion
+                }
+            },
+            null,
+            4
+        );
 
-    this.regedit().patch(regeditFileContent32);
+        writeToFile(pathVulkanJSON, contentVulkanJSON);
 
-    if (this.architecture() == "amd64") {
-        var regeditFileContent64 =
+        const regeditFileContent32 =
             "REGEDIT4\n" +
             "\n" +
-            "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Khronos\\Vulkan\\Drivers\\]\n" +
-            "\"C:\\\\Windows\\\\winevulkan.json\"=dword:00000000";
+            "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Khronos\\Vulkan\\Drivers]\n" +
+            '"C:\\\\Windows\\\\winevulkan.json"=dword:00000000';
 
-        this.regedit().patch(regeditFileContent64);
-    }
+        this.wine.regedit().patch(regeditFileContent32);
 
-    return this;
-}
+        if (this.wine.architecture() == "amd64") {
+            const regeditFileContent64 =
+                "REGEDIT4\n" +
+                "\n" +
+                "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Khronos\\Vulkan\\Drivers\\]\n" +
+                '"C:\\\\Windows\\\\winevulkan.json"=dword:00000000';
 
-/**
- * Verb to install all the necessary things to run winevulkan (even inside wine mainline or newest wine-staging)
- */
-// eslint-disable-next-line no-unused-vars
-module.default = class VulkanSDKVerb {
-    constructor() {
-        // do nothing
+            this.wine.regedit().patch(regeditFileContent64);
+        }
     }
 
-    install(container) {
-        var wine = new Wine();
+    static install(container) {
+        const wine = new Wine();
+        const wizard = SetupWizard(InstallationType.VERBS, "vulkanSDK", Optional.empty());
+
         wine.prefix(container);
-        var wizard = SetupWizard(InstallationType.VERBS, "vulkanSDK", java.util.Optional.empty());
         wine.wizard(wizard);
-        wine.vulkanSDK();
+
+        new VulkanSDK(wine).go();
+
         wizard.close();
     }
 }
+
+module.default = VulkanSDK;
 
@@ -115,7 +123,7 @@

Source: Engines/Wine/Verbs/vulkanSDK/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 a0b5a4e183..31931f5da1 100644 --- a/docs/jsdoc/Engines_Wine_Verbs_xact_script.js.html +++ b/docs/jsdoc/Engines_Wine_Verbs_xact_script.js.html @@ -31,255 +31,291 @@

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

const { CabExtract } = include("utils.functions.filesystem.extract"); const { remove } = include("utils.functions.filesystem.files"); +const Optional = Java.type("java.util.Optional"); + include("engines.wine.plugins.regsvr32"); /** * Verb to install xact - * - * @returns {Wine} Wine object */ -Wine.prototype.xact = function () { - const extractFiles = (progressBar, filesToExtract, destination, pattern, directory) => { +class Xact { + constructor(wine) { + this.wine = wine; + } + + /** + * Extracts a given list of files + * + * @param {*} progressBar The progress bar + * @param {*} filesToExtract A list of files to extract + * @param {*} destination The destination directory + * @param {*} pattern The file pattern + * @param {*} directory The directory where the files are located + * @returns {void} + */ + extractFiles(progressBar, filesToExtract, destination, pattern, directory) { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + // extract the cab files filesToExtract.reduce((numberOfExtractedFiles, cabFile) => { print(tr("Extracting {0}...", cabFile)); - progressBar.setText(tr("Extracting {0}...", "Xact")); + progressBar.setText(tr("Extracting {0}...", cabFile)); progressBar.setProgressPercentage((numberOfExtractedFiles * 100) / filesToExtract.length); new CabExtract() - .archive(this.prefixDirectory() + "/drive_c/" + directory + cabFile) + .wizard(wizard) + .archive(`${prefixDirectory}/drive_c/${directory}/${cabFile}`) .to(destination) .extract(["-L", "-F", pattern]); return numberOfExtractedFiles + 1; }, 0); - }; + } - //This function executes regsvr32 on the dlls present in dllToRegsvr - const regsvr32Xact = (progressBar, dllToRegsvr) => { + /** + * Executes regsvr32 on the dlls present in dllToRegsvr + * + * @param {*} progressBar The progressbar + * @param {*} dllToRegsvr The dll files + * @returns {void} + */ + regsvr32Xact(progressBar, dllToRegsvr) { dllToRegsvr.reduce((numberOfExtractedFiles, dll) => { print(tr("Registering {0}...", dll)); progressBar.setText(tr("Registering {0}...", "Xact")); - progressBar.setProgressPercentage((numberOfExtractedFiles * 100) / filesToExtract.length); + progressBar.setProgressPercentage((numberOfExtractedFiles * 100) / dllToRegsvr.length); - this.regsvr32().install(dll); + this.wine.regsvr32().install(dll); return numberOfExtractedFiles + 1; }, 0); - }; - - const setupFile = new Resource() - .wizard(this.wizard()) - .url( - "http://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe" - ) - .checksum("f8f1217f666bf2f6863631a7d5e5fb3a8d1542df") - .name("directx_Jun2010_redist.exe") - .get(); - - const progressBar = this.wizard().progressBar(tr("Please wait...")); - progressBar.setText(tr("Extracting {0}...", "Xact")); - progressBar.setProgressPercentage(0); - - let filesToExtract = []; - - //---------------------------------------------------------Extract xactengine*.dll-------------------------------------------- - new CabExtract() - .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/xact_x86/") - .extract(["-L", "-F", "*_xact_*x86*"]); - - filesToExtract = [ - "apr2006_xact_x86.cab", - "apr2007_xact_x86.cab", - "aug2006_xact_x86.cab", - "aug2007_xact_x86.cab", - "aug2008_xact_x86.cab", - "aug2009_xact_x86.cab", - "dec2006_xact_x86.cab", - "fev2006_xact_x86.cab", - "fev2007_xact_x86.cab", - "fev2010_xact_x86.cab", - "jun2006_xact_x86.cab", - "jun2007_xact_x86.cab", - "jun2008_xact_x86.cab", - "jun2010_xact_x86.cab", - "mar2008_xact_x86.cab", - "mar2009_xact_x86.cab", - "nov2007_xact_x86.cab", - "nov2008_xact_x86.cab", - "oct2006_xact_x86.cab" - ]; - extractFiles(progressBar, filesToExtract, this.system32directory(), "xactengine*.dll", "xact_x86/"); - - //---------------------------------------------------------Extract X3Daudio*.dll---------------------------------------------- - new CabExtract() - .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/x3daudio_x86/") - .extract(["-L", "-F", "*_x3daudio_*x86*"]); - - filesToExtract = [ - "feb2010_x3daudio_x86.cab", - "jun2008_x3daudio_x86.cab", - "mar2008_x3daudio_x86.cab", - "mar2009_x3daudio_x86.cab", - "nov2007_x3daudio_x86.cab", - "nov2008_x3daudio_x86.cab" - ]; - extractFiles(progressBar, filesToExtract, this.system32directory(), "X3Daudio*.dll", "x3daudio_x86/"); - - //---------------------------------------------------------Extract XAudio*.dll and XAPOFX*.dll--------------------------------- - new CabExtract() - .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/xaudio_x86/") - .extract(["-L", "-F", "*_xaudio_*x86*"]); - - filesToExtract = [ - "aug2008_xaudio_x86.cab", - "aug2009_xaudio_x86.cab", - "feb2010_xaudio_x86.cab", - "jun2008_xaudio_x86.cab", - "jun2010_xaudio_x86.cab", - "mar2008_xaudio_x86.cab", - "mar2009_xaudio_x86.cab", - "nov2008_xaudio_x86.cab" - ]; - extractFiles(progressBar, filesToExtract, this.system32directory(), "XAudio*.dll", "xaudio_x86/"); - extractFiles(progressBar, filesToExtract, this.system32directory(), "XAPOFX*.dll", "xaudio_x86/"); - - const xactToRegserv = [ - "xactengine2_1.dll", - "xactengine2_2.dll", - "xactengine2_3.dll", - "xactengine2_4.dll", - "xactengine2_5.dll", - "xactengine2_7.dll", - "xactengine2_8.dll", - "xactengine2_9.dll", - "xactengine2_10.dll", - "xactengine3_0.dll", - "xactengine3_1.dll", - "xactengine3_2.dll", - "xactengine3_3.dll", - "xactengine3_4.dll", - "xactengine3_5.dll", - "xactengine3_7.dll" - ]; - - const xaudioToRegserv = [ - "xaudio2_0.dll", - "xaudio2_1.dll", - "xaudio2_2.dll", - "xaudio2_3.dll", - "xaudio2_4.dll", - "xaudio2_5.dll", - "xaudio2_6.dll", - "xaudio2_7.dll", - "xaudio2_9.dll" - ]; - - regsvr32Xact(progressBar, xactToRegserv); - regsvr32Xact(progressBar, xaudioToRegserv); - - remove(this.prefixDirectory() + "/drive_c/xact_x86/"); - remove(this.prefixDirectory() + "/drive_c/x3daudio_x86/"); - remove(this.prefixDirectory() + "/drive_c/xaudio_x86/"); - - if (this.architecture() == "amd64") { - //---------------------------------------------------------Extract xactengine*.dll (x64)-------------------------------------------- + } + + go() { + const wizard = this.wine.wizard(); + const prefixDirectory = this.wine.prefixDirectory(); + const system32directory = this.wine.system32directory(); + const architecture = this.wine.architecture(); + + const setupFile = new Resource() + .wizard(wizard) + .url( + "http://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe" + ) + .checksum("f8f1217f666bf2f6863631a7d5e5fb3a8d1542df") + .name("directx_Jun2010_redist.exe") + .get(); + + const progressBar = wizard.progressBar(tr("Please wait...")); + progressBar.setText(tr("Extracting {0}...", "Xact")); + progressBar.setProgressPercentage(0); + + let filesToExtract = []; + + //---------------------------------------------------------Extract xactengine*.dll-------------------------------------------- new CabExtract() + .wizard(wizard) .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/xact_x64/") - .extract(["-L", "-F", "*_xact_*x64*"]); + .to(`${prefixDirectory}/drive_c/xact_x86/`) + .extract(["-L", "-F", "*_xact_*x86*"]); filesToExtract = [ - "apr2006_xact_x64.cab", - "apr2007_xact_x64.cab", - "aug2006_xact_x64.cab", - "aug2007_xact_x64.cab", - "aug2008_xact_x64.cab", - "aug2009_xact_x64.cab", - "dec2006_xact_x64.cab", - "fev2006_xact_x64.cab", - "fev2007_xact_x64.cab", - "fev2010_xact_x64.cab", - "jun2006_xact_x64.cab", - "jun2007_xact_x64.cab", - "jun2008_xact_x64.cab", - "jun2010_xact_x64.cab", - "mar2008_xact_x64.cab", - "mar2009_xact_x64.cab", - "nov2007_xact_x64.cab", - "nov2008_xact_x64.cab", - "oct2006_xact_x64.cab" + "apr2006_xact_x86.cab", + "apr2007_xact_x86.cab", + "aug2006_xact_x86.cab", + "aug2007_xact_x86.cab", + "aug2008_xact_x86.cab", + "aug2009_xact_x86.cab", + "dec2006_xact_x86.cab", + "fev2006_xact_x86.cab", + "fev2007_xact_x86.cab", + "fev2010_xact_x86.cab", + "jun2006_xact_x86.cab", + "jun2007_xact_x86.cab", + "jun2008_xact_x86.cab", + "jun2010_xact_x86.cab", + "mar2008_xact_x86.cab", + "mar2009_xact_x86.cab", + "nov2007_xact_x86.cab", + "nov2008_xact_x86.cab", + "oct2006_xact_x86.cab" ]; - extractFiles(progressBar, filesToExtract, this.system64directory(), "xactengine*.dll", "xact_x64/"); - //---------------------------------------------------------Extract X3Daudio*.dll (x64)---------------------------------------------- + this.extractFiles(progressBar, filesToExtract, system32directory, "xactengine*.dll", "xact_x86"); + + //---------------------------------------------------------Extract X3Daudio*.dll---------------------------------------------- new CabExtract() + .wizard(wizard) .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/x3daudio_x64/") - .extract(["-L", "-F", "*_x3daudio_*x64*"]); + .to(`${prefixDirectory}/drive_c/x3daudio_x86/`) + .extract(["-L", "-F", "*_x3daudio_*x86*"]); filesToExtract = [ - "feb2010_x3daudio_x64.cab", - "jun2008_x3daudio_x64.cab", - "mar2008_x3daudio_x64.cab", - "mar2009_x3daudio_x64.cab", - "nov2007_x3daudio_x64.cab", - "nov2008_x3daudio_x64.cab" + "feb2010_x3daudio_x86.cab", + "jun2008_x3daudio_x86.cab", + "mar2008_x3daudio_x86.cab", + "mar2009_x3daudio_x86.cab", + "nov2007_x3daudio_x86.cab", + "nov2008_x3daudio_x86.cab" ]; - extractFiles(progressBar, filesToExtract, this.system64directory(), "X3Daudio*.dll", "x3daudio_x64/"); - //---------------------------------------------------------Extract XAudio*.dll and XAPOFX*.dll (x64)--------------------------------- + this.extractFiles(progressBar, filesToExtract, system32directory, "X3Daudio*.dll", "x3daudio_x86"); + + //---------------------------------------------------------Extract XAudio*.dll and XAPOFX*.dll--------------------------------- new CabExtract() + .wizard(wizard) .archive(setupFile) - .to(this.prefixDirectory() + "/drive_c/xaudio_x64/") - .extract(["-L", "-F", "*_xaudio_*64*"]); + .to(`${prefixDirectory}/drive_c/xaudio_x86/`) + .extract(["-L", "-F", "*_xaudio_*x86*"]); filesToExtract = [ - "aug2008_xaudio_x64.cab", - "aug2009_xaudio_x64.cab", - "feb2010_xaudio_x64.cab", - "jun2008_xaudio_x64.cab", - "jun2010_xaudio_x64.cab", - "mar2008_xaudio_x64.cab", - "mar2009_xaudio_x64.cab", - "nov2008_xaudio_x64.cab" + "aug2008_xaudio_x86.cab", + "aug2009_xaudio_x86.cab", + "feb2010_xaudio_x86.cab", + "jun2008_xaudio_x86.cab", + "jun2010_xaudio_x86.cab", + "mar2008_xaudio_x86.cab", + "mar2009_xaudio_x86.cab", + "nov2008_xaudio_x86.cab" ]; - extractFiles(progressBar, filesToExtract, this.system64directory(), "XAudio*.dll", "xaudio_x64/"); - extractFiles(progressBar, filesToExtract, this.system64directory(), "XAPOFX*.dll", "xaudio_x64/"); - remove(this.prefixDirectory() + "/drive_c/xact_x64/"); - remove(this.prefixDirectory() + "/drive_c/x3daudio_x64/"); - remove(this.prefixDirectory() + "/drive_c/xaudio_x64/"); - } + this.extractFiles(progressBar, filesToExtract, system32directory, "XAudio*.dll", "xaudio_x86"); + this.extractFiles(progressBar, filesToExtract, system32directory, "XAPOFX*.dll", "xaudio_x86"); + + const xactToRegserv = [ + "xactengine2_1.dll", + "xactengine2_2.dll", + "xactengine2_3.dll", + "xactengine2_4.dll", + "xactengine2_5.dll", + "xactengine2_7.dll", + "xactengine2_8.dll", + "xactengine2_9.dll", + "xactengine2_10.dll", + "xactengine3_0.dll", + "xactengine3_1.dll", + "xactengine3_2.dll", + "xactengine3_3.dll", + "xactengine3_4.dll", + "xactengine3_5.dll", + "xactengine3_7.dll" + ]; - return this; -}; + const xaudioToRegserv = [ + "xaudio2_0.dll", + "xaudio2_1.dll", + "xaudio2_2.dll", + "xaudio2_3.dll", + "xaudio2_4.dll", + "xaudio2_5.dll", + "xaudio2_6.dll", + "xaudio2_7.dll", + "xaudio2_9.dll" + ]; -/** - * Verb to install xact - */ -module.default = class XactVerb { - constructor() { - // do nothing + this.regsvr32Xact(progressBar, xactToRegserv); + this.regsvr32Xact(progressBar, xaudioToRegserv); + + remove(`${prefixDirectory}/drive_c/xact_x86/`); + remove(`${prefixDirectory}/drive_c/x3daudio_x86/`); + remove(`${prefixDirectory}/drive_c/xaudio_x86/`); + + if (architecture == "amd64") { + const system64directory = this.wine.system64directory(); + + //---------------------------------------------------------Extract xactengine*.dll (x64)-------------------------------------------- + new CabExtract() + .wizard(wizard) + .archive(setupFile) + .to(`${prefixDirectory}/drive_c/xact_x64/`) + .extract(["-L", "-F", "*_xact_*x64*"]); + + filesToExtract = [ + "apr2006_xact_x64.cab", + "apr2007_xact_x64.cab", + "aug2006_xact_x64.cab", + "aug2007_xact_x64.cab", + "aug2008_xact_x64.cab", + "aug2009_xact_x64.cab", + "dec2006_xact_x64.cab", + "fev2006_xact_x64.cab", + "fev2007_xact_x64.cab", + "fev2010_xact_x64.cab", + "jun2006_xact_x64.cab", + "jun2007_xact_x64.cab", + "jun2008_xact_x64.cab", + "jun2010_xact_x64.cab", + "mar2008_xact_x64.cab", + "mar2009_xact_x64.cab", + "nov2007_xact_x64.cab", + "nov2008_xact_x64.cab", + "oct2006_xact_x64.cab" + ]; + + this.extractFiles(progressBar, filesToExtract, system64directory, "xactengine*.dll", "xact_x64"); + + //---------------------------------------------------------Extract X3Daudio*.dll (x64)---------------------------------------------- + new CabExtract() + .wizard(wizard) + .archive(setupFile) + .to(`${prefixDirectory}/drive_c/x3daudio_x64/`) + .extract(["-L", "-F", "*_x3daudio_*x64*"]); + + filesToExtract = [ + "feb2010_x3daudio_x64.cab", + "jun2008_x3daudio_x64.cab", + "mar2008_x3daudio_x64.cab", + "mar2009_x3daudio_x64.cab", + "nov2007_x3daudio_x64.cab", + "nov2008_x3daudio_x64.cab" + ]; + + this.extractFiles(progressBar, filesToExtract, system64directory, "X3Daudio*.dll", "x3daudio_x64"); + + //---------------------------------------------------------Extract XAudio*.dll and XAPOFX*.dll (x64)--------------------------------- + new CabExtract() + .wizard(wizard) + .archive(setupFile) + .to(`${prefixDirectory}/drive_c/xaudio_x64/`) + .extract(["-L", "-F", "*_xaudio_*64*"]); + + filesToExtract = [ + "aug2008_xaudio_x64.cab", + "aug2009_xaudio_x64.cab", + "feb2010_xaudio_x64.cab", + "jun2008_xaudio_x64.cab", + "jun2010_xaudio_x64.cab", + "mar2008_xaudio_x64.cab", + "mar2009_xaudio_x64.cab", + "nov2008_xaudio_x64.cab" + ]; + + this.extractFiles(progressBar, filesToExtract, system64directory, "XAudio*.dll", "xaudio_x64"); + this.extractFiles(progressBar, filesToExtract, system64directory, "XAPOFX*.dll", "xaudio_x64"); + + remove(`${prefixDirectory}/drive_c/xact_x64/`); + remove(`${prefixDirectory}/drive_c/x3daudio_x64/`); + remove(`${prefixDirectory}/drive_c/xaudio_x64/`); + } } - install(container) { + static install(container) { const wine = new Wine(); + const wizard = SetupWizard(InstallationType.VERBS, "xact", Optional.empty()); wine.prefix(container); - - const wizard = SetupWizard(InstallationType.VERBS, "xact", java.util.Optional.empty()); wine.wizard(wizard); - wine.xact(); + + new Xact(wine).go(); wizard.close(); } -}; +} + +module.default = Xact;
@@ -290,7 +326,7 @@

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


diff --git a/docs/jsdoc/FAudio.html b/docs/jsdoc/FAudio.html new file mode 100644 index 0000000000..1a66646419 --- /dev/null +++ b/docs/jsdoc/FAudio.html @@ -0,0 +1,334 @@ + + + + + JSDoc: Class: FAudio + + + + + + + + + + +
+ +

Class: FAudio

+ + + + + + +
+ +
+ +

FAudio()

+ +
Verb to install FAudio +see: https://github.com/Kron4ek/FAudio-Builds
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new FAudio()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +

Methods

+ + + + + + + +

withVersion(faudioVersion) → {FAudio}

+ + + + + + +
+ Sets the used FAudio version +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
faudioVersion + + +string + + + + The version of FAudio to downlaod
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The FAudio object +
+ + + +
+
+ Type +
+
+ +FAudio + + +
+
+ + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/GDIPlus.html b/docs/jsdoc/GDIPlus.html new file mode 100644 index 0000000000..db5c9a8e97 --- /dev/null +++ b/docs/jsdoc/GDIPlus.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: GDIPlus + + + + + + + + + + +
+ +

Class: GDIPlus

+ + + + + + +
+ +
+ +

GDIPlus()

+ +
Verb to install gdiplus
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new GDIPlus()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/GDIPlusWinXP.html b/docs/jsdoc/GDIPlusWinXP.html new file mode 100644 index 0000000000..bcb63e646c --- /dev/null +++ b/docs/jsdoc/GDIPlusWinXP.html @@ -0,0 +1,192 @@ + + + + + JSDoc: Class: GDIPlusWinXP + + + + + + + + + + +
+ +

Class: GDIPlusWinXP

+ + + + + + +
+ +
+ +

GDIPlusWinXP() → {Wine}

+ +
Verb to install gdiplus (windows xp)
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new GDIPlusWinXP() → {Wine}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ Wine object +
+ + + +
+
+ Type +
+
+ +Wine + + +
+
+ + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Gallium9.html b/docs/jsdoc/Gallium9.html new file mode 100644 index 0000000000..910ceefbfb --- /dev/null +++ b/docs/jsdoc/Gallium9.html @@ -0,0 +1,334 @@ + + + + + JSDoc: Class: Gallium9 + + + + + + + + + + +
+ +

Class: Gallium9

+ + + + + + +
+ +
+ +

Gallium9()

+ +
Verb to install Gallium 9 Standalone +see: https://github.com/iXit/wine-nine-standalone/
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Gallium9()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +

Methods

+ + + + + + + +

withVersion(gallium9Version) → {Gallium9}

+ + + + + + +
+ Sets the used gallium9 version +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
gallium9Version + + +string + + + + The Gallium 9 Standalone version to download
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The Gallium9 object +
+ + + +
+
+ Type +
+
+ +Gallium9 + + +
+
+ + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Luna.html b/docs/jsdoc/Luna.html new file mode 100644 index 0000000000..217133ee6c --- /dev/null +++ b/docs/jsdoc/Luna.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: Luna + + + + + + + + + + +
+ +

Class: Luna

+ + + + + + +
+ +
+ +

Luna()

+ +
Verb to install luna
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Luna()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Mfc42.html b/docs/jsdoc/Mfc42.html new file mode 100644 index 0000000000..1cfee25560 --- /dev/null +++ b/docs/jsdoc/Mfc42.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: Mfc42 + + + + + + + + + + +
+ +

Class: Mfc42

+ + + + + + +
+ +
+ +

Mfc42()

+ +
Verb to install mfc42.dll and mfc42u.dll
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Mfc42()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Msls31.html b/docs/jsdoc/Msls31.html new file mode 100644 index 0000000000..da54a8ddcf --- /dev/null +++ b/docs/jsdoc/Msls31.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: Msls31 + + + + + + + + + + +
+ +

Class: Msls31

+ + + + + + +
+ +
+ +

Msls31()

+ +
Verb to install msls31.dll
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Msls31()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Mspatcha.html b/docs/jsdoc/Mspatcha.html new file mode 100644 index 0000000000..2cbe832f1a --- /dev/null +++ b/docs/jsdoc/Mspatcha.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: Mspatcha + + + + + + + + + + +
+ +

Class: Mspatcha

+ + + + + + +
+ +
+ +

Mspatcha()

+ +
Verb to install mspatcha
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Mspatcha()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Msxml3.html b/docs/jsdoc/Msxml3.html new file mode 100644 index 0000000000..9fd71f543b --- /dev/null +++ b/docs/jsdoc/Msxml3.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: Msxml3 + + + + + + + + + + +
+ +

Class: Msxml3

+ + + + + + +
+ +
+ +

Msxml3()

+ +
Verb to install msxml3
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Msxml3()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Msxml6.html b/docs/jsdoc/Msxml6.html new file mode 100644 index 0000000000..9f2e7dcb53 --- /dev/null +++ b/docs/jsdoc/Msxml6.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: Msxml6 + + + + + + + + + + +
+ +

Class: Msxml6

+ + + + + + +
+ +
+ +

Msxml6()

+ +
Verb to install msxml6
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Msxml6()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/PhysX.html b/docs/jsdoc/PhysX.html new file mode 100644 index 0000000000..b2841e8fa1 --- /dev/null +++ b/docs/jsdoc/PhysX.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: PhysX + + + + + + + + + + +
+ +

Class: PhysX

+ + + + + + +
+ +
+ +

PhysX()

+ +
Verb to install Nvidia PhysX
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new PhysX()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Quartz.html b/docs/jsdoc/Quartz.html new file mode 100644 index 0000000000..9640fca878 --- /dev/null +++ b/docs/jsdoc/Quartz.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: Quartz + + + + + + + + + + +
+ +

Class: Quartz

+ + + + + + +
+ +
+ +

Quartz()

+ +
Verb to install quartz
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Quartz()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/QuickTime76.html b/docs/jsdoc/QuickTime76.html new file mode 100644 index 0000000000..70f4552f85 --- /dev/null +++ b/docs/jsdoc/QuickTime76.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: QuickTime76 + + + + + + + + + + +
+ +

Class: QuickTime76

+ + + + + + +
+ +
+ +

QuickTime76()

+ +
Verb to install QuickTime 7.6
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new QuickTime76()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/RemoveMono.html b/docs/jsdoc/RemoveMono.html new file mode 100644 index 0000000000..a7039319d0 --- /dev/null +++ b/docs/jsdoc/RemoveMono.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: RemoveMono + + + + + + + + + + +
+ +

Class: RemoveMono

+ + + + + + +
+ +
+ +

RemoveMono()

+ +
Verb to remove mono
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new RemoveMono()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Sandbox.html b/docs/jsdoc/Sandbox.html new file mode 100644 index 0000000000..66f002e03d --- /dev/null +++ b/docs/jsdoc/Sandbox.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: Sandbox + + + + + + + + + + +
+ +

Class: Sandbox

+ + + + + + +
+ +
+ +

Sandbox()

+ +
Verb to install a sandbox
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Sandbox()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Secur32.html b/docs/jsdoc/Secur32.html new file mode 100644 index 0000000000..90dc8d5d73 --- /dev/null +++ b/docs/jsdoc/Secur32.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: Secur32 + + + + + + + + + + +
+ +

Class: Secur32

+ + + + + + +
+ +
+ +

Secur32()

+ +
Verb to install secur32
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Secur32()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Tahoma.html b/docs/jsdoc/Tahoma.html new file mode 100644 index 0000000000..3c125a79e8 --- /dev/null +++ b/docs/jsdoc/Tahoma.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: Tahoma + + + + + + + + + + +
+ +

Class: Tahoma

+ + + + + + +
+ +
+ +

Tahoma()

+ +
Verb to install the Tahoma font
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Tahoma()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Uplay.html b/docs/jsdoc/Uplay.html new file mode 100644 index 0000000000..6343534f37 --- /dev/null +++ b/docs/jsdoc/Uplay.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: Uplay + + + + + + + + + + +
+ +

Class: Uplay

+ + + + + + +
+ +
+ +

Uplay()

+ +
Verb to install Uplay
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Uplay()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Utils_Functions_Apps_PlainInstaller_script.js.html b/docs/jsdoc/Utils_Functions_Apps_PlainInstaller_script.js.html index 2f13181082..7966a15339 100644 --- a/docs/jsdoc/Utils_Functions_Apps_PlainInstaller_script.js.html +++ b/docs/jsdoc/Utils_Functions_Apps_PlainInstaller_script.js.html @@ -63,7 +63,7 @@

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


diff --git a/docs/jsdoc/Utils_Functions_Apps_Resources_script.js.html b/docs/jsdoc/Utils_Functions_Apps_Resources_script.js.html index c73da2b43f..e7efbeea1a 100644 --- a/docs/jsdoc/Utils_Functions_Apps_Resources_script.js.html +++ b/docs/jsdoc/Utils_Functions_Apps_Resources_script.js.html @@ -82,7 +82,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 d2ab03ecf5..02d77a2fcd 100644 --- a/docs/jsdoc/Utils_Functions_Filesystem_Extract_script.js.html +++ b/docs/jsdoc/Utils_Functions_Filesystem_Extract_script.js.html @@ -205,7 +205,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 6f31ca0010..87fe02cf24 100644 --- a/docs/jsdoc/Utils_Functions_Filesystem_Files_script.js.html +++ b/docs/jsdoc/Utils_Functions_Filesystem_Files_script.js.html @@ -260,7 +260,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 495f1a62fa..6a765d8708 100644 --- a/docs/jsdoc/Utils_Functions_Net_Download_script.js.html +++ b/docs/jsdoc/Utils_Functions_Net_Download_script.js.html @@ -221,7 +221,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 acc6cb704e..b1d7bfc144 100644 --- a/docs/jsdoc/Utils_Functions_Net_Resource_script.js.html +++ b/docs/jsdoc/Utils_Functions_Net_Resource_script.js.html @@ -157,7 +157,7 @@

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


diff --git a/docs/jsdoc/Utils_Functions_System_virtual desktop_script.js.html b/docs/jsdoc/Utils_Functions_System_virtual desktop_script.js.html index 1ce5300a91..4d55e8f332 100644 --- a/docs/jsdoc/Utils_Functions_System_virtual desktop_script.js.html +++ b/docs/jsdoc/Utils_Functions_System_virtual desktop_script.js.html @@ -57,7 +57,7 @@

Source: Utils/Functions/System/virtual desktop/script.js<
diff --git a/docs/jsdoc/VK9.html b/docs/jsdoc/VK9.html new file mode 100644 index 0000000000..981911febc --- /dev/null +++ b/docs/jsdoc/VK9.html @@ -0,0 +1,334 @@ + + + + + JSDoc: Class: VK9 + + + + + + + + + + +
+ +

Class: VK9

+ + + + + + +
+ +
+ +

VK9()

+ +
Verb to install VK9 +see: https://github.com/disks86/VK9
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new VK9()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +

Methods

+ + + + + + + +

withVersion(vk9Version) → {VK9}

+ + + + + + +
+ Sets the VK9 version to install +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
vk9Version + + +string + + + + The VK9 version to install
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The VK9 object +
+ + + +
+
+ Type +
+
+ +VK9 + + +
+
+ + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Vcrun2003.html b/docs/jsdoc/Vcrun2003.html new file mode 100644 index 0000000000..c591228a22 --- /dev/null +++ b/docs/jsdoc/Vcrun2003.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: Vcrun2003 + + + + + + + + + + +
+ +

Class: Vcrun2003

+ + + + + + +
+ +
+ +

Vcrun2003()

+ +
Verb to install vcrun2003
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Vcrun2003()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Vcrun2005.html b/docs/jsdoc/Vcrun2005.html new file mode 100644 index 0000000000..ab8d06822f --- /dev/null +++ b/docs/jsdoc/Vcrun2005.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: Vcrun2005 + + + + + + + + + + +
+ +

Class: Vcrun2005

+ + + + + + +
+ +
+ +

Vcrun2005()

+ +
Verb to install vcrun2005
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Vcrun2005()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Vcrun2008.html b/docs/jsdoc/Vcrun2008.html new file mode 100644 index 0000000000..fc087554c2 --- /dev/null +++ b/docs/jsdoc/Vcrun2008.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: Vcrun2008 + + + + + + + + + + +
+ +

Class: Vcrun2008

+ + + + + + +
+ +
+ +

Vcrun2008()

+ +
Verb to install vcrun2008
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Vcrun2008()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Vcrun2010.html b/docs/jsdoc/Vcrun2010.html new file mode 100644 index 0000000000..4ee0dec9b1 --- /dev/null +++ b/docs/jsdoc/Vcrun2010.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: Vcrun2010 + + + + + + + + + + +
+ +

Class: Vcrun2010

+ + + + + + +
+ +
+ +

Vcrun2010()

+ +
Verb to install vcrun2010
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Vcrun2010()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Vcrun2012.html b/docs/jsdoc/Vcrun2012.html new file mode 100644 index 0000000000..2388861b47 --- /dev/null +++ b/docs/jsdoc/Vcrun2012.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: Vcrun2012 + + + + + + + + + + +
+ +

Class: Vcrun2012

+ + + + + + +
+ +
+ +

Vcrun2012()

+ +
Verb to install vcrun2012
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Vcrun2012()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Vcrun2013.html b/docs/jsdoc/Vcrun2013.html new file mode 100644 index 0000000000..d2cdebcbeb --- /dev/null +++ b/docs/jsdoc/Vcrun2013.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: Vcrun2013 + + + + + + + + + + +
+ +

Class: Vcrun2013

+ + + + + + +
+ +
+ +

Vcrun2013()

+ +
Verb to install vcrun2013
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Vcrun2013()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Vcrun2015.html b/docs/jsdoc/Vcrun2015.html new file mode 100644 index 0000000000..d5e7b04e71 --- /dev/null +++ b/docs/jsdoc/Vcrun2015.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: Vcrun2015 + + + + + + + + + + +
+ +

Class: Vcrun2015

+ + + + + + +
+ +
+ +

Vcrun2015()

+ +
Verb to install vcrun2015
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Vcrun2015()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Vcrun2017.html b/docs/jsdoc/Vcrun2017.html new file mode 100644 index 0000000000..71d9bad79e --- /dev/null +++ b/docs/jsdoc/Vcrun2017.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: Vcrun2017 + + + + + + + + + + +
+ +

Class: Vcrun2017

+ + + + + + +
+ +
+ +

Vcrun2017()

+ +
Verb to install vcrun2017
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Vcrun2017()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Vcrun6SP6.html b/docs/jsdoc/Vcrun6SP6.html new file mode 100644 index 0000000000..ab02c08011 --- /dev/null +++ b/docs/jsdoc/Vcrun6SP6.html @@ -0,0 +1,170 @@ + + + + + JSDoc: Class: Vcrun6SP6 + + + + + + + + + + +
+ +

Class: Vcrun6SP6

+ + + + + + +
+ +
+ +

Vcrun6SP6()

+ +
Verb to install vcrun6sp6
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Vcrun6SP6()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/VulkanSDK.html b/docs/jsdoc/VulkanSDK.html new file mode 100644 index 0000000000..23c2d62c01 --- /dev/null +++ b/docs/jsdoc/VulkanSDK.html @@ -0,0 +1,171 @@ + + + + + JSDoc: Class: VulkanSDK + + + + + + + + + + +
+ +

Class: VulkanSDK

+ + + + + + +
+ +
+ +

VulkanSDK()

+ +
Verb to install all the necessary things to run winevulkan (even inside wine mainline or newest wine-staging) +see: https://github.com/roderickc/wine-vulkan
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new VulkanSDK()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/WindowsXPSP3.html b/docs/jsdoc/WindowsXPSP3.html new file mode 100644 index 0000000000..24327f0e24 --- /dev/null +++ b/docs/jsdoc/WindowsXPSP3.html @@ -0,0 +1,333 @@ + + + + + JSDoc: Class: WindowsXPSP3 + + + + + + + + + + +
+ +

Class: WindowsXPSP3

+ + + + + + +
+ +
+ +

WindowsXPSP3()

+ +
Verb to install Windows XP Service Pack 3
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new WindowsXPSP3()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +

Methods

+ + + + + + + +

withFileToExtract(fileToExtract) → {WindowsXPSP3}

+ + + + + + +
+ Sets the path to the file which shall be extracted +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
fileToExtract + + +string + + + + The path to the file which shall be extracted
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The WindowsXPSP3 object +
+ + + +
+
+ Type +
+
+ +WindowsXPSP3 + + +
+
+ + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/Xact.html b/docs/jsdoc/Xact.html new file mode 100644 index 0000000000..77e658579d --- /dev/null +++ b/docs/jsdoc/Xact.html @@ -0,0 +1,599 @@ + + + + + JSDoc: Class: Xact + + + + + + + + + + +
+ +

Class: Xact

+ + + + + + +
+ +
+ +

Xact()

+ +
Verb to install xact
+ + +
+ +
+
+ + + + +

Constructor

+ + + +

new Xact()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +

Methods

+ + + + + + + +

extractFiles(progressBar, filesToExtract, destination, pattern, directory) → {void}

+ + + + + + +
+ Extracts a given list of files +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
progressBar + + +* + + + + The progress bar
filesToExtract + + +* + + + + A list of files to extract
destination + + +* + + + + The destination directory
pattern + + +* + + + + The file pattern
directory + + +* + + + + The directory where the files are located
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +void + + +
+
+ + + + + + + + + + + + + +

regsvr32Xact(progressBar, dllToRegsvr) → {void}

+ + + + + + +
+ Executes regsvr32 on the dlls present in dllToRegsvr +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
progressBar + + +* + + + + The progressbar
dllToRegsvr + + +* + + + + The dll files
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +void + + +
+
+ + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/jsdoc/global.html b/docs/jsdoc/global.html index ca94392fa5..b3dad89f96 100644 --- a/docs/jsdoc/global.html +++ b/docs/jsdoc/global.html @@ -2575,7 +2575,7 @@

Returns:

diff --git a/docs/jsdoc/index.html b/docs/jsdoc/index.html index 0b68011f9f..c72bf3c979 100644 --- a/docs/jsdoc/index.html +++ b/docs/jsdoc/index.html @@ -50,7 +50,7 @@


diff --git a/docs/jsdoc/module.CabExtract.html b/docs/jsdoc/module.CabExtract.html index 5042deb470..15f25f33f0 100644 --- a/docs/jsdoc/module.CabExtract.html +++ b/docs/jsdoc/module.CabExtract.html @@ -950,7 +950,7 @@
Returns:

diff --git a/docs/jsdoc/module.Checksum.html b/docs/jsdoc/module.Checksum.html index 9f39508f1b..e356f7eb75 100644 --- a/docs/jsdoc/module.Checksum.html +++ b/docs/jsdoc/module.Checksum.html @@ -746,7 +746,7 @@
Returns:

diff --git a/docs/jsdoc/module.Extractor.html b/docs/jsdoc/module.Extractor.html index aef2c01c90..517b2f7e1f 100644 --- a/docs/jsdoc/module.Extractor.html +++ b/docs/jsdoc/module.Extractor.html @@ -901,7 +901,7 @@
Returns:

diff --git a/docs/jsdoc/module.default.html b/docs/jsdoc/module.default.html index 69987d8400..e60e052b85 100644 --- a/docs/jsdoc/module.default.html +++ b/docs/jsdoc/module.default.html @@ -30,7 +30,7 @@

Class: default

default()

-
Verb to install D3DX10
+
Setting to enable/disable GLSL
@@ -93,7 +93,7 @@

new defaultSource:
@@ -1905,7 +1905,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -1913,7 +1913,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -1965,7 +1965,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -2006,7 +2006,7 @@
Parameters:
Source:
@@ -2035,7 +2035,7 @@
Returns:
- The Resource object + The Downloader object
@@ -2046,7 +2046,7 @@
Returns:
-Resource +Downloader
@@ -2064,7 +2064,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -2072,7 +2072,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -2124,7 +2124,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -2165,7 +2165,7 @@
Parameters:
Source:
@@ -2194,7 +2194,7 @@
Returns:
- The Downloader object + The Resource object
@@ -2205,7 +2205,7 @@
Returns:
-Downloader +Resource
@@ -2223,7 +2223,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -2231,7 +2231,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -2275,7 +2275,7 @@

createSource:
@@ -2303,6 +2303,10 @@

createReturns:

+
+ The Wine object +
+
@@ -2311,7 +2315,7 @@
Returns:
-void +Wine
@@ -2329,7 +2333,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -2337,7 +2341,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -2381,7 +2385,7 @@

createSource:
@@ -2409,10 +2413,6 @@

createReturns:

-
- The Wine object -
-
@@ -2421,7 +2421,7 @@
Returns:
-Wine +void
@@ -2916,7 +2916,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadFinished(wine) → {boolean}

@@ -2924,7 +2924,8 @@

environmen
- set environment + Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first
@@ -2960,13 +2961,13 @@

Parameters:
- environment + wine -string +Wine @@ -2976,7 +2977,7 @@
Parameters:
- variables + The wine engine object @@ -3017,7 +3018,7 @@
Parameters:
Source:
@@ -3046,7 +3047,7 @@
Returns:
- QuickScript object + True if the download has finished, false otherwise
@@ -3057,7 +3058,7 @@
Returns:
-QuickScript +boolean
@@ -3075,7 +3076,7 @@
Returns:
-

environment(environment) → {WineShortcut}

+

downloadStarted(wine) → {boolean}

@@ -3083,7 +3084,7 @@

environmen
- Sets the shortcut environment variables + Checks whether the software download has started
@@ -3119,13 +3120,13 @@

Parameters:
- environment + wine -string +Wine @@ -3135,7 +3136,7 @@
Parameters:
- The environment variables + The wine engine object @@ -3176,7 +3177,7 @@
Parameters:
Source:
@@ -3205,7 +3206,7 @@
Returns:
- The WineShortcut object + True if the download has started, false otherwise
@@ -3216,7 +3217,7 @@
Returns:
-WineShortcut +boolean
@@ -3234,7 +3235,7 @@
Returns:
-

executable(executable, args)

+

environment(environment) → {WineShortcut}

@@ -3242,7 +3243,7 @@

executable<
- set executable + Sets the shortcut environment variables
@@ -3278,28 +3279,15 @@

Parameters:
- executable + environment - - - - - - - executable without path (e.g. "Steam.exe") - - - + +string - - - args - - @@ -3307,7 +3295,7 @@
Parameters:
- use array (e.g. ["-applaunch", 409160]) + The environment variables @@ -3348,7 +3336,7 @@
Parameters:
Source:
@@ -3373,6 +3361,28 @@
Parameters:
+
Returns:
+ + +
+ The WineShortcut object +
+ + + +
+
+ Type +
+
+ +WineShortcut + + +
+
+ + @@ -3384,13 +3394,16 @@
Parameters:
-

fontDirectory() → {string}

+

environment(environment) → {QuickScript}

+
+ set environment +
@@ -3400,6 +3413,56 @@

fontDire +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + @@ -3432,7 +3495,7 @@

fontDire
Source:
@@ -3461,7 +3524,7 @@

Returns:
- font directory + QuickScript object
@@ -3472,7 +3535,7 @@
Returns:
-string +QuickScript
@@ -3490,7 +3553,7 @@
Returns:
-

get(resourceName) → {Resource}

+

executable(executable, args)

@@ -3498,7 +3561,7 @@

get - Returns the searched resource + set executable @@ -3534,15 +3597,28 @@
Parameters:
- resourceName + executable - -string + + + + + + + executable without path (e.g. "Steam.exe") + + + + + args + + + @@ -3550,7 +3626,7 @@
Parameters:
- The name of the resource + use array (e.g. ["-applaunch", 409160]) @@ -3591,7 +3667,7 @@
Parameters:
Source:
@@ -3616,28 +3692,6 @@
Parameters:
-
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - @@ -3649,17 +3703,13 @@
Returns:
-

get() → {string}

+

fontDirectory() → {string}

-
- Fetches the Resource and returns the path leading to the downloaded resource -
- @@ -3701,7 +3751,7 @@

getSource:
@@ -3730,7 +3780,7 @@
Returns:
- The path leading to the downloaded resource + font directory
@@ -3759,7 +3809,7 @@
Returns:
-

get() → {String}

+

get() → {string}

@@ -3767,7 +3817,7 @@

get - Gets the content of the downloaded file + Fetches the Resource and returns the path leading to the downloaded resource @@ -3811,7 +3861,7 @@

getSource:
@@ -3840,7 +3890,7 @@
Returns:
- The content of downloaded file + The path leading to the downloaded resource
@@ -3851,7 +3901,7 @@
Returns:
-String +string
@@ -3869,7 +3919,7 @@
Returns:
-

getContainer() → {string}

+

get() → {String}

@@ -3877,7 +3927,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Gets the content of the downloaded file
@@ -3921,7 +3971,7 @@

getContai
Source:
@@ -3950,7 +4000,7 @@

Returns:
- The container name + The content of downloaded file
@@ -3961,7 +4011,7 @@
Returns:
-string +String
@@ -3979,7 +4029,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

get(resourceName) → {Resource}

@@ -3987,7 +4037,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Returns the searched resource
@@ -4023,7 +4073,7 @@

Parameters:
- setupFileName + resourceName @@ -4039,7 +4089,7 @@
Parameters:
- The setup file name + The name of the resource @@ -4080,7 +4130,7 @@
Parameters:
Source:
@@ -4109,7 +4159,7 @@
Returns:
- This + The found resource
@@ -4120,7 +4170,7 @@
Returns:
-GogScript +Resource
@@ -4138,7 +4188,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

getContainer() → {string}

@@ -4146,7 +4196,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Returns the name of the container belonging to a shortcut
@@ -4157,55 +4207,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -4239,7 +4240,7 @@
Parameters:
Source:
@@ -4268,7 +4269,7 @@
Returns:
- This + The container name
@@ -4279,7 +4280,7 @@
Returns:
-GogScript +string
@@ -4297,7 +4298,7 @@
Returns:
-

headers(headers) → {Downloader}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -4305,7 +4306,7 @@

headers - Sets the http headers + Sets one setup file name so that the script can fetch it from gog.com @@ -4341,13 +4342,13 @@
Parameters:
- headers + setupFileName -Object +string @@ -4357,7 +4358,7 @@
Parameters:
- The http headers + The setup file name @@ -4398,7 +4399,7 @@
Parameters:
Source:
@@ -4427,7 +4428,7 @@
Returns:
- The Downloader object + This
@@ -4438,7 +4439,7 @@
Returns:
-Downloader +GogScript
@@ -4456,7 +4457,7 @@
Returns:
-

json() → {any}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -4464,7 +4465,7 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Sets the setup file(s) name so that the script can fetch it from gog.com @@ -4475,6 +4476,55 @@

json + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileNames + + + + + +Array.<string> + + + + + + + + + + The setup file name(s) + + + + + + + @@ -4508,7 +4558,7 @@

jsonSource:
@@ -4537,7 +4587,7 @@
Returns:
- The json value + This
@@ -4548,7 +4598,7 @@
Returns:
-any +GogScript
@@ -4566,7 +4616,7 @@
Returns:
-

kill() → {Wine}

+

headers(headers) → {Downloader}

@@ -4574,7 +4624,7 @@

kill - kill wine server + Sets the http headers @@ -4585,6 +4635,55 @@

kill + + + + Name + + + Type + + + + + + Description + + + + + + + + + headers + + + + + +Object + + + + + + + + + + The http headers + + + + + + + @@ -4618,7 +4717,7 @@

killSource:
@@ -4646,6 +4745,10 @@

kill + The Downloader object + +
@@ -4654,7 +4757,7 @@
Returns:
-Wine +Downloader
@@ -4672,7 +4775,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

json() → {any}

@@ -4680,8 +4783,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Gets the content of the downloaded file and returns it as a JSON value
@@ -4692,60 +4794,11 @@

loginToGog< -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
+
@@ -4774,7 +4827,7 @@
Parameters:
Source:
@@ -4803,7 +4856,7 @@
Returns:
- This + The json value
@@ -4814,7 +4867,7 @@
Returns:
-GogScript +any
@@ -4832,7 +4885,7 @@
Returns:
-

message(message) → {Downloader}

+

kill() → {Wine}

@@ -4840,7 +4893,7 @@

message - Sets the download message text + kill wine server @@ -4851,55 +4904,6 @@

messageParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - @@ -4933,7 +4937,7 @@
Parameters:
Source:
@@ -4961,10 +4965,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -4973,7 +4973,7 @@
Returns:
-Downloader +Wine
@@ -4991,156 +4991,7 @@
Returns:
-

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

+

loginToGog(setupWizard) → {GogScript}

@@ -5148,7 +4999,8 @@

miniature - Sets the miniature for the shortcut + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -5184,16 +5036,13 @@
Parameters:
- miniature + setupWizard -Array.<string> -| - -URI +SetupWizard @@ -5203,7 +5052,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The setupWizard to use @@ -5244,7 +5093,7 @@
Parameters:
Source:
@@ -5273,7 +5122,7 @@
Returns:
- The WineShortcut object + This
@@ -5284,7 +5133,7 @@
Returns:
-WineShortcut +GogScript
@@ -5302,7 +5151,7 @@
Returns:
-

name(name) → {WineShortcut}

+

message(message) → {Downloader}

@@ -5310,7 +5159,7 @@

name - Sets the shortcut name + Sets the download message text @@ -5346,7 +5195,7 @@
Parameters:
- name + message @@ -5362,7 +5211,7 @@
Parameters:
- The shortcut name + The download message @@ -5403,7 +5252,7 @@
Parameters:
Source:
@@ -5432,7 +5281,7 @@
Returns:
- The WineShortcut object + The Downloader object
@@ -5443,7 +5292,7 @@
Returns:
-WineShortcut +Downloader
@@ -5461,7 +5310,7 @@
Returns:
-

name(name) → {Resource}

+

miniature(miniature) → {WineShortcut}

@@ -5469,7 +5318,7 @@

name - Sets the resource name + Sets the miniature for the shortcut @@ -5505,13 +5354,16 @@
Parameters:
- name + miniature -string +Array.<string> +| + +URI @@ -5521,7 +5373,7 @@
Parameters:
- The name of the resource + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -5562,7 +5414,7 @@
Parameters:
Source:
@@ -5591,7 +5443,7 @@
Returns:
- The Resource object + The WineShortcut object
@@ -5602,7 +5454,7 @@
Returns:
-Resource +WineShortcut
@@ -5620,7 +5472,7 @@
Returns:
-

of(shortcut) → {void}

+

miniature(miniatureopt)

@@ -5628,7 +5480,7 @@

of - Sets shortcut + get/set miniature (for the installation and the shortcut) @@ -5652,6 +5504,8 @@
Parameters:
Type + Attributes + @@ -5664,23 +5518,33 @@
Parameters:
- shortcut + miniature -string +URI + + + <optional>
+ + + + + + + - shortcut + path to the miniature file @@ -5721,7 +5585,7 @@
Parameters:
Source:
@@ -5746,24 +5610,6 @@
Parameters:
-
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - @@ -5775,7 +5621,7 @@
Returns:
-

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

+

name(name) → {Resource}

@@ -5783,7 +5629,7 @@

- Specifies if the download shall be executed only if a newer version is available + Sets the resource name
@@ -5819,13 +5665,13 @@

Parameters:
- onlyIfUpdateAvailable + name -boolean +string @@ -5835,7 +5681,7 @@
Parameters:
- true the download shall be executed only if a newer version is available + The name of the resource @@ -5876,7 +5722,7 @@
Parameters:
Source:
@@ -5905,7 +5751,7 @@
Returns:
- The Downloader object + The Resource object
@@ -5916,7 +5762,7 @@
Returns:
-Downloader +Resource
@@ -5934,7 +5780,7 @@
Returns:
-

prefix(prefix) → {WineShortcut}

+

name(name) → {WineShortcut}

@@ -5942,7 +5788,7 @@

prefix - Sets the shortcut prefix + Sets the shortcut name @@ -5978,7 +5824,7 @@
Parameters:
- prefix + name @@ -5994,7 +5840,7 @@
Parameters:
- The shortcut prefix + The shortcut name @@ -6035,7 +5881,7 @@
Parameters:
Source:
@@ -6093,13 +5939,17 @@
Returns:
-

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

+

of(shortcut) → {void}

+
+ Sets shortcut +
+ @@ -6121,8 +5971,6 @@
Parameters:
Type - Attributes - @@ -6135,73 +5983,7 @@
Parameters:
- prefix - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - distribution - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - - - - - - - - architecture + shortcut @@ -6214,53 +5996,10 @@
Parameters:
- - - <optional>
- - - - - - - - - - - - - - - version - - - - - -string - - - - - - - - - <optional>
- - - - - - - - - - - + shortcut @@ -6301,7 +6040,7 @@
Parameters:
Source:
@@ -6337,10 +6076,7 @@
Returns:
-string -| - -Wine +void
@@ -6358,7 +6094,7 @@
Returns:
-

prefixDirectory() → {string}

+

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

@@ -6366,7 +6102,7 @@

prefix
- returns prefix directory + Specifies if the download shall be executed only if a newer version is available
@@ -6377,11 +6113,60 @@

prefix +

Parameters:
+ + + + + + + + + -
+ + +
+ + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
onlyIfUpdateAvailable + + +boolean + + + + true the download shall be executed only if a newer version is available
+ + + + + + +
@@ -6410,7 +6195,7 @@

prefix
Source:
@@ -6438,6 +6223,10 @@

prefix

Returns:
+
+ The Downloader object +
+
@@ -6446,7 +6235,7 @@
Returns:
-string +Downloader
@@ -6464,19 +6253,72 @@
Returns:
-

programFiles() → {string}

+

prefix(prefix) → {WineShortcut}

+
+ Sets the shortcut prefix +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
prefix + + +string + + The shortcut prefix
@@ -6512,7 +6354,7 @@

programFi
Source:
@@ -6541,7 +6383,7 @@

Returns:
- name of "Program Files" + The WineShortcut object
@@ -6552,7 +6394,7 @@
Returns:
-string +WineShortcut
@@ -6570,7 +6412,7 @@
Returns:
-

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

+

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

@@ -6602,8 +6444,6 @@
Parameters:
- Default - Description @@ -6614,7 +6454,7 @@
Parameters:
- executable + prefix @@ -6624,41 +6464,6 @@
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - args - - - - - -array - - - @@ -6674,12 +6479,6 @@
Parameters:
- - - [] - - - @@ -6688,7 +6487,7 @@
Parameters:
- workingDirectory + distribution @@ -6713,12 +6512,6 @@
Parameters:
- - - working container - - - @@ -6727,52 +6520,13 @@
Parameters:
- captureOutput - - - - - -boolean - - - - - - - - - <optional>
- - - - - - - - - - - - false - - - - - - - - - - - - wait + architecture -boolean +string @@ -6791,12 +6545,6 @@
Parameters:
- - - false - - - @@ -6805,13 +6553,13 @@
Parameters:
- userData + version -map +string @@ -6830,12 +6578,6 @@
Parameters:
- - - empty - - - @@ -6878,7 +6620,7 @@
Parameters:
Source:
@@ -6906,10 +6648,6 @@
Parameters:
Returns:
-
- output -
-
@@ -6918,7 +6656,10 @@
Returns:
-String +string +| + +Wine
@@ -6936,7 +6677,7 @@
Returns:
-

run(userArguments) → {void}

+

prefixDirectory() → {string}

@@ -6944,7 +6685,7 @@

run - Runs a shortcut with the given user arguments + returns prefix directory @@ -6955,53 +6696,106 @@

run + - - - - - - + - + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + + + + + + + + + + + + + + + + + +
Returns:
+ +
+
+ Type +
+
+string -
- - - + + + - - - - - + - + - - + +

programFiles() → {string}

+ - -
NameTypeDescription
userArguments - - -array - - The user arguments
+ + + + + + + + + @@ -7037,7 +6831,7 @@
Parameters:
Source:
@@ -7065,6 +6859,10 @@
Parameters:
Returns:
+
+ name of "Program Files" +
+
@@ -7073,7 +6871,7 @@
Returns:
-void +string
@@ -7091,7 +6889,7 @@
Returns:
-

runInsidePrefix(executable, argsopt, waitopt)

+

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

@@ -7209,13 +7007,13 @@
Parameters:
- wait + workingDirectory -boolean +string @@ -7236,7 +7034,7 @@
Parameters:
- false + working container @@ -7245,140 +7043,120 @@
Parameters:
- - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - + + + captureOutput + + + + +boolean + + + + + + <optional>
+ + - + + - + + + + false + + + - - - + + + + + wait + - -
- Sets the executable which shall be used -
- - - - - - - + + + +boolean -
Parameters:
- + + - - - - - - + + + - + + + - + + + - - - + + - - + + - + + + + + @@ -7419,7 +7197,7 @@
Parameters:
Source:
@@ -7448,7 +7226,7 @@
Returns:
- The WineShortcut object + output
@@ -7459,7 +7237,7 @@
Returns:
-WineShortcut +String
@@ -7477,7 +7255,7 @@
Returns:
-

stop() → {void}

+

run(userArguments) → {void}

@@ -7485,7 +7263,7 @@

stop - Stops the running shortcut + Runs a shortcut with the given user arguments @@ -7496,6 +7274,55 @@

stop +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Name + + <optional>
+ -
Type + + false + + Description
searchuserData -string +map + + <optional>
+ + + + +
The executable name + + empty + +
NameTypeDescription
userArguments + + +array + + + + The user arguments
+ + @@ -7529,7 +7356,7 @@

stopSource:
@@ -7583,7 +7410,7 @@
Returns:
-

system32directory() → {string}

+

runInsidePrefix(executable, argsopt, waitopt)

@@ -7598,110 +7425,147 @@

syst - - - - -
- - - - - - - - - - - - - - - - - - - +
Parameters:
- + + + + + + - + - -
Source:
-
- + + + - + + + - + + + + - - - - - - - - - - + + + + + + + + + + + + + -
-
- Type -
-
- -string + +
+ + + - - + + + + - + + - + + -

system64directory() → {string}

- - + + + + + + + + + + + + + + + +
NameTypeAttributesDefaultDescription
executable + + +string + + + -
Returns:
+ - -
- system32 directory -
+ +
+ +
args + + +array - + + + + <optional>
+ + + +
+ + [] + +
wait + + +boolean + + + + <optional>
+ + + +
+ + false + +
@@ -7737,7 +7601,7 @@

syst
Source:
@@ -7762,28 +7626,6 @@

syst -

Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - @@ -7795,7 +7637,7 @@
Returns:
-

to(localDestination) → {Downloader}

+ @@ -7803,7 +7645,7 @@

to - Sets the download destination + Sets the executable which shall be used @@ -7839,7 +7681,7 @@
Parameters:
- localDestination + search @@ -7855,7 +7697,7 @@
Parameters:
- The destination of the download. If it is a directory, the file will be placed inside + The executable name @@ -7896,7 +7738,7 @@
Parameters:
Source:
@@ -7925,7 +7767,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -7936,7 +7778,7 @@
Returns:
-Downloader +WineShortcut
@@ -7954,7 +7796,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

stop() → {void}

@@ -7962,7 +7804,7 @@

trustLevel<
- set trust level + Stops the running shortcut
@@ -7973,60 +7815,11 @@

trustLevel< -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
+
@@ -8055,7 +7848,7 @@
Parameters:
Source:
@@ -8083,10 +7876,6 @@
Parameters:
Returns:
-
- QuickScript object -
-
@@ -8095,7 +7884,7 @@
Returns:
-QuickScript +void
@@ -8113,72 +7902,19 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

system32directory() → {string}

-
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
@@ -8214,7 +7950,7 @@
Parameters:
Source:
@@ -8243,7 +7979,7 @@
Returns:
- The WineShortcut object + system32 directory
@@ -8254,7 +7990,7 @@
Returns:
-WineShortcut +string
@@ -8272,16 +8008,13 @@
Returns:
-

type(type) → {WineShortcut}

+

system64directory() → {string}

-
- Sets the shortcut type -
@@ -8291,56 +8024,6 @@

type - - - - Name - - - Type - - - - - - Description - - - - - - - - - type - - - - - -string - - - - - - - - - - The shortcut type - - - - - - - - @@ -8373,7 +8056,7 @@
Parameters:
Source:
@@ -8402,7 +8085,7 @@
Returns:
- The WineShortcut object + system64 directory
@@ -8413,7 +8096,7 @@
Returns:
-WineShortcut +string
@@ -8431,7 +8114,7 @@
Returns:
-

uninstall(name) → {bool}

+

to(localDestination) → {Downloader}

@@ -8439,7 +8122,7 @@

uninstall - uninstall application + Sets the download destination @@ -8475,7 +8158,7 @@
Parameters:
- name + localDestination @@ -8491,7 +8174,7 @@
Parameters:
- of the application which shall be uninstalled + The destination of the download. If it is a directory, the file will be placed inside @@ -8532,7 +8215,7 @@
Parameters:
Source:
@@ -8561,7 +8244,7 @@
Returns:
- true if an application has been uninstalled, false otherwise + The Downloader object
@@ -8572,113 +8255,7 @@
Returns:
-bool - - -
-

- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void +Downloader
@@ -8696,7 +8273,7 @@
Returns:
-

url(url) → {Downloader}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -8704,7 +8281,7 @@

url - Sets the URL which shall be used for the download + Sets the trust level @@ -8740,7 +8317,7 @@
Parameters:
- url + trustLevel @@ -8756,7 +8333,7 @@
Parameters:
- The URL + The trust level @@ -8797,7 +8374,7 @@
Parameters:
Source:
@@ -8826,7 +8403,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -8837,7 +8414,7 @@
Returns:
-Downloader +WineShortcut
@@ -8855,7 +8432,7 @@
Returns:
-

url(url) → {Resource}

+

trustLevel(trustlevel) → {QuickScript}

@@ -8863,7 +8440,7 @@

url - Sets the resource URL + set trust level @@ -8899,7 +8476,7 @@
Parameters:
- url + trustlevel @@ -8915,7 +8492,7 @@
Parameters:
- The URL + @@ -8956,7 +8533,7 @@
Parameters:
Source:
@@ -8985,7 +8562,7 @@
Returns:
- The Resource object + QuickScript object
@@ -8996,7 +8573,7 @@
Returns:
-Resource +QuickScript
@@ -9014,7 +8591,7 @@
Returns:
-

wait() → {Wine}

+

type(type) → {WineShortcut}

@@ -9022,7 +8599,7 @@

wait - wait until wineserver finishes + Sets the shortcut type @@ -9033,6 +8610,55 @@

wait + + + + Name + + + Type + + + + + + Description + + + + + + + + + type + + + + + +string + + + + + + + + + + The shortcut type + + + + + + + @@ -9066,7 +8692,7 @@

waitSource:
@@ -9094,6 +8720,10 @@

wait + The WineShortcut object + +
@@ -9102,7 +8732,7 @@
Returns:
-Wine +WineShortcut
@@ -9120,13 +8750,17 @@
Returns:
-

winepath(pathopt) → {String}

+

uninstall(name) → {bool}

+
+ uninstall application +
+ @@ -9148,8 +8782,6 @@
Parameters:
Type - Attributes - @@ -9162,33 +8794,23 @@
Parameters:
- path + name -String +string - - - <optional>
- - - - - - - - + of the application which shall be uninstalled @@ -9229,7 +8851,7 @@
Parameters:
Source:
@@ -9257,6 +8879,10 @@
Parameters:
Returns:
+
+ true if an application has been uninstalled, false otherwise +
+
@@ -9265,7 +8891,7 @@
Returns:
-String +bool
@@ -9283,7 +8909,7 @@
Returns:
-

wineServer(wineserver)

+

uninstall() → {void}

@@ -9291,7 +8917,113 @@

wineServer<
- executes wineserver in current prefix + Uninstalls the shortcut +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +

Returns:
+ + + + +
+
+ Type +
+
+ +void + + +
+
+ + + + + + + + + + + + + +

url(url) → {Downloader}

+ + + + + + +
+ Sets the URL which shall be used for the download
@@ -9327,7 +9059,7 @@
Parameters:
- wineserver + url @@ -9343,7 +9075,7 @@
Parameters:
- parameter + The URL @@ -9384,7 +9116,7 @@
Parameters:
Source:
@@ -9409,6 +9141,28 @@
Parameters:
+
Returns:
+ + +
+ The Downloader object +
+ + + +
+
+ Type +
+
+ +Downloader + + +
+
+ + @@ -9420,7 +9174,7 @@
Parameters:
-

withScript(command) → {PlainInstaller}

+

url(url) → {Resource}

@@ -9428,7 +9182,7 @@

withScript<
- Sets the installation script consisting of a lambda function + Sets the resource URL
@@ -9464,13 +9218,13 @@

Parameters:
- command + url -function +string @@ -9480,501892 +9234,7 @@
Parameters:
- The installation command - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - - - - - - - - - - - -
- -
- -

default()

- -
Resource class
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Downloader class
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Wine engine
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
AppResource class
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
A "plain" script installer that is fully configurable.
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install xact
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install all the necessary things to run winevulkan (even inside wine mainline or newest wine-staging)
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install vcrun6sp6
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install vcrun2017
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install vcrun2015
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install vcrun2013
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install vcrun2012
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install vcrun2010
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install vcrun2008
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install vcrun2005
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install vcrun2003
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install secur32
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install a sandbox
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install quartz
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install msxml6
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install msxml3
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install mspatcha
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install msls31.dll
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install mfc42.dll and mfc42u.dll
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install luna
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install gdiplus
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install Gallium 9 Standalone
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install .NET 4.7.2
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install .NET 4.6.2
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install .NET 4.6.1
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
setting to set the DirectDraw renderer
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Setting to set the Fonts Smoothing
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Setting to enable/disable GLSL
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Setting to enable/disable UseTakeFocus
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
setting to set always offscreen
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Setting to enable/disable Retina
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Setting to configure mouse warp override
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Setting to configure multisampling
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Setting to set the offscreen rendering mode
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Setting to set the render target lock mode
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Setting to configure strict draw ordering
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Setting to set the video memory size
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install .NET 4.6
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install .NET 4.5.2
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install .NET 4.5
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install .NET 4.0
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install dotnet20sp2
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
WineShortcut prototype
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install devenum
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wait() → {Wine}

- - - - - - -
- wait until wineserver finishes -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

winepath(pathopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
path - - -String - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

wineServer(wineserver)

- - - - - - -
- executes wineserver in current prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wineserver - - -string - - - - parameter
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

withScript(command) → {PlainInstaller}

- - - - - - -
- Sets the installation script consisting of a lambda function -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
command - - -function - - - - The installation command
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The PlainInstaller object -
- - - -
-
- Type -
-
- -PlainInstaller - - -
-
- - - - - - - - - - - - - -

wizard(wizardopt) → {SetupWizard|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
wizard - - -SetupWizard - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -SetupWizard -| - -Wine - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Resource}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

wizard(wizard) → {Downloader}

- - - - - - -
- Sets the setup wizard -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
wizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - -
- -
- -

default()

- -
Verb to install D3DX9
- - -
- -
-
- - - - -

Constructor

- - - -

new default()

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -

Methods

- - - - - - - -

_createShortcut(prefixopt)

- - - - - - -
- creates shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
prefix name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

_fetchFileNameFromUrl(url) → {string}

- - - - - - -
- Fetches the file name from an URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The file name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Resource}

- - - - - - -
- Sets the checksum algorithm -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The algorithm to verify the checksum (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

algorithm(algorithm) → {Downloader}

- - - - - - -
- Sets the algorithm which shall be used to verify the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
algorithm - - -string - - - - The checksum algorithm (e.g. "SHA")
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

application(application) → {AppResource}

- - - - - - -
- Sets the application containing the resources -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
application - - -string - - - - The application with the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The AppResource object -
- - - -
-
- Type -
-
- -AppResource - - -
-
- - - - - - - - - - - - - -

architecture() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- architecture ("x86" or "amd64") -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

arguments(args) → {WineShortcut}

- - - - - - -
- Sets the shortcut arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
args - - -array - - - - The shortcut arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

availableDistributions(architectureopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
architecture - - -string - - - - - - <optional>
- - - - - -
- - current architecture - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

availableVersions(distribution nameopt) → {Array.<string>}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
distribution name - - -string - - - - - - <optional>
- - - - - -
- - current distribution - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Array.<string> - - -
-
- - - - - - - - - - - - - -

binPath(subCategoryopt, versionopt) → {string}

- - - - - - -
- returns the path to the engine binary directory -if no parameters are given, the Wine version of the current prefix is used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
subCategory - - -string - - - - - - <optional>
- - - - - -
Wine sub-category
version - - -string - - - - - - <optional>
- - - - - -
Wine version
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- path to "wine" binary -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

category(category) → {WineShortcut}

- - - - - - -
- Sets the shortcut category -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
category - - -string - - - - The shortcut category
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Resource}

- - - - - - -
- Sets the checksum which shall be used to verify the resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

checksum(checksum) → {Downloader}

- - - - - - -
- Sets the checksum -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
checksum - - -string - - - - The checksum which shall be used to verify the download
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

create() → {Wine}

- - - - - - -
- runs "wineboot" -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Wine object -
- - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

description(description) → {WineShortcut}

- - - - - - -
- Sets the shortcut description -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

directory(directory) → {Resource}

- - - - - - -
- Sets the directory inside the resources directory where the Resource is stored -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
directory - - -string - - - - The directory path
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

download(setupWizard) → {String}

- - - - - - -
- Download the setup resources in the same directory, and returns the path of the .exe -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setup wizard
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The .exe file entry that can be used to continue the installation -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

environment(environment) → {QuickScript}

- - - - - - -
- set environment -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

environment(environment) → {WineShortcut}

- - - - - - -
- Sets the shortcut environment variables -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
environment - - -string - - - - The environment variables
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

executable(executable, args)

- - - - - - -
- set executable -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
executable - - executable without path (e.g. "Steam.exe")
args - - use array (e.g. ["-applaunch", 409160])
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

fontDirectory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- font directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get(resourceName) → {Resource}

- - - - - - -
- Returns the searched resource -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
resourceName - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The found resource -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

get() → {string}

- - - - - - -
- Fetches the Resource and returns the path leading to the downloaded resource -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The path leading to the downloaded resource -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

get() → {String}

- - - - - - -
- Gets the content of the downloaded file -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The content of downloaded file -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

getContainer() → {string}

- - - - - - -
- Returns the name of the container belonging to a shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The container name -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

gogSetupFileName(setupFileName) → {GogScript}

- - - - - - -
- Sets one setup file name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileName - - -string - - - - The setup file name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

gogSetupFileNames(setupFileNames) → {GogScript}

- - - - - - -
- Sets the setup file(s) name so that the script can fetch it from gog.com -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

headers(headers) → {Downloader}

- - - - - - -
- Sets the http headers -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

json() → {any}

- - - - - - -
- Gets the content of the downloaded file and returns it as a JSON value -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The json value -
- - - -
-
- Type -
-
- -any - - -
-
- - - - - - - - - - - - - -

kill() → {Wine}

- - - - - - -
- kill wine server -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -Wine - - -
-
- - - - - - - - - - - - - -

loginToGog(setupWizard) → {GogScript}

- - - - - - -
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupWizard - - -SetupWizard - - - - The setupWizard to use
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- This -
- - - -
-
- Type -
-
- -GogScript - - -
-
- - - - - - - - - - - - - -

message(message) → {Downloader}

- - - - - - -
- Sets the download message text -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
message - - -string - - - - The download message
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

miniature(miniatureopt)

- - - - - - -
- get/set miniature (for the installation and the shortcut) -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
miniature - - -URI - - - - - - <optional>
- - - - - -
path to the miniature file
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

miniature(miniature) → {WineShortcut}

- - - - - - -
- Sets the miniature for the shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
miniature - - -Array.<string> -| - -URI - - - - An array which specifies the application of which the miniature shall be used or URI of the miniature
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {WineShortcut}

- - - - - - -
- Sets the shortcut name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The shortcut name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - - -

of(shortcut) → {void}

- - - - - - -
- Sets shortcut -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
shortcut - - -string - - - - shortcut
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

onlyIfUpdateAvailable(onlyIfUpdateAvailable) → {Downloader}

- - - - - - -
- Specifies if the download shall be executed only if a newer version is available -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
onlyIfUpdateAvailable - - -boolean - - - - true the download shall be executed only if a newer version is available
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

prefix(prefix) → {WineShortcut}

- - - - - - -
- Sets the shortcut prefix -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
prefix - - -string - - - - The shortcut prefix
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

prefix(prefixopt, distributionopt, architectureopt, versionopt) → {string|Wine}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDescription
prefix - - -string - - - - - - <optional>
- - - - - -
distribution - - -string - - - - - - <optional>
- - - - - -
architecture - - -string - - - - - - <optional>
- - - - - -
version - - -string - - - - - - <optional>
- - - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string -| - -Wine - - -
-
- - - - - - - - - - - - - -

prefixDirectory() → {string}

- - - - - - -
- returns prefix directory -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

programFiles() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- name of "Program Files" -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

run(executable, argsopt, workingDirectoryopt, captureOutputopt, waitopt, userDataopt) → {String}

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
workingDirectory - - -string - - - - - - <optional>
- - - - - -
- - working container - -
captureOutput - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
userData - - -map - - - - - - <optional>
- - - - - -
- - empty - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- output -
- - - -
-
- Type -
-
- -String - - -
-
- - - - - - - - - - - - - -

run(userArguments) → {void}

- - - - - - -
- Runs a shortcut with the given user arguments -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
userArguments - - -array - - - - The user arguments
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

runInsidePrefix(executable, argsopt, waitopt)

- - - - - - - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesDefaultDescription
executable - - -string - - - - - - - - - - - -
args - - -array - - - - - - <optional>
- - - - - -
- - [] - -
wait - - -boolean - - - - - - <optional>
- - - - - -
- - false - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Sets the executable which shall be used -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
search - - -string - - - - The executable name
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

stop() → {void}

- - - - - - -
- Stops the running shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

system32directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system32 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

system64directory() → {string}

- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- system64 directory -
- - - -
-
- Type -
-
- -string - - -
-
- - - - - - - - - - - - - -

to(localDestination) → {Downloader}

- - - - - - -
- Sets the download destination -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
localDestination - - -string - - - - The destination of the download. If it is a directory, the file will be placed inside
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

trustLevel(trustlevel) → {QuickScript}

- - - - - - -
- set trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustlevel - - -string - - - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- QuickScript object -
- - - -
-
- Type -
-
- -QuickScript - - -
-
- - - - - - - - - - - - - -

trustLevel(trustLevel) → {WineShortcut}

- - - - - - -
- Sets the trust level -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
trustLevel - - -string - - - - The trust level
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

type(type) → {WineShortcut}

- - - - - - -
- Sets the shortcut type -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -string - - - - The shortcut type
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The WineShortcut object -
- - - -
-
- Type -
-
- -WineShortcut - - -
-
- - - - - - - - - - - - - -

uninstall(name) → {bool}

- - - - - - -
- uninstall application -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - of the application which shall be uninstalled
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- true if an application has been uninstalled, false otherwise -
- - - -
-
- Type -
-
- -bool - - -
-
- - - - - - - - - - - - - -

uninstall() → {void}

- - - - - - -
- Uninstalls the shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void - - -
-
- - - - - - - - - - - - - -

url(url) → {Downloader}

- - - - - - -
- Sets the URL which shall be used for the download -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
url - - -string - - - - The URL
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Downloader object -
- - - -
-
- Type -
-
- -Downloader - - -
-
- - - - - - - - - - - - - -

url(url) → {Resource}

- - - - - - -
- Sets the resource URL -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -512029,13 +9898,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -512057,8 +9930,6 @@
Parameters:
- - @@ -512084,20 +9955,10 @@
Parameters:
- - - - + @@ -512138,7 +9999,7 @@
Parameters:
Source:
@@ -512166,6 +10027,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -512174,10 +10039,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -512354,17 +10216,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -512386,6 +10244,8 @@
Parameters:
+ + @@ -512411,10 +10271,20 @@
Parameters:
+ + - + @@ -512455,7 +10325,7 @@
Parameters:
Source:
@@ -512483,10 +10353,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -512495,7 +10361,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -512529,7 +10398,7 @@
Returns:

default()

-
Verb to install D3DX11
+
Setting to enable/disable UseTakeFocus
@@ -512592,7 +10461,7 @@

new defaultSource:
@@ -514404,7 +12273,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -514412,7 +12281,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -514464,7 +12333,7 @@
Parameters:
-

+ @@ -514505,7 +12374,7 @@
Parameters:
Source:
@@ -514534,7 +12403,7 @@
Returns:
- The Resource object + The Downloader object
@@ -514545,7 +12414,7 @@
Returns:
-Resource +Downloader
@@ -514563,7 +12432,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -514571,7 +12440,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -514623,7 +12492,7 @@
Parameters:
-

+ @@ -514664,7 +12533,7 @@
Parameters:
Source:
@@ -514693,7 +12562,7 @@
Returns:
- The Downloader object + The Resource object
@@ -514704,7 +12573,7 @@
Returns:
-Downloader +Resource
@@ -514722,7 +12591,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -514730,7 +12599,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -514774,7 +12643,7 @@

createSource:
@@ -514802,6 +12671,10 @@

createReturns:

+
+ The Wine object +
+
@@ -514810,7 +12683,7 @@
Returns:
-void +Wine
@@ -514828,7 +12701,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -514836,7 +12709,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -514880,7 +12753,7 @@

createSource:
@@ -514908,10 +12781,6 @@

createReturns:

-
- The Wine object -
-
@@ -514920,7 +12789,7 @@
Returns:
-Wine +void
@@ -515300,13 +13169,173 @@
Parameters:

- + + + + + + + + + + + + + + +
NameTypeDescription
url - - -string - - - - The URLThe URL
TypeAttributes - - <optional>
- - - - -
The setup wizard
TypeAttributes + + <optional>
+ + + + + +
The setup wizard
The checksumThe checksum which shall be used to verify the download
The checksum which shall be used to verify the downloadThe checksum
setupWizardsetupWizard + + +SetupWizard + + + + The setup wizard
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -515357,7 +13386,7 @@
Parameters:
Source:
@@ -515386,7 +13415,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -515397,7 +13426,7 @@
Returns:
-String +boolean
@@ -515415,7 +13444,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -515423,7 +13452,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -515459,13 +13488,13 @@

Parameters:
- + + @@ -515516,7 +13545,7 @@
Parameters:
Source:
@@ -515545,7 +13574,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -515556,7 +13585,7 @@
Returns:
-QuickScript +boolean
@@ -515733,6 +13762,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -515316,7 +13345,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -515475,7 +13504,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -515847,7 +14035,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -515872,6 +14144,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -515883,13 +14177,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -515931,7 +14229,7 @@

fontDire
Source:
@@ -515960,7 +14258,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -515989,6 +14287,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -516148,7 +14556,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -516156,7 +14564,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -516200,7 +14608,7 @@

getSource:
@@ -516229,7 +14637,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -516258,7 +14666,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -516266,7 +14674,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -516277,6 +14685,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -516310,7 +14767,7 @@

getSource:
@@ -516339,7 +14796,7 @@
Returns:
- The content of downloaded file + This
@@ -516350,7 +14807,7 @@
Returns:
-String +GogScript
@@ -516368,7 +14825,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -516376,7 +14833,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -516387,6 +14844,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -516420,7 +14926,7 @@

getContai
Source:
@@ -516449,7 +14955,7 @@

Returns:
- The container name + This
@@ -516460,7 +14966,7 @@
Returns:
-string +GogScript
@@ -516478,7 +14984,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -516486,7 +14992,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -516522,13 +15028,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -516538,7 +15044,7 @@
Parameters:
- The setup file name + The http headers @@ -516579,7 +15085,7 @@
Parameters:
Source:
@@ -516608,7 +15114,7 @@
Returns:
- This + The Downloader object
@@ -516619,7 +15125,7 @@
Returns:
-GogScript +Downloader
@@ -516637,7 +15143,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -516645,7 +15151,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -516656,55 +15162,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -516738,7 +15195,7 @@
Parameters:
Source:
@@ -516767,7 +15224,7 @@
Returns:
- This + The json value
@@ -516778,7 +15235,7 @@
Returns:
-GogScript +any
@@ -516796,7 +15253,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -516804,7 +15261,7 @@

headers - Sets the http headers + kill wine server @@ -516815,55 +15272,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -516897,7 +15305,7 @@
Parameters:
Source:
@@ -516925,10 +15333,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -516937,7 +15341,7 @@
Returns:
-Downloader +Wine
@@ -516955,7 +15359,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -516963,7 +15367,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -516974,114 +15379,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -517117,7 +15461,7 @@

killSource:
@@ -517145,6 +15489,10 @@

kill + This + +
@@ -517153,7 +15501,7 @@
Returns:
-Wine +GogScript
@@ -517171,7 +15519,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -517179,8 +15527,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -517216,13 +15563,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -517232,7 +15579,7 @@
Parameters:
- The setupWizard to use + The download message @@ -517273,7 +15620,7 @@
Parameters:
Source:
@@ -517302,7 +15649,7 @@
Returns:
- This + The Downloader object
@@ -517313,7 +15660,7 @@
Returns:
-GogScript +Downloader
@@ -517331,7 +15678,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -517339,7 +15686,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -517375,13 +15722,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -517391,7 +15741,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -517432,7 +15782,7 @@
Parameters:
Source:
@@ -517461,7 +15811,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -517472,7 +15822,7 @@
Returns:
-Downloader +WineShortcut
@@ -517639,7 +15989,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -517647,7 +15997,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -517683,16 +16033,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -517702,7 +16049,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -517743,7 +16090,7 @@
Parameters:
Source:
@@ -517772,7 +16119,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -517783,7 +16130,7 @@
Returns:
-WineShortcut +Resource
@@ -517960,165 +16307,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -520453,7 +18641,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -520461,7 +18649,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -520497,7 +18685,7 @@

Parameters:
- trustlevel + trustLevel @@ -520513,7 +18701,7 @@
Parameters:
- + The trust level @@ -520554,7 +18742,7 @@
Parameters:
Source:
@@ -520583,7 +18771,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -520594,7 +18782,7 @@
Returns:
-QuickScript +WineShortcut
@@ -520612,7 +18800,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -520620,7 +18808,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -520656,7 +18844,7 @@

Parameters:
- trustLevel + trustlevel @@ -520672,7 +18860,7 @@
Parameters:
- The trust level + @@ -520713,7 +18901,7 @@
Parameters:
Source:
@@ -520742,7 +18930,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -520753,7 +18941,7 @@
Returns:
-WineShortcut +QuickScript
@@ -522078,13 +20266,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -522106,8 +20298,6 @@
Parameters:
Type - Attributes - @@ -522133,20 +20323,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -522187,7 +20367,7 @@
Parameters:
Source:
@@ -522215,6 +20395,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -522223,10 +20407,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -522403,17 +20584,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -522435,6 +20612,8 @@
Parameters:
Type + Attributes + @@ -522460,10 +20639,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -522504,7 +20693,7 @@
Parameters:
Source:
@@ -522532,10 +20721,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -522544,7 +20729,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -522578,7 +20766,7 @@
Returns:

default()

-
Wine main prototype
+
setting to set always offscreen
@@ -522641,7 +20829,7 @@

new defaultSource:
@@ -524453,7 +22641,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -524461,7 +22649,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -524513,7 +22701,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -524554,7 +22742,7 @@
Parameters:
Source:
@@ -524583,7 +22771,7 @@
Returns:
- The Resource object + The Downloader object
@@ -524594,7 +22782,7 @@
Returns:
-Resource +Downloader
@@ -524612,7 +22800,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -524620,7 +22808,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -524672,7 +22860,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -524713,7 +22901,7 @@
Parameters:
Source:
@@ -524742,7 +22930,7 @@
Returns:
- The Downloader object + The Resource object
@@ -524753,7 +22941,7 @@
Returns:
-Downloader +Resource
@@ -524771,7 +22959,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -524779,7 +22967,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -524823,7 +23011,7 @@

createSource:
@@ -524851,6 +23039,10 @@

createReturns:

+
+ The Wine object +
+
@@ -524859,7 +23051,7 @@
Returns:
-void +Wine
@@ -524877,7 +23069,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -524885,7 +23077,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -524929,7 +23121,7 @@

createSource:
@@ -524957,10 +23149,6 @@

createReturns:

-
- The Wine object -
-
@@ -524969,7 +23157,7 @@
Returns:
-Wine +void
@@ -525349,13 +23537,173 @@
Parameters:
- setupWizard + setupWizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -525406,7 +23754,7 @@
Parameters:
Source:
@@ -525435,7 +23783,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -525446,7 +23794,7 @@
Returns:
-String +boolean
@@ -525464,7 +23812,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -525472,7 +23820,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -525508,13 +23856,13 @@

Parameters:
- + + @@ -525565,7 +23913,7 @@
Parameters:
Source:
@@ -525594,7 +23942,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -525605,7 +23953,7 @@
Returns:
-QuickScript +boolean
@@ -525782,6 +24130,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -525365,7 +23713,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -525524,7 +23872,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -525896,7 +24403,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -525921,6 +24512,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -525932,13 +24545,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -525980,7 +24597,7 @@

fontDire
Source:
@@ -526009,7 +24626,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -526038,6 +24655,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -526197,7 +24924,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -526205,7 +24932,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -526249,7 +24976,7 @@

getSource:
@@ -526278,7 +25005,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -526307,7 +25034,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -526315,7 +25042,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -526326,6 +25053,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -526359,7 +25135,7 @@

getSource:
@@ -526388,7 +25164,7 @@
Returns:
- The content of downloaded file + This
@@ -526399,7 +25175,7 @@
Returns:
-String +GogScript
@@ -526417,7 +25193,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -526425,7 +25201,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -526436,6 +25212,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -526469,7 +25294,7 @@

getContai
Source:
@@ -526498,7 +25323,7 @@

Returns:
- The container name + This
@@ -526509,7 +25334,7 @@
Returns:
-string +GogScript
@@ -526527,7 +25352,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -526535,7 +25360,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -526571,13 +25396,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -526587,7 +25412,7 @@
Parameters:
- The setup file name + The http headers @@ -526628,7 +25453,7 @@
Parameters:
Source:
@@ -526657,7 +25482,7 @@
Returns:
- This + The Downloader object
@@ -526668,7 +25493,7 @@
Returns:
-GogScript +Downloader
@@ -526686,7 +25511,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -526694,7 +25519,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -526705,55 +25530,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -526787,7 +25563,7 @@
Parameters:
Source:
@@ -526816,7 +25592,7 @@
Returns:
- This + The json value
@@ -526827,7 +25603,7 @@
Returns:
-GogScript +any
@@ -526845,7 +25621,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -526853,7 +25629,7 @@

headers - Sets the http headers + kill wine server @@ -526864,55 +25640,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -526946,7 +25673,7 @@
Parameters:
Source:
@@ -526974,10 +25701,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -526986,7 +25709,7 @@
Returns:
-Downloader +Wine
@@ -527004,7 +25727,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -527012,7 +25735,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -527023,114 +25747,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -527166,7 +25829,7 @@

killSource:
@@ -527194,6 +25857,10 @@

kill + This + +
@@ -527202,7 +25869,7 @@
Returns:
-Wine +GogScript
@@ -527220,7 +25887,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -527228,8 +25895,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -527265,13 +25931,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -527281,7 +25947,7 @@
Parameters:
- The setupWizard to use + The download message @@ -527322,7 +25988,7 @@
Parameters:
Source:
@@ -527351,7 +26017,7 @@
Returns:
- This + The Downloader object
@@ -527362,7 +26028,7 @@
Returns:
-GogScript +Downloader
@@ -527380,7 +26046,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -527388,7 +26054,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -527424,13 +26090,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -527440,7 +26109,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -527481,7 +26150,7 @@
Parameters:
Source:
@@ -527510,7 +26179,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -527521,7 +26190,7 @@
Returns:
-Downloader +WineShortcut
@@ -527688,7 +26357,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -527696,7 +26365,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -527732,16 +26401,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -527751,7 +26417,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -527792,7 +26458,7 @@
Parameters:
Source:
@@ -527821,7 +26487,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -527832,7 +26498,7 @@
Returns:
-WineShortcut +Resource
@@ -528009,165 +26675,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -530502,7 +29009,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -530510,7 +29017,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -530546,7 +29053,7 @@

Parameters:
- trustlevel + trustLevel @@ -530562,7 +29069,7 @@
Parameters:
- + The trust level @@ -530603,7 +29110,7 @@
Parameters:
Source:
@@ -530632,7 +29139,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -530643,7 +29150,7 @@
Returns:
-QuickScript +WineShortcut
@@ -530661,7 +29168,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -530669,7 +29176,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -530705,7 +29212,7 @@

Parameters:
- trustLevel + trustlevel @@ -530721,7 +29228,7 @@
Parameters:
- The trust level + @@ -530762,7 +29269,7 @@
Parameters:
Source:
@@ -530791,7 +29298,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -530802,7 +29309,7 @@
Returns:
-WineShortcut +QuickScript
@@ -532127,13 +30634,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -532155,8 +30666,6 @@
Parameters:
Type - Attributes - @@ -532182,20 +30691,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -532236,7 +30735,7 @@
Parameters:
Source:
@@ -532264,6 +30763,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -532272,10 +30775,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -532452,17 +30952,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -532484,6 +30980,8 @@
Parameters:
Type + Attributes + @@ -532509,10 +31007,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -532553,7 +31061,7 @@
Parameters:
Source:
@@ -532581,10 +31089,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -532593,7 +31097,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -532627,7 +31134,7 @@
Returns:

default()

-
Verb to install d3drm
+
Setting to enable/disable Retina
@@ -532690,7 +31197,7 @@

new defaultSource:
@@ -534502,7 +33009,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -534510,7 +33017,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -534562,7 +33069,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -534603,7 +33110,7 @@
Parameters:
Source:
@@ -534632,7 +33139,7 @@
Returns:
- The Resource object + The Downloader object
@@ -534643,7 +33150,7 @@
Returns:
-Resource +Downloader
@@ -534661,7 +33168,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -534669,7 +33176,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -534721,7 +33228,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -534762,7 +33269,7 @@
Parameters:
Source:
@@ -534791,7 +33298,7 @@
Returns:
- The Downloader object + The Resource object
@@ -534802,7 +33309,7 @@
Returns:
-Downloader +Resource
@@ -534820,7 +33327,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -534828,7 +33335,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -534872,7 +33379,7 @@

createSource:
@@ -534900,6 +33407,10 @@

createReturns:

+
+ The Wine object +
+
@@ -534908,7 +33419,7 @@
Returns:
-void +Wine
@@ -534926,7 +33437,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -534934,7 +33445,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -534978,7 +33489,7 @@

createSource:
@@ -535006,10 +33517,6 @@

createReturns:

-
- The Wine object -
-
@@ -535018,7 +33525,7 @@
Returns:
-Wine +void
@@ -535398,13 +33905,173 @@
Parameters:
- setupWizard + setupWizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -535455,7 +34122,7 @@
Parameters:
Source:
@@ -535484,7 +34151,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -535495,7 +34162,7 @@
Returns:
-String +boolean
@@ -535513,7 +34180,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -535521,7 +34188,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -535557,13 +34224,13 @@

Parameters:
- + + @@ -535614,7 +34281,7 @@
Parameters:
Source:
@@ -535643,7 +34310,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -535654,7 +34321,7 @@
Returns:
-QuickScript +boolean
@@ -535831,6 +34498,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -535414,7 +34081,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -535573,7 +34240,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -535945,7 +34771,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -535970,6 +34880,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -535981,13 +34913,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -536029,7 +34965,7 @@

fontDire
Source:
@@ -536058,7 +34994,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -536087,6 +35023,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -536246,7 +35292,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -536254,7 +35300,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -536298,7 +35344,7 @@

getSource:
@@ -536327,7 +35373,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -536356,7 +35402,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -536364,7 +35410,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -536375,6 +35421,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -536408,7 +35503,7 @@

getSource:
@@ -536437,7 +35532,7 @@
Returns:
- The content of downloaded file + This
@@ -536448,7 +35543,7 @@
Returns:
-String +GogScript
@@ -536466,7 +35561,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -536474,7 +35569,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -536485,6 +35580,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -536518,7 +35662,7 @@

getContai
Source:
@@ -536547,7 +35691,7 @@

Returns:
- The container name + This
@@ -536558,7 +35702,7 @@
Returns:
-string +GogScript
@@ -536576,7 +35720,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -536584,7 +35728,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -536620,13 +35764,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -536636,7 +35780,7 @@
Parameters:
- The setup file name + The http headers @@ -536677,7 +35821,7 @@
Parameters:
Source:
@@ -536706,7 +35850,7 @@
Returns:
- This + The Downloader object
@@ -536717,7 +35861,7 @@
Returns:
-GogScript +Downloader
@@ -536735,7 +35879,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -536743,7 +35887,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -536754,55 +35898,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -536836,7 +35931,7 @@
Parameters:
Source:
@@ -536865,7 +35960,7 @@
Returns:
- This + The json value
@@ -536876,7 +35971,7 @@
Returns:
-GogScript +any
@@ -536894,7 +35989,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -536902,7 +35997,7 @@

headers - Sets the http headers + kill wine server @@ -536913,55 +36008,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -536995,7 +36041,7 @@
Parameters:
Source:
@@ -537023,10 +36069,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -537035,7 +36077,7 @@
Returns:
-Downloader +Wine
@@ -537053,7 +36095,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -537061,7 +36103,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -537072,114 +36115,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -537215,7 +36197,7 @@

killSource:
@@ -537243,6 +36225,10 @@

kill + This + +
@@ -537251,7 +36237,7 @@
Returns:
-Wine +GogScript
@@ -537269,7 +36255,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -537277,8 +36263,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -537314,13 +36299,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -537330,7 +36315,7 @@
Parameters:
- The setupWizard to use + The download message @@ -537371,7 +36356,7 @@
Parameters:
Source:
@@ -537400,7 +36385,7 @@
Returns:
- This + The Downloader object
@@ -537411,7 +36396,7 @@
Returns:
-GogScript +Downloader
@@ -537429,7 +36414,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -537437,7 +36422,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -537473,13 +36458,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -537489,7 +36477,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -537530,7 +36518,7 @@
Parameters:
Source:
@@ -537559,7 +36547,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -537570,7 +36558,7 @@
Returns:
-Downloader +WineShortcut
@@ -537737,7 +36725,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -537745,7 +36733,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -537781,16 +36769,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -537800,7 +36785,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -537841,7 +36826,7 @@
Parameters:
Source:
@@ -537870,7 +36855,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -537881,7 +36866,7 @@
Returns:
-WineShortcut +Resource
@@ -538058,165 +37043,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -540551,7 +39377,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -540559,7 +39385,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -540595,7 +39421,7 @@

Parameters:
- trustlevel + trustLevel @@ -540611,7 +39437,7 @@
Parameters:
- + The trust level @@ -540652,7 +39478,7 @@
Parameters:
Source:
@@ -540681,7 +39507,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -540692,7 +39518,7 @@
Returns:
-QuickScript +WineShortcut
@@ -540710,7 +39536,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -540718,7 +39544,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -540754,7 +39580,7 @@

Parameters:
- trustLevel + trustlevel @@ -540770,7 +39596,7 @@
Parameters:
- The trust level + @@ -540811,7 +39637,7 @@
Parameters:
Source:
@@ -540840,7 +39666,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -540851,7 +39677,7 @@
Returns:
-WineShortcut +QuickScript
@@ -542176,13 +41002,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -542204,8 +41034,6 @@
Parameters:
Type - Attributes - @@ -542231,20 +41059,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -542285,7 +41103,7 @@
Parameters:
Source:
@@ -542313,6 +41131,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -542321,10 +41143,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -542501,17 +41320,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -542533,6 +41348,8 @@
Parameters:
Type + Attributes + @@ -542558,10 +41375,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -542602,7 +41429,7 @@
Parameters:
Source:
@@ -542630,10 +41457,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -542642,7 +41465,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -542676,7 +41502,7 @@
Returns:

default()

-
Verb to install crypt32
+
Setting to configure mouse warp override
@@ -542739,7 +41565,7 @@

new defaultSource:
@@ -544551,7 +43377,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -544559,7 +43385,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -544611,7 +43437,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -544652,7 +43478,7 @@
Parameters:
Source:
@@ -544681,7 +43507,7 @@
Returns:
- The Resource object + The Downloader object
@@ -544692,7 +43518,7 @@
Returns:
-Resource +Downloader
@@ -544710,7 +43536,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -544718,7 +43544,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -544770,7 +43596,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -544811,7 +43637,7 @@
Parameters:
Source:
@@ -544840,7 +43666,7 @@
Returns:
- The Downloader object + The Resource object
@@ -544851,7 +43677,7 @@
Returns:
-Downloader +Resource
@@ -544869,7 +43695,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -544877,7 +43703,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -544921,7 +43747,7 @@

createSource:
@@ -544949,6 +43775,10 @@

createReturns:

+
+ The Wine object +
+
@@ -544957,7 +43787,7 @@
Returns:
-void +Wine
@@ -544975,7 +43805,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -544983,7 +43813,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -545027,7 +43857,7 @@

createSource:
@@ -545055,10 +43885,6 @@

createReturns:

-
- The Wine object -
-
@@ -545067,7 +43893,7 @@
Returns:
-Wine +void
@@ -545447,13 +44273,173 @@
Parameters:
- setupWizard + setupWizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -545504,7 +44490,7 @@
Parameters:
Source:
@@ -545533,7 +44519,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -545544,7 +44530,7 @@
Returns:
-String +boolean
@@ -545562,7 +44548,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -545570,7 +44556,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -545606,13 +44592,13 @@

Parameters:
- + + @@ -545663,7 +44649,7 @@
Parameters:
Source:
@@ -545692,7 +44678,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -545703,7 +44689,7 @@
Returns:
-QuickScript +boolean
@@ -545880,6 +44866,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -545463,7 +44449,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -545622,7 +44608,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -545994,7 +45139,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -546019,6 +45248,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -546030,13 +45281,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -546078,7 +45333,7 @@

fontDire
Source:
@@ -546107,7 +45362,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -546136,6 +45391,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -546295,7 +45660,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -546303,7 +45668,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -546347,7 +45712,7 @@

getSource:
@@ -546376,7 +45741,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -546405,7 +45770,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -546413,7 +45778,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -546424,6 +45789,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -546457,7 +45871,7 @@

getSource:
@@ -546486,7 +45900,7 @@
Returns:
- The content of downloaded file + This
@@ -546497,7 +45911,7 @@
Returns:
-String +GogScript
@@ -546515,7 +45929,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -546523,7 +45937,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -546534,6 +45948,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -546567,7 +46030,7 @@

getContai
Source:
@@ -546596,7 +46059,7 @@

Returns:
- The container name + This
@@ -546607,7 +46070,7 @@
Returns:
-string +GogScript
@@ -546625,7 +46088,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -546633,7 +46096,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -546669,13 +46132,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -546685,7 +46148,7 @@
Parameters:
- The setup file name + The http headers @@ -546726,7 +46189,7 @@
Parameters:
Source:
@@ -546755,7 +46218,7 @@
Returns:
- This + The Downloader object
@@ -546766,7 +46229,7 @@
Returns:
-GogScript +Downloader
@@ -546784,7 +46247,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -546792,7 +46255,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -546803,55 +46266,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -546885,7 +46299,7 @@
Parameters:
Source:
@@ -546914,7 +46328,7 @@
Returns:
- This + The json value
@@ -546925,7 +46339,7 @@
Returns:
-GogScript +any
@@ -546943,7 +46357,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -546951,7 +46365,7 @@

headers - Sets the http headers + kill wine server @@ -546962,55 +46376,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -547044,7 +46409,7 @@
Parameters:
Source:
@@ -547072,10 +46437,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -547084,7 +46445,7 @@
Returns:
-Downloader +Wine
@@ -547102,7 +46463,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -547110,7 +46471,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -547121,114 +46483,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -547264,7 +46565,7 @@

killSource:
@@ -547292,6 +46593,10 @@

kill + This + +
@@ -547300,7 +46605,7 @@
Returns:
-Wine +GogScript
@@ -547318,7 +46623,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -547326,8 +46631,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -547363,13 +46667,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -547379,7 +46683,7 @@
Parameters:
- The setupWizard to use + The download message @@ -547420,7 +46724,7 @@
Parameters:
Source:
@@ -547449,7 +46753,7 @@
Returns:
- This + The Downloader object
@@ -547460,7 +46764,7 @@
Returns:
-GogScript +Downloader
@@ -547478,7 +46782,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -547486,7 +46790,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -547522,13 +46826,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -547538,7 +46845,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -547579,7 +46886,7 @@
Parameters:
Source:
@@ -547608,7 +46915,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -547619,7 +46926,7 @@
Returns:
-Downloader +WineShortcut
@@ -547786,7 +47093,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -547794,7 +47101,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -547830,16 +47137,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -547849,7 +47153,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -547890,7 +47194,7 @@
Parameters:
Source:
@@ -547919,7 +47223,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -547930,7 +47234,7 @@
Returns:
-WineShortcut +Resource
@@ -548107,165 +47411,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -550600,7 +49745,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -550608,7 +49753,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -550644,7 +49789,7 @@

Parameters:
- trustlevel + trustLevel @@ -550660,7 +49805,7 @@
Parameters:
- + The trust level @@ -550701,7 +49846,7 @@
Parameters:
Source:
@@ -550730,7 +49875,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -550741,7 +49886,7 @@
Returns:
-QuickScript +WineShortcut
@@ -550759,7 +49904,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -550767,7 +49912,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -550803,7 +49948,7 @@

Parameters:
- trustLevel + trustlevel @@ -550819,7 +49964,7 @@
Parameters:
- The trust level + @@ -550860,7 +50005,7 @@
Parameters:
Source:
@@ -550889,7 +50034,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -550900,7 +50045,7 @@
Returns:
-WineShortcut +QuickScript
@@ -552225,13 +51370,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -552253,8 +51402,6 @@
Parameters:
Type - Attributes - @@ -552280,20 +51427,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -552334,7 +51471,7 @@
Parameters:
Source:
@@ -552362,6 +51499,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -552370,10 +51511,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -552550,17 +51688,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -552582,6 +51716,8 @@
Parameters:
Type + Attributes + @@ -552607,10 +51743,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -552651,7 +51797,7 @@
Parameters:
Source:
@@ -552679,10 +51825,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -552691,7 +51833,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -552725,7 +51870,7 @@
Returns:

default()

-
Verb to install corefonts
+
Setting to configure multisampling
@@ -552788,7 +51933,7 @@

new defaultSource:
@@ -554600,7 +53745,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -554608,7 +53753,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -554660,7 +53805,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -554701,7 +53846,7 @@
Parameters:
Source:
@@ -554730,7 +53875,7 @@
Returns:
- The Resource object + The Downloader object
@@ -554741,7 +53886,7 @@
Returns:
-Resource +Downloader
@@ -554759,7 +53904,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -554767,7 +53912,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -554819,7 +53964,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -554860,7 +54005,7 @@
Parameters:
Source:
@@ -554889,7 +54034,7 @@
Returns:
- The Downloader object + The Resource object
@@ -554900,7 +54045,7 @@
Returns:
-Downloader +Resource
@@ -554918,7 +54063,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -554926,7 +54071,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -554970,7 +54115,7 @@

createSource:
@@ -554998,6 +54143,10 @@

createReturns:

+
+ The Wine object +
+
@@ -555006,7 +54155,7 @@
Returns:
-void +Wine
@@ -555024,7 +54173,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -555032,7 +54181,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -555076,7 +54225,7 @@

createSource:
@@ -555104,10 +54253,6 @@

createReturns:

-
- The Wine object -
-
@@ -555116,7 +54261,7 @@
Returns:
-Wine +void
@@ -555496,13 +54641,173 @@
Parameters:
- setupWizard + setupWizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -555553,7 +54858,7 @@
Parameters:
Source:
@@ -555582,7 +54887,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -555593,7 +54898,7 @@
Returns:
-String +boolean
@@ -555611,7 +54916,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -555619,7 +54924,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -555655,13 +54960,13 @@

Parameters:
- + + @@ -555712,7 +55017,7 @@
Parameters:
Source:
@@ -555741,7 +55046,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -555752,7 +55057,7 @@
Returns:
-QuickScript +boolean
@@ -555929,6 +55234,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -555512,7 +54817,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -555671,7 +54976,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -556043,7 +55507,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -556068,6 +55616,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -556079,13 +55649,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -556127,7 +55701,7 @@

fontDire
Source:
@@ -556156,7 +55730,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -556185,6 +55759,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -556344,7 +56028,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -556352,7 +56036,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -556396,7 +56080,7 @@

getSource:
@@ -556425,7 +56109,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -556454,7 +56138,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -556462,7 +56146,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -556473,6 +56157,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -556506,7 +56239,7 @@

getSource:
@@ -556535,7 +56268,7 @@
Returns:
- The content of downloaded file + This
@@ -556546,7 +56279,7 @@
Returns:
-String +GogScript
@@ -556564,7 +56297,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -556572,7 +56305,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -556583,6 +56316,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -556616,7 +56398,7 @@

getContai
Source:
@@ -556645,7 +56427,7 @@

Returns:
- The container name + This
@@ -556656,7 +56438,7 @@
Returns:
-string +GogScript
@@ -556674,7 +56456,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -556682,7 +56464,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -556718,13 +56500,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -556734,7 +56516,7 @@
Parameters:
- The setup file name + The http headers @@ -556775,7 +56557,7 @@
Parameters:
Source:
@@ -556804,7 +56586,7 @@
Returns:
- This + The Downloader object
@@ -556815,7 +56597,7 @@
Returns:
-GogScript +Downloader
@@ -556833,7 +56615,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -556841,7 +56623,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -556852,55 +56634,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -556934,7 +56667,7 @@
Parameters:
Source:
@@ -556963,7 +56696,7 @@
Returns:
- This + The json value
@@ -556974,7 +56707,7 @@
Returns:
-GogScript +any
@@ -556992,7 +56725,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -557000,7 +56733,7 @@

headers - Sets the http headers + kill wine server @@ -557011,55 +56744,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -557093,7 +56777,7 @@
Parameters:
Source:
@@ -557121,10 +56805,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -557133,7 +56813,7 @@
Returns:
-Downloader +Wine
@@ -557151,7 +56831,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -557159,7 +56839,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -557170,114 +56851,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -557313,7 +56933,7 @@

killSource:
@@ -557341,6 +56961,10 @@

kill + This + +
@@ -557349,7 +56973,7 @@
Returns:
-Wine +GogScript
@@ -557367,7 +56991,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -557375,8 +56999,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -557412,13 +57035,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -557428,7 +57051,7 @@
Parameters:
- The setupWizard to use + The download message @@ -557469,7 +57092,7 @@
Parameters:
Source:
@@ -557498,7 +57121,7 @@
Returns:
- This + The Downloader object
@@ -557509,7 +57132,7 @@
Returns:
-GogScript +Downloader
@@ -557527,7 +57150,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -557535,7 +57158,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -557571,13 +57194,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -557587,7 +57213,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -557628,7 +57254,7 @@
Parameters:
Source:
@@ -557657,7 +57283,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -557668,7 +57294,7 @@
Returns:
-Downloader +WineShortcut
@@ -557835,7 +57461,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -557843,7 +57469,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -557879,16 +57505,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -557898,7 +57521,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -557939,7 +57562,7 @@
Parameters:
Source:
@@ -557968,7 +57591,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -557979,7 +57602,7 @@
Returns:
-WineShortcut +Resource
@@ -558156,165 +57779,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -560649,7 +60113,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -560657,7 +60121,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -560693,7 +60157,7 @@

Parameters:
- trustlevel + trustLevel @@ -560709,7 +60173,7 @@
Parameters:
- + The trust level @@ -560750,7 +60214,7 @@
Parameters:
Source:
@@ -560779,7 +60243,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -560790,7 +60254,7 @@
Returns:
-QuickScript +WineShortcut
@@ -560808,7 +60272,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -560816,7 +60280,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -560852,7 +60316,7 @@

Parameters:
- trustLevel + trustlevel @@ -560868,7 +60332,7 @@
Parameters:
- The trust level + @@ -560909,7 +60373,7 @@
Parameters:
Source:
@@ -560938,7 +60402,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -560949,7 +60413,7 @@
Returns:
-WineShortcut +QuickScript
@@ -562274,13 +61738,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -562302,8 +61770,6 @@
Parameters:
Type - Attributes - @@ -562329,20 +61795,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -562383,7 +61839,7 @@
Parameters:
Source:
@@ -562411,6 +61867,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -562419,10 +61879,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -562599,17 +62056,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -562631,6 +62084,8 @@
Parameters:
Type + Attributes + @@ -562656,10 +62111,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -562700,7 +62165,7 @@
Parameters:
Source:
@@ -562728,10 +62193,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -562740,7 +62201,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -562774,7 +62238,7 @@
Returns:

default()

-
Verb to install atmlib
+
Setting to set the offscreen rendering mode
@@ -562837,7 +62301,7 @@

new defaultSource:
@@ -564649,7 +64113,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -564657,7 +64121,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -564709,7 +64173,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -564750,7 +64214,7 @@
Parameters:
Source:
@@ -564779,7 +64243,7 @@
Returns:
- The Resource object + The Downloader object
@@ -564790,7 +64254,7 @@
Returns:
-Resource +Downloader
@@ -564808,7 +64272,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -564816,7 +64280,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -564868,7 +64332,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -564909,7 +64373,7 @@
Parameters:
Source:
@@ -564938,7 +64402,7 @@
Returns:
- The Downloader object + The Resource object
@@ -564949,7 +64413,7 @@
Returns:
-Downloader +Resource
@@ -564967,7 +64431,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -564975,7 +64439,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -565019,7 +64483,7 @@

createSource:
@@ -565047,6 +64511,10 @@

createReturns:

+
+ The Wine object +
+
@@ -565055,7 +64523,7 @@
Returns:
-void +Wine
@@ -565073,7 +64541,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -565081,7 +64549,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -565125,7 +64593,7 @@

createSource:
@@ -565153,10 +64621,6 @@

createReturns:

-
- The Wine object -
-
@@ -565165,7 +64629,7 @@
Returns:
-Wine +void
@@ -565545,13 +65009,173 @@
Parameters:
- setupWizard + setupWizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -565602,7 +65226,7 @@
Parameters:
Source:
@@ -565631,7 +65255,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -565642,7 +65266,7 @@
Returns:
-String +boolean
@@ -565660,7 +65284,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -565668,7 +65292,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -565704,13 +65328,13 @@

Parameters:
- + + @@ -565761,7 +65385,7 @@
Parameters:
Source:
@@ -565790,7 +65414,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -565801,7 +65425,7 @@
Returns:
-QuickScript +boolean
@@ -565978,6 +65602,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -565561,7 +65185,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -565720,7 +65344,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -566092,7 +65875,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -566117,6 +65984,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -566128,13 +66017,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -566176,7 +66069,7 @@

fontDire
Source:
@@ -566205,7 +66098,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -566234,6 +66127,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -566393,7 +66396,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -566401,7 +66404,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -566445,7 +66448,7 @@

getSource:
@@ -566474,7 +66477,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -566503,7 +66506,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -566511,7 +66514,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -566522,6 +66525,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -566555,7 +66607,7 @@

getSource:
@@ -566584,7 +66636,7 @@
Returns:
- The content of downloaded file + This
@@ -566595,7 +66647,7 @@
Returns:
-String +GogScript
@@ -566613,7 +66665,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -566621,7 +66673,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -566632,6 +66684,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -566665,7 +66766,7 @@

getContai
Source:
@@ -566694,7 +66795,7 @@

Returns:
- The container name + This
@@ -566705,7 +66806,7 @@
Returns:
-string +GogScript
@@ -566723,7 +66824,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -566731,7 +66832,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -566767,13 +66868,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -566783,7 +66884,7 @@
Parameters:
- The setup file name + The http headers @@ -566824,7 +66925,7 @@
Parameters:
Source:
@@ -566853,7 +66954,7 @@
Returns:
- This + The Downloader object
@@ -566864,7 +66965,7 @@
Returns:
-GogScript +Downloader
@@ -566882,7 +66983,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -566890,7 +66991,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -566901,55 +67002,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -566983,7 +67035,7 @@
Parameters:
Source:
@@ -567012,7 +67064,7 @@
Returns:
- This + The json value
@@ -567023,7 +67075,7 @@
Returns:
-GogScript +any
@@ -567041,7 +67093,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -567049,7 +67101,7 @@

headers - Sets the http headers + kill wine server @@ -567060,55 +67112,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -567142,7 +67145,7 @@
Parameters:
Source:
@@ -567170,10 +67173,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -567182,7 +67181,7 @@
Returns:
-Downloader +Wine
@@ -567200,7 +67199,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -567208,7 +67207,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -567219,114 +67219,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -567362,7 +67301,7 @@

killSource:
@@ -567390,6 +67329,10 @@

kill + This + +
@@ -567398,7 +67341,7 @@
Returns:
-Wine +GogScript
@@ -567416,7 +67359,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -567424,8 +67367,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -567461,13 +67403,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -567477,7 +67419,7 @@
Parameters:
- The setupWizard to use + The download message @@ -567518,7 +67460,7 @@
Parameters:
Source:
@@ -567547,7 +67489,7 @@
Returns:
- This + The Downloader object
@@ -567558,7 +67500,7 @@
Returns:
-GogScript +Downloader
@@ -567576,7 +67518,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -567584,7 +67526,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -567620,13 +67562,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -567636,7 +67581,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -567677,7 +67622,7 @@
Parameters:
Source:
@@ -567706,7 +67651,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -567717,7 +67662,7 @@
Returns:
-Downloader +WineShortcut
@@ -567884,7 +67829,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -567892,7 +67837,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -567928,16 +67873,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -567947,7 +67889,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -567988,7 +67930,7 @@
Parameters:
Source:
@@ -568017,7 +67959,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -568028,7 +67970,7 @@
Returns:
-WineShortcut +Resource
@@ -568205,165 +68147,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -570698,7 +70481,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -570706,7 +70489,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -570742,7 +70525,7 @@

Parameters:
- trustlevel + trustLevel @@ -570758,7 +70541,7 @@
Parameters:
- + The trust level @@ -570799,7 +70582,7 @@
Parameters:
Source:
@@ -570828,7 +70611,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -570839,7 +70622,7 @@
Returns:
-QuickScript +WineShortcut
@@ -570857,7 +70640,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -570865,7 +70648,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -570901,7 +70684,7 @@

Parameters:
- trustLevel + trustlevel @@ -570917,7 +70700,7 @@
Parameters:
- The trust level + @@ -570958,7 +70741,7 @@
Parameters:
Source:
@@ -570987,7 +70770,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -570998,7 +70781,7 @@
Returns:
-WineShortcut +QuickScript
@@ -572323,13 +72106,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -572351,8 +72138,6 @@
Parameters:
Type - Attributes - @@ -572378,20 +72163,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -572432,7 +72207,7 @@
Parameters:
Source:
@@ -572460,6 +72235,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -572468,10 +72247,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -572648,17 +72424,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -572680,6 +72452,8 @@
Parameters:
Type + Attributes + @@ -572705,10 +72479,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -572749,7 +72533,7 @@
Parameters:
Source:
@@ -572777,10 +72561,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -572789,7 +72569,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -572823,7 +72606,7 @@
Returns:

default()

-
Verb to install amstream
+
Setting to set the render target lock mode
@@ -572886,7 +72669,7 @@

new defaultSource:
@@ -574698,7 +74481,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -574706,7 +74489,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -574758,7 +74541,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -574799,7 +74582,7 @@
Parameters:
Source:
@@ -574828,7 +74611,7 @@
Returns:
- The Resource object + The Downloader object
@@ -574839,7 +74622,7 @@
Returns:
-Resource +Downloader
@@ -574857,7 +74640,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -574865,7 +74648,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -574917,7 +74700,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -574958,7 +74741,7 @@
Parameters:
Source:
@@ -574987,7 +74770,7 @@
Returns:
- The Downloader object + The Resource object
@@ -574998,7 +74781,7 @@
Returns:
-Downloader +Resource
@@ -575016,7 +74799,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -575024,7 +74807,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -575068,7 +74851,7 @@

createSource:
@@ -575096,6 +74879,10 @@

createReturns:

+
+ The Wine object +
+
@@ -575104,7 +74891,7 @@
Returns:
-void +Wine
@@ -575122,7 +74909,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -575130,7 +74917,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -575174,7 +74961,7 @@

createSource:
@@ -575202,10 +74989,6 @@

createReturns:

-
- The Wine object -
-
@@ -575214,7 +74997,7 @@
Returns:
-Wine +void
@@ -575594,13 +75377,173 @@
Parameters:
- setupWizard + setupWizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -575651,7 +75594,7 @@
Parameters:
Source:
@@ -575680,7 +75623,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -575691,7 +75634,7 @@
Returns:
-String +boolean
@@ -575709,7 +75652,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -575717,7 +75660,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -575753,13 +75696,13 @@

Parameters:
- + + @@ -575810,7 +75753,7 @@
Parameters:
Source:
@@ -575839,7 +75782,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -575850,7 +75793,7 @@
Returns:
-QuickScript +boolean
@@ -576027,6 +75970,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -575610,7 +75553,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -575769,7 +75712,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -576141,7 +76243,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -576166,6 +76352,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -576177,13 +76385,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -576225,7 +76437,7 @@

fontDire
Source:
@@ -576254,7 +76466,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -576283,6 +76495,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -576442,7 +76764,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -576450,7 +76772,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -576494,7 +76816,7 @@

getSource:
@@ -576523,7 +76845,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -576552,7 +76874,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -576560,7 +76882,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -576571,6 +76893,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -576604,7 +76975,7 @@

getSource:
@@ -576633,7 +77004,7 @@
Returns:
- The content of downloaded file + This
@@ -576644,7 +77015,7 @@
Returns:
-String +GogScript
@@ -576662,7 +77033,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -576670,7 +77041,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -576681,6 +77052,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -576714,7 +77134,7 @@

getContai
Source:
@@ -576743,7 +77163,7 @@

Returns:
- The container name + This
@@ -576754,7 +77174,7 @@
Returns:
-string +GogScript
@@ -576772,7 +77192,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -576780,7 +77200,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -576816,13 +77236,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -576832,7 +77252,7 @@
Parameters:
- The setup file name + The http headers @@ -576873,7 +77293,7 @@
Parameters:
Source:
@@ -576902,7 +77322,7 @@
Returns:
- This + The Downloader object
@@ -576913,7 +77333,7 @@
Returns:
-GogScript +Downloader
@@ -576931,7 +77351,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -576939,7 +77359,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -576950,55 +77370,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -577032,7 +77403,7 @@
Parameters:
Source:
@@ -577061,7 +77432,7 @@
Returns:
- This + The json value
@@ -577072,7 +77443,7 @@
Returns:
-GogScript +any
@@ -577090,7 +77461,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -577098,7 +77469,7 @@

headers - Sets the http headers + kill wine server @@ -577109,55 +77480,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -577191,7 +77513,7 @@
Parameters:
Source:
@@ -577219,10 +77541,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -577231,7 +77549,7 @@
Returns:
-Downloader +Wine
@@ -577249,7 +77567,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -577257,7 +77575,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -577268,114 +77587,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -577411,7 +77669,7 @@

killSource:
@@ -577439,6 +77697,10 @@

kill + This + +
@@ -577447,7 +77709,7 @@
Returns:
-Wine +GogScript
@@ -577465,7 +77727,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -577473,8 +77735,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -577510,13 +77771,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -577526,7 +77787,7 @@
Parameters:
- The setupWizard to use + The download message @@ -577567,7 +77828,7 @@
Parameters:
Source:
@@ -577596,7 +77857,7 @@
Returns:
- This + The Downloader object
@@ -577607,7 +77868,7 @@
Returns:
-GogScript +Downloader
@@ -577625,7 +77886,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -577633,7 +77894,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -577669,13 +77930,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -577685,7 +77949,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -577726,7 +77990,7 @@
Parameters:
Source:
@@ -577755,7 +78019,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -577766,7 +78030,7 @@
Returns:
-Downloader +WineShortcut
@@ -577933,7 +78197,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -577941,7 +78205,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -577977,16 +78241,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -577996,7 +78257,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -578037,7 +78298,7 @@
Parameters:
Source:
@@ -578066,7 +78327,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -578077,7 +78338,7 @@
Returns:
-WineShortcut +Resource
@@ -578254,165 +78515,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -580747,7 +80849,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -580755,7 +80857,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -580791,7 +80893,7 @@

Parameters:
- trustlevel + trustLevel @@ -580807,7 +80909,7 @@
Parameters:
- + The trust level @@ -580848,7 +80950,7 @@
Parameters:
Source:
@@ -580877,7 +80979,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -580888,7 +80990,7 @@
Returns:
-QuickScript +WineShortcut
@@ -580906,7 +81008,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -580914,7 +81016,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -580950,7 +81052,7 @@

Parameters:
- trustLevel + trustlevel @@ -580966,7 +81068,7 @@
Parameters:
- The trust level + @@ -581007,7 +81109,7 @@
Parameters:
Source:
@@ -581036,7 +81138,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -581047,7 +81149,7 @@
Returns:
-WineShortcut +QuickScript
@@ -582372,13 +82474,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -582400,8 +82506,6 @@
Parameters:
Type - Attributes - @@ -582427,20 +82531,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -582481,7 +82575,7 @@
Parameters:
Source:
@@ -582509,6 +82603,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -582517,10 +82615,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -582697,17 +82792,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -582729,6 +82820,8 @@
Parameters:
Type + Attributes + @@ -582754,10 +82847,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -582798,7 +82901,7 @@
Parameters:
Source:
@@ -582826,10 +82929,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -582838,7 +82937,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -582872,7 +82974,7 @@
Returns:

default()

-
Verb to install adobeair
+
Setting to configure strict draw ordering
@@ -582935,7 +83037,7 @@

new defaultSource:
@@ -584747,7 +84849,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -584755,7 +84857,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -584807,7 +84909,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -584848,7 +84950,7 @@
Parameters:
Source:
@@ -584877,7 +84979,7 @@
Returns:
- The Resource object + The Downloader object
@@ -584888,7 +84990,7 @@
Returns:
-Resource +Downloader
@@ -584906,7 +85008,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -584914,7 +85016,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -584966,7 +85068,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -585007,7 +85109,7 @@
Parameters:
Source:
@@ -585036,7 +85138,7 @@
Returns:
- The Downloader object + The Resource object
@@ -585047,7 +85149,7 @@
Returns:
-Downloader +Resource
@@ -585065,7 +85167,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -585073,7 +85175,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -585117,7 +85219,7 @@

createSource:
@@ -585145,6 +85247,10 @@

createReturns:

+
+ The Wine object +
+
@@ -585153,7 +85259,7 @@
Returns:
-void +Wine
@@ -585171,7 +85277,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -585179,7 +85285,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -585223,7 +85329,7 @@

createSource:
@@ -585251,10 +85357,6 @@

createReturns:

-
- The Wine object -
-
@@ -585263,7 +85365,7 @@
Returns:
-Wine +void
@@ -585643,13 +85745,173 @@
Parameters:
- setupWizard + setupWizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -585700,7 +85962,7 @@
Parameters:
Source:
@@ -585729,7 +85991,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -585740,7 +86002,7 @@
Returns:
-String +boolean
@@ -585758,7 +86020,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -585766,7 +86028,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -585802,13 +86064,13 @@

Parameters:
- + + @@ -585859,7 +86121,7 @@
Parameters:
Source:
@@ -585888,7 +86150,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -585899,7 +86161,7 @@
Returns:
-QuickScript +boolean
@@ -586076,6 +86338,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -585659,7 +85921,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -585818,7 +86080,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -586190,7 +86611,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -586215,6 +86720,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -586226,13 +86753,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -586274,7 +86805,7 @@

fontDire
Source:
@@ -586303,7 +86834,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -586332,6 +86863,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -586491,7 +87132,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -586499,7 +87140,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -586543,7 +87184,7 @@

getSource:
@@ -586572,7 +87213,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -586601,7 +87242,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -586609,7 +87250,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -586620,6 +87261,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -586653,7 +87343,7 @@

getSource:
@@ -586682,7 +87372,7 @@
Returns:
- The content of downloaded file + This
@@ -586693,7 +87383,7 @@
Returns:
-String +GogScript
@@ -586711,7 +87401,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -586719,7 +87409,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -586730,6 +87420,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -586763,7 +87502,7 @@

getContai
Source:
@@ -586792,7 +87531,7 @@

Returns:
- The container name + This
@@ -586803,7 +87542,7 @@
Returns:
-string +GogScript
@@ -586821,7 +87560,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -586829,7 +87568,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -586865,13 +87604,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -586881,7 +87620,7 @@
Parameters:
- The setup file name + The http headers @@ -586922,7 +87661,7 @@
Parameters:
Source:
@@ -586951,7 +87690,7 @@
Returns:
- This + The Downloader object
@@ -586962,7 +87701,7 @@
Returns:
-GogScript +Downloader
@@ -586980,7 +87719,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -586988,7 +87727,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -586999,55 +87738,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -587081,7 +87771,7 @@
Parameters:
Source:
@@ -587110,7 +87800,7 @@
Returns:
- This + The json value
@@ -587121,7 +87811,7 @@
Returns:
-GogScript +any
@@ -587139,7 +87829,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -587147,7 +87837,7 @@

headers - Sets the http headers + kill wine server @@ -587158,55 +87848,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -587240,7 +87881,7 @@
Parameters:
Source:
@@ -587268,10 +87909,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -587280,7 +87917,7 @@
Returns:
-Downloader +Wine
@@ -587298,7 +87935,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -587306,7 +87943,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -587317,114 +87955,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -587460,7 +88037,7 @@

killSource:
@@ -587488,6 +88065,10 @@

kill + This + +
@@ -587496,7 +88077,7 @@
Returns:
-Wine +GogScript
@@ -587514,7 +88095,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -587522,8 +88103,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -587559,13 +88139,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -587575,7 +88155,7 @@
Parameters:
- The setupWizard to use + The download message @@ -587616,7 +88196,7 @@
Parameters:
Source:
@@ -587645,7 +88225,7 @@
Returns:
- This + The Downloader object
@@ -587656,7 +88236,7 @@
Returns:
-GogScript +Downloader
@@ -587674,7 +88254,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -587682,7 +88262,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -587718,13 +88298,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -587734,7 +88317,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -587775,7 +88358,7 @@
Parameters:
Source:
@@ -587804,7 +88387,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -587815,7 +88398,7 @@
Returns:
-Downloader +WineShortcut
@@ -587982,7 +88565,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -587990,7 +88573,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -588026,16 +88609,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -588045,7 +88625,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -588086,7 +88666,7 @@
Parameters:
Source:
@@ -588115,7 +88695,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -588126,7 +88706,7 @@
Returns:
-WineShortcut +Resource
@@ -588303,165 +88883,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -590796,7 +91217,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -590804,7 +91225,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -590840,7 +91261,7 @@

Parameters:
- trustlevel + trustLevel @@ -590856,7 +91277,7 @@
Parameters:
- + The trust level @@ -590897,7 +91318,7 @@
Parameters:
Source:
@@ -590926,7 +91347,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -590937,7 +91358,7 @@
Returns:
-QuickScript +WineShortcut
@@ -590955,7 +91376,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -590963,7 +91384,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -590999,7 +91420,7 @@

Parameters:
- trustLevel + trustlevel @@ -591015,7 +91436,7 @@
Parameters:
- The trust level + @@ -591056,7 +91477,7 @@
Parameters:
Source:
@@ -591085,7 +91506,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -591096,7 +91517,7 @@
Returns:
-WineShortcut +QuickScript
@@ -592421,13 +92842,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -592449,8 +92874,6 @@
Parameters:
Type - Attributes - @@ -592476,20 +92899,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -592530,7 +92943,7 @@
Parameters:
Source:
@@ -592558,6 +92971,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -592566,10 +92983,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -592746,17 +93160,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -592778,6 +93188,8 @@
Parameters:
Type + Attributes + @@ -592803,10 +93215,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -592847,7 +93269,7 @@
Parameters:
Source:
@@ -592875,10 +93297,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -592887,7 +93305,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -592921,7 +93342,7 @@
Returns:

default()

-
Verb to install Windows XP Service Pack 3
+
Setting to set the video memory size
@@ -592984,7 +93405,7 @@

new defaultSource:
@@ -594796,7 +95217,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -594804,7 +95225,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -594856,7 +95277,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -594897,7 +95318,7 @@
Parameters:
Source:
@@ -594926,7 +95347,7 @@
Returns:
- The Resource object + The Downloader object
@@ -594937,7 +95358,7 @@
Returns:
-Resource +Downloader
@@ -594955,7 +95376,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -594963,7 +95384,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -595015,7 +95436,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -595056,7 +95477,7 @@
Parameters:
Source:
@@ -595085,7 +95506,7 @@
Returns:
- The Downloader object + The Resource object
@@ -595096,7 +95517,7 @@
Returns:
-Downloader +Resource
@@ -595114,7 +95535,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -595122,7 +95543,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -595166,7 +95587,7 @@

createSource:
@@ -595194,6 +95615,10 @@

createReturns:

+
+ The Wine object +
+
@@ -595202,7 +95627,7 @@
Returns:
-void +Wine
@@ -595220,7 +95645,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -595228,7 +95653,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -595272,7 +95697,7 @@

createSource:
@@ -595300,10 +95725,6 @@

createReturns:

-
- The Wine object -
-
@@ -595312,7 +95733,7 @@
Returns:
-Wine +void
@@ -595692,13 +96113,173 @@
Parameters:
- setupWizard + setupWizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -595749,7 +96330,7 @@
Parameters:
Source:
@@ -595778,7 +96359,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -595789,7 +96370,7 @@
Returns:
-String +boolean
@@ -595807,7 +96388,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -595815,7 +96396,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -595851,13 +96432,13 @@

Parameters:
- + + @@ -595908,7 +96489,7 @@
Parameters:
Source:
@@ -595937,7 +96518,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -595948,7 +96529,7 @@
Returns:
-QuickScript +boolean
@@ -596125,6 +96706,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -595708,7 +96289,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -595867,7 +96448,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -596239,7 +96979,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -596264,6 +97088,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -596275,13 +97121,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -596323,7 +97173,7 @@

fontDire
Source:
@@ -596352,7 +97202,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -596381,6 +97231,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -596540,7 +97500,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -596548,7 +97508,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -596592,7 +97552,7 @@

getSource:
@@ -596621,7 +97581,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -596650,7 +97610,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -596658,7 +97618,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -596669,6 +97629,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -596702,7 +97711,7 @@

getSource:
@@ -596731,7 +97740,7 @@
Returns:
- The content of downloaded file + This
@@ -596742,7 +97751,7 @@
Returns:
-String +GogScript
@@ -596760,7 +97769,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -596768,7 +97777,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -596779,6 +97788,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -596812,7 +97870,7 @@

getContai
Source:
@@ -596841,7 +97899,7 @@

Returns:
- The container name + This
@@ -596852,7 +97910,7 @@
Returns:
-string +GogScript
@@ -596870,7 +97928,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -596878,7 +97936,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -596914,13 +97972,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -596930,7 +97988,7 @@
Parameters:
- The setup file name + The http headers @@ -596971,7 +98029,7 @@
Parameters:
Source:
@@ -597000,7 +98058,7 @@
Returns:
- This + The Downloader object
@@ -597011,7 +98069,7 @@
Returns:
-GogScript +Downloader
@@ -597029,7 +98087,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -597037,7 +98095,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -597048,55 +98106,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -597130,7 +98139,7 @@
Parameters:
Source:
@@ -597159,7 +98168,7 @@
Returns:
- This + The json value
@@ -597170,7 +98179,7 @@
Returns:
-GogScript +any
@@ -597188,7 +98197,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -597196,7 +98205,7 @@

headers - Sets the http headers + kill wine server @@ -597207,55 +98216,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -597289,7 +98249,7 @@
Parameters:
Source:
@@ -597317,10 +98277,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -597329,7 +98285,7 @@
Returns:
-Downloader +Wine
@@ -597347,7 +98303,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -597355,7 +98311,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -597366,114 +98323,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -597509,7 +98405,7 @@

killSource:
@@ -597537,6 +98433,10 @@

kill + This + +
@@ -597545,7 +98445,7 @@
Returns:
-Wine +GogScript
@@ -597563,7 +98463,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -597571,8 +98471,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -597608,13 +98507,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -597624,7 +98523,7 @@
Parameters:
- The setupWizard to use + The download message @@ -597665,7 +98564,7 @@
Parameters:
Source:
@@ -597694,7 +98593,7 @@
Returns:
- This + The Downloader object
@@ -597705,7 +98604,7 @@
Returns:
-GogScript +Downloader
@@ -597723,7 +98622,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -597731,7 +98630,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -597767,13 +98666,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -597783,7 +98685,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -597824,7 +98726,7 @@
Parameters:
Source:
@@ -597853,7 +98755,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -597864,7 +98766,7 @@
Returns:
-Downloader +WineShortcut
@@ -598031,7 +98933,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -598039,7 +98941,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -598075,16 +98977,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -598094,7 +98993,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -598135,7 +99034,7 @@
Parameters:
Source:
@@ -598164,7 +99063,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -598175,7 +99074,7 @@
Returns:
-WineShortcut +Resource
@@ -598352,165 +99251,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -600845,7 +101585,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -600853,7 +101593,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -600889,7 +101629,7 @@

Parameters:
- trustlevel + trustLevel @@ -600905,7 +101645,7 @@
Parameters:
- + The trust level @@ -600946,7 +101686,7 @@
Parameters:
Source:
@@ -600975,7 +101715,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -600986,7 +101726,7 @@
Returns:
-QuickScript +WineShortcut
@@ -601004,7 +101744,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -601012,7 +101752,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -601048,7 +101788,7 @@

Parameters:
- trustLevel + trustlevel @@ -601064,7 +101804,7 @@
Parameters:
- The trust level + @@ -601105,7 +101845,7 @@
Parameters:
Source:
@@ -601134,7 +101874,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -601145,7 +101885,7 @@
Returns:
-WineShortcut +QuickScript
@@ -602470,13 +103210,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -602498,8 +103242,6 @@
Parameters:
Type - Attributes - @@ -602525,20 +103267,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -602579,7 +103311,7 @@
Parameters:
Source:
@@ -602607,6 +103339,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -602615,10 +103351,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -602795,17 +103528,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -602827,6 +103556,8 @@
Parameters:
Type + Attributes + @@ -602852,10 +103583,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -602896,7 +103637,7 @@
Parameters:
Source:
@@ -602924,10 +103665,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -602936,7 +103673,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -602970,7 +103710,7 @@
Returns:

default()

-
Tool to configure Wine
+
Wine main prototype
@@ -603033,7 +103773,7 @@

new defaultSource:
@@ -604845,7 +105585,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -604853,7 +105593,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -604905,7 +105645,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -604946,7 +105686,7 @@
Parameters:
Source:
@@ -604975,7 +105715,7 @@
Returns:
- The Resource object + The Downloader object
@@ -604986,7 +105726,7 @@
Returns:
-Resource +Downloader
@@ -605004,7 +105744,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -605012,7 +105752,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -605064,7 +105804,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -605105,7 +105845,7 @@
Parameters:
Source:
@@ -605134,7 +105874,7 @@
Returns:
- The Downloader object + The Resource object
@@ -605145,7 +105885,7 @@
Returns:
-Downloader +Resource
@@ -605163,7 +105903,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -605171,7 +105911,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -605215,7 +105955,7 @@

createSource:
@@ -605243,6 +105983,10 @@

createReturns:

+
+ The Wine object +
+
@@ -605251,7 +105995,7 @@
Returns:
-void +Wine
@@ -605269,7 +106013,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -605277,7 +106021,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -605321,7 +106065,7 @@

createSource:
@@ -605349,10 +106093,6 @@

createReturns:

-
- The Wine object -
-
@@ -605361,7 +106101,7 @@
Returns:
-Wine +void
@@ -605741,13 +106481,173 @@
Parameters:
- setupWizard + setupWizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -605798,7 +106698,7 @@
Parameters:
Source:
@@ -605827,7 +106727,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -605838,7 +106738,7 @@
Returns:
-String +boolean
@@ -605856,7 +106756,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -605864,7 +106764,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -605900,13 +106800,13 @@

Parameters:
- + + @@ -605957,7 +106857,7 @@
Parameters:
Source:
@@ -605986,7 +106886,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -605997,7 +106897,7 @@
Returns:
-QuickScript +boolean
@@ -606174,6 +107074,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -605757,7 +106657,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -605916,7 +106816,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -606288,7 +107347,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -606313,6 +107456,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -606324,13 +107489,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -606372,7 +107541,7 @@

fontDire
Source:
@@ -606401,7 +107570,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -606430,6 +107599,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -606589,7 +107868,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -606597,7 +107876,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -606641,7 +107920,7 @@

getSource:
@@ -606670,7 +107949,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -606699,7 +107978,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -606707,7 +107986,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -606718,6 +107997,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -606751,7 +108079,7 @@

getSource:
@@ -606780,7 +108108,7 @@
Returns:
- The content of downloaded file + This
@@ -606791,7 +108119,7 @@
Returns:
-String +GogScript
@@ -606809,7 +108137,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -606817,7 +108145,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -606828,6 +108156,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -606861,7 +108238,7 @@

getContai
Source:
@@ -606890,7 +108267,7 @@

Returns:
- The container name + This
@@ -606901,7 +108278,7 @@
Returns:
-string +GogScript
@@ -606919,7 +108296,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -606927,7 +108304,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -606963,13 +108340,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -606979,7 +108356,7 @@
Parameters:
- The setup file name + The http headers @@ -607020,7 +108397,7 @@
Parameters:
Source:
@@ -607049,7 +108426,7 @@
Returns:
- This + The Downloader object
@@ -607060,7 +108437,7 @@
Returns:
-GogScript +Downloader
@@ -607078,7 +108455,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -607086,7 +108463,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -607097,55 +108474,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -607179,7 +108507,7 @@
Parameters:
Source:
@@ -607208,7 +108536,7 @@
Returns:
- This + The json value
@@ -607219,7 +108547,7 @@
Returns:
-GogScript +any
@@ -607237,7 +108565,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -607245,7 +108573,7 @@

headers - Sets the http headers + kill wine server @@ -607256,55 +108584,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -607338,7 +108617,7 @@
Parameters:
Source:
@@ -607366,10 +108645,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -607378,7 +108653,7 @@
Returns:
-Downloader +Wine
@@ -607396,7 +108671,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -607404,7 +108679,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -607415,114 +108691,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -607558,7 +108773,7 @@

killSource:
@@ -607586,6 +108801,10 @@

kill + This + +
@@ -607594,7 +108813,7 @@
Returns:
-Wine +GogScript
@@ -607612,7 +108831,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -607620,8 +108839,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -607657,13 +108875,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -607673,7 +108891,7 @@
Parameters:
- The setupWizard to use + The download message @@ -607714,7 +108932,7 @@
Parameters:
Source:
@@ -607743,7 +108961,7 @@
Returns:
- This + The Downloader object
@@ -607754,7 +108972,7 @@
Returns:
-GogScript +Downloader
@@ -607772,7 +108990,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -607780,7 +108998,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -607816,13 +109034,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -607832,7 +109053,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -607873,7 +109094,7 @@
Parameters:
Source:
@@ -607902,7 +109123,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -607913,7 +109134,7 @@
Returns:
-Downloader +WineShortcut
@@ -608080,7 +109301,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -608088,7 +109309,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -608124,16 +109345,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -608143,7 +109361,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -608184,7 +109402,7 @@
Parameters:
Source:
@@ -608213,7 +109431,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -608224,7 +109442,7 @@
Returns:
-WineShortcut +Resource
@@ -608401,165 +109619,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -610894,7 +111953,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -610902,7 +111961,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -610938,7 +111997,7 @@

Parameters:
- trustlevel + trustLevel @@ -610954,7 +112013,7 @@
Parameters:
- + The trust level @@ -610995,7 +112054,7 @@
Parameters:
Source:
@@ -611024,7 +112083,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -611035,7 +112094,7 @@
Returns:
-QuickScript +WineShortcut
@@ -611053,7 +112112,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -611061,7 +112120,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -611097,7 +112156,7 @@

Parameters:
- trustLevel + trustlevel @@ -611113,7 +112172,7 @@
Parameters:
- The trust level + @@ -611154,7 +112213,7 @@
Parameters:
Source:
@@ -611183,7 +112242,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -611194,7 +112253,7 @@
Returns:
-WineShortcut +QuickScript
@@ -612519,13 +113578,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -612547,8 +113610,6 @@
Parameters:
Type - Attributes - @@ -612574,20 +113635,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -612628,7 +113679,7 @@
Parameters:
Source:
@@ -612656,6 +113707,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -612664,10 +113719,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -612844,17 +113896,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -612876,6 +113924,8 @@
Parameters:
Type + Attributes + @@ -612901,10 +113951,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -612945,7 +114005,7 @@
Parameters:
Source:
@@ -612973,10 +114033,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -612985,7 +114041,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -613019,7 +114078,7 @@
Returns:

default()

-
Tool to kill running Wine processes
+
Wine engine
@@ -613082,7 +114141,7 @@

new defaultSource:
@@ -614894,7 +115953,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -614902,7 +115961,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -614954,7 +116013,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -614995,7 +116054,7 @@
Parameters:
Source:
@@ -615024,7 +116083,7 @@
Returns:
- The Resource object + The Downloader object
@@ -615035,7 +116094,7 @@
Returns:
-Resource +Downloader
@@ -615053,7 +116112,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -615061,7 +116120,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -615113,7 +116172,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -615154,7 +116213,7 @@
Parameters:
Source:
@@ -615183,7 +116242,7 @@
Returns:
- The Downloader object + The Resource object
@@ -615194,7 +116253,7 @@
Returns:
-Downloader +Resource
@@ -615212,7 +116271,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -615220,7 +116279,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -615264,7 +116323,7 @@

createSource:
@@ -615292,6 +116351,10 @@

createReturns:

+
+ The Wine object +
+
@@ -615300,7 +116363,7 @@
Returns:
-void +Wine
@@ -615318,7 +116381,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -615326,7 +116389,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -615370,7 +116433,7 @@

createSource:
@@ -615398,10 +116461,6 @@

createReturns:

-
- The Wine object -
-
@@ -615410,7 +116469,7 @@
Returns:
-Wine +void
@@ -615790,13 +116849,173 @@
Parameters:
- setupWizard + setupWizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -615847,7 +117066,7 @@
Parameters:
Source:
@@ -615876,7 +117095,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -615887,7 +117106,7 @@
Returns:
-String +boolean
@@ -615905,7 +117124,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -615913,7 +117132,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -615949,13 +117168,13 @@

Parameters:
- + + @@ -616006,7 +117225,7 @@
Parameters:
Source:
@@ -616035,7 +117254,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -616046,7 +117265,7 @@
Returns:
-QuickScript +boolean
@@ -616223,6 +117442,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -615806,7 +117025,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -615965,7 +117184,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -616337,7 +117715,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -616362,6 +117824,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -616373,13 +117857,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -616421,7 +117909,7 @@

fontDire
Source:
@@ -616450,7 +117938,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -616479,6 +117967,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -616638,7 +118236,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -616646,7 +118244,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -616690,7 +118288,7 @@

getSource:
@@ -616719,7 +118317,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -616748,7 +118346,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -616756,7 +118354,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -616767,6 +118365,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -616800,7 +118447,7 @@

getSource:
@@ -616829,7 +118476,7 @@
Returns:
- The content of downloaded file + This
@@ -616840,7 +118487,7 @@
Returns:
-String +GogScript
@@ -616858,7 +118505,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -616866,7 +118513,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -616877,6 +118524,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -616910,7 +118606,7 @@

getContai
Source:
@@ -616939,7 +118635,7 @@

Returns:
- The container name + This
@@ -616950,7 +118646,7 @@
Returns:
-string +GogScript
@@ -616968,7 +118664,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -616976,7 +118672,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -617012,13 +118708,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -617028,7 +118724,7 @@
Parameters:
- The setup file name + The http headers @@ -617069,7 +118765,7 @@
Parameters:
Source:
@@ -617098,7 +118794,7 @@
Returns:
- This + The Downloader object
@@ -617109,7 +118805,7 @@
Returns:
-GogScript +Downloader
@@ -617127,7 +118823,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -617135,7 +118831,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -617146,55 +118842,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -617228,7 +118875,7 @@
Parameters:
Source:
@@ -617257,7 +118904,7 @@
Returns:
- This + The json value
@@ -617268,7 +118915,7 @@
Returns:
-GogScript +any
@@ -617286,7 +118933,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -617294,7 +118941,7 @@

headers - Sets the http headers + kill wine server @@ -617305,55 +118952,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -617387,7 +118985,7 @@
Parameters:
Source:
@@ -617415,10 +119013,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -617427,7 +119021,7 @@
Returns:
-Downloader +Wine
@@ -617445,7 +119039,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -617453,7 +119047,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -617464,114 +119059,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -617607,7 +119141,7 @@

killSource:
@@ -617635,6 +119169,10 @@

kill + This + +
@@ -617643,7 +119181,7 @@
Returns:
-Wine +GogScript
@@ -617661,7 +119199,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -617669,8 +119207,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -617706,13 +119243,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -617722,7 +119259,7 @@
Parameters:
- The setupWizard to use + The download message @@ -617763,7 +119300,7 @@
Parameters:
Source:
@@ -617792,7 +119329,7 @@
Returns:
- This + The Downloader object
@@ -617803,7 +119340,7 @@
Returns:
-GogScript +Downloader
@@ -617821,7 +119358,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -617829,7 +119366,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -617865,13 +119402,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -617881,7 +119421,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -617922,7 +119462,7 @@
Parameters:
Source:
@@ -617951,7 +119491,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -617962,7 +119502,7 @@
Returns:
-Downloader +WineShortcut
@@ -618129,7 +119669,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -618137,7 +119677,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -618173,16 +119713,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -618192,7 +119729,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -618233,7 +119770,7 @@
Parameters:
Source:
@@ -618262,7 +119799,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -618273,7 +119810,7 @@
Returns:
-WineShortcut +Resource
@@ -618450,165 +119987,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -620943,7 +122321,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -620951,7 +122329,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -620987,7 +122365,7 @@

Parameters:
- trustlevel + trustLevel @@ -621003,7 +122381,7 @@
Parameters:
- + The trust level @@ -621044,7 +122422,7 @@
Parameters:
Source:
@@ -621073,7 +122451,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -621084,7 +122462,7 @@
Returns:
-QuickScript +WineShortcut
@@ -621102,7 +122480,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -621110,7 +122488,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -621146,7 +122524,7 @@

Parameters:
- trustLevel + trustlevel @@ -621162,7 +122540,7 @@
Parameters:
- The trust level + @@ -621203,7 +122581,7 @@
Parameters:
Source:
@@ -621232,7 +122610,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -621243,7 +122621,7 @@
Returns:
-WineShortcut +QuickScript
@@ -622568,13 +123946,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -622596,8 +123978,6 @@
Parameters:
Type - Attributes - @@ -622623,20 +124003,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -622677,7 +124047,7 @@
Parameters:
Source:
@@ -622705,6 +124075,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -622713,10 +124087,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -622893,17 +124264,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -622925,6 +124292,8 @@
Parameters:
Type + Attributes + @@ -622950,10 +124319,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -622994,7 +124373,7 @@
Parameters:
Source:
@@ -623022,10 +124401,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -623034,7 +124409,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -623068,7 +124446,7 @@
Returns:

default()

-
Tool to reboot Wine
+
Downloader class
@@ -623131,7 +124509,7 @@

new defaultSource:
@@ -624943,7 +126321,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -624951,7 +126329,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -625003,7 +126381,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -625044,7 +126422,7 @@
Parameters:
Source:
@@ -625073,7 +126451,7 @@
Returns:
- The Resource object + The Downloader object
@@ -625084,7 +126462,7 @@
Returns:
-Resource +Downloader
@@ -625102,7 +126480,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -625110,7 +126488,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -625162,7 +126540,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -625203,7 +126581,7 @@
Parameters:
Source:
@@ -625232,7 +126610,7 @@
Returns:
- The Downloader object + The Resource object
@@ -625243,7 +126621,7 @@
Returns:
-Downloader +Resource
@@ -625261,7 +126639,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -625269,7 +126647,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -625313,7 +126691,7 @@

createSource:
@@ -625341,6 +126719,10 @@

createReturns:

+
+ The Wine object +
+
@@ -625349,7 +126731,7 @@
Returns:
-void +Wine
@@ -625367,7 +126749,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -625375,7 +126757,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -625419,7 +126801,7 @@

createSource:
@@ -625447,10 +126829,6 @@

createReturns:

-
- The Wine object -
-
@@ -625459,7 +126837,7 @@
Returns:
-Wine +void
@@ -625839,13 +127217,173 @@
Parameters:
- setupWizard + setupWizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -625896,7 +127434,7 @@
Parameters:
Source:
@@ -625925,7 +127463,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -625936,7 +127474,7 @@
Returns:
-String +boolean
@@ -625954,7 +127492,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -625962,7 +127500,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -625998,13 +127536,13 @@

Parameters:
- + + @@ -626055,7 +127593,7 @@
Parameters:
Source:
@@ -626084,7 +127622,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -626095,7 +127633,7 @@
Returns:
-QuickScript +boolean
@@ -626272,6 +127810,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -625855,7 +127393,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -626014,7 +127552,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -626386,7 +128083,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -626411,6 +128192,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -626422,13 +128225,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -626470,7 +128277,7 @@

fontDire
Source:
@@ -626499,7 +128306,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -626528,6 +128335,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -626687,7 +128604,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -626695,7 +128612,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -626739,7 +128656,7 @@

getSource:
@@ -626768,7 +128685,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -626797,7 +128714,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -626805,7 +128722,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -626816,6 +128733,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -626849,7 +128815,7 @@

getSource:
@@ -626878,7 +128844,7 @@
Returns:
- The content of downloaded file + This
@@ -626889,7 +128855,7 @@
Returns:
-String +GogScript
@@ -626907,7 +128873,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -626915,7 +128881,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -626926,6 +128892,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -626959,7 +128974,7 @@

getContai
Source:
@@ -626988,7 +129003,7 @@

Returns:
- The container name + This
@@ -626999,7 +129014,7 @@
Returns:
-string +GogScript
@@ -627017,7 +129032,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -627025,7 +129040,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -627061,13 +129076,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -627077,7 +129092,7 @@
Parameters:
- The setup file name + The http headers @@ -627118,7 +129133,7 @@
Parameters:
Source:
@@ -627147,7 +129162,7 @@
Returns:
- This + The Downloader object
@@ -627158,7 +129173,7 @@
Returns:
-GogScript +Downloader
@@ -627176,7 +129191,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -627184,7 +129199,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -627195,55 +129210,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -627277,7 +129243,7 @@
Parameters:
Source:
@@ -627306,7 +129272,7 @@
Returns:
- This + The json value
@@ -627317,7 +129283,7 @@
Returns:
-GogScript +any
@@ -627335,7 +129301,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -627343,7 +129309,7 @@

headers - Sets the http headers + kill wine server @@ -627354,55 +129320,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -627436,7 +129353,7 @@
Parameters:
Source:
@@ -627464,10 +129381,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -627476,7 +129389,7 @@
Returns:
-Downloader +Wine
@@ -627494,7 +129407,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -627502,7 +129415,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -627513,114 +129427,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -627656,7 +129509,7 @@

killSource:
@@ -627684,6 +129537,10 @@

kill + This + +
@@ -627692,7 +129549,7 @@
Returns:
-Wine +GogScript
@@ -627710,7 +129567,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -627718,8 +129575,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -627755,13 +129611,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -627771,7 +129627,7 @@
Parameters:
- The setupWizard to use + The download message @@ -627812,7 +129668,7 @@
Parameters:
Source:
@@ -627841,7 +129697,7 @@
Returns:
- This + The Downloader object
@@ -627852,7 +129708,7 @@
Returns:
-GogScript +Downloader
@@ -627870,7 +129726,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -627878,7 +129734,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -627914,13 +129770,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -627930,7 +129789,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -627971,7 +129830,7 @@
Parameters:
Source:
@@ -628000,7 +129859,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -628011,7 +129870,7 @@
Returns:
-Downloader +WineShortcut
@@ -628178,7 +130037,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -628186,7 +130045,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -628222,16 +130081,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -628241,7 +130097,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -628282,7 +130138,7 @@
Parameters:
Source:
@@ -628311,7 +130167,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -628322,7 +130178,7 @@
Returns:
-WineShortcut +Resource
@@ -628499,165 +130355,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -630992,7 +132689,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -631000,7 +132697,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -631036,7 +132733,7 @@

Parameters:
- trustlevel + trustLevel @@ -631052,7 +132749,7 @@
Parameters:
- + The trust level @@ -631093,7 +132790,7 @@
Parameters:
Source:
@@ -631122,7 +132819,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -631133,7 +132830,7 @@
Returns:
-QuickScript +WineShortcut
@@ -631151,7 +132848,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -631159,7 +132856,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -631195,7 +132892,7 @@

Parameters:
- trustLevel + trustlevel @@ -631211,7 +132908,7 @@
Parameters:
- The trust level + @@ -631252,7 +132949,7 @@
Parameters:
Source:
@@ -631281,7 +132978,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -631292,7 +132989,7 @@
Returns:
-WineShortcut +QuickScript
@@ -632617,13 +134314,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -632645,8 +134346,6 @@
Parameters:
Type - Attributes - @@ -632672,20 +134371,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -632726,7 +134415,7 @@
Parameters:
Source:
@@ -632754,6 +134443,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -632762,10 +134455,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -632942,17 +134632,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -632974,6 +134660,8 @@
Parameters:
Type + Attributes + @@ -632999,10 +134687,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -633043,7 +134741,7 @@
Parameters:
Source:
@@ -633071,10 +134769,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -633083,7 +134777,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -633117,7 +134814,7 @@
Returns:

default()

-
Tool to repair a Wine prefix
+
Resource class
@@ -633180,7 +134877,7 @@

new defaultSource:
@@ -634992,7 +136689,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -635000,7 +136697,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -635052,7 +136749,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -635093,7 +136790,7 @@
Parameters:
Source:
@@ -635122,7 +136819,7 @@
Returns:
- The Resource object + The Downloader object
@@ -635133,7 +136830,7 @@
Returns:
-Resource +Downloader
@@ -635151,7 +136848,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -635159,7 +136856,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -635211,7 +136908,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -635252,7 +136949,7 @@
Parameters:
Source:
@@ -635281,7 +136978,7 @@
Returns:
- The Downloader object + The Resource object
@@ -635292,7 +136989,7 @@
Returns:
-Downloader +Resource
@@ -635310,7 +137007,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -635318,7 +137015,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -635362,7 +137059,7 @@

createSource:
@@ -635390,6 +137087,10 @@

createReturns:

+
+ The Wine object +
+
@@ -635398,7 +137099,7 @@
Returns:
-void +Wine
@@ -635416,7 +137117,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -635424,7 +137125,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -635468,7 +137169,7 @@

createSource:
@@ -635496,10 +137197,6 @@

createReturns:

-
- The Wine object -
-
@@ -635508,7 +137205,7 @@
Returns:
-Wine +void
@@ -635888,13 +137585,173 @@
Parameters:
- setupWizard + setupWizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -635945,7 +137802,7 @@
Parameters:
Source:
@@ -635974,7 +137831,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -635985,7 +137842,7 @@
Returns:
-String +boolean
@@ -636003,7 +137860,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -636011,7 +137868,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -636047,13 +137904,13 @@

Parameters:
- + + @@ -636104,7 +137961,7 @@
Parameters:
Source:
@@ -636133,7 +137990,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -636144,7 +138001,7 @@
Returns:
-QuickScript +boolean
@@ -636321,6 +138178,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -635904,7 +137761,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -636063,7 +137920,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -636435,7 +138451,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -636460,6 +138560,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -636471,13 +138593,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -636519,7 +138645,7 @@

fontDire
Source:
@@ -636548,7 +138674,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -636577,6 +138703,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -636736,7 +138972,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -636744,7 +138980,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -636788,7 +139024,7 @@

getSource:
@@ -636817,7 +139053,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -636846,7 +139082,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -636854,7 +139090,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -636865,6 +139101,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -636898,7 +139183,7 @@

getSource:
@@ -636927,7 +139212,7 @@
Returns:
- The content of downloaded file + This
@@ -636938,7 +139223,7 @@
Returns:
-String +GogScript
@@ -636956,7 +139241,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -636964,7 +139249,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -636975,6 +139260,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -637008,7 +139342,7 @@

getContai
Source:
@@ -637037,7 +139371,7 @@

Returns:
- The container name + This
@@ -637048,7 +139382,7 @@
Returns:
-string +GogScript
@@ -637066,7 +139400,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -637074,7 +139408,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -637110,13 +139444,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -637126,7 +139460,7 @@
Parameters:
- The setup file name + The http headers @@ -637167,7 +139501,7 @@
Parameters:
Source:
@@ -637196,7 +139530,7 @@
Returns:
- This + The Downloader object
@@ -637207,7 +139541,7 @@
Returns:
-GogScript +Downloader
@@ -637225,7 +139559,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -637233,7 +139567,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -637244,55 +139578,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -637326,7 +139611,7 @@
Parameters:
Source:
@@ -637355,7 +139640,7 @@
Returns:
- This + The json value
@@ -637366,7 +139651,7 @@
Returns:
-GogScript +any
@@ -637384,7 +139669,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -637392,7 +139677,7 @@

headers - Sets the http headers + kill wine server @@ -637403,55 +139688,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -637485,7 +139721,7 @@
Parameters:
Source:
@@ -637513,10 +139749,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -637525,7 +139757,7 @@
Returns:
-Downloader +Wine
@@ -637543,7 +139775,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -637551,7 +139783,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -637562,114 +139795,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -637705,7 +139877,7 @@

killSource:
@@ -637733,6 +139905,10 @@

kill + This + +
@@ -637741,7 +139917,7 @@
Returns:
-Wine +GogScript
@@ -637759,7 +139935,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -637767,8 +139943,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -637804,13 +139979,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -637820,7 +139995,7 @@
Parameters:
- The setupWizard to use + The download message @@ -637861,7 +140036,7 @@
Parameters:
Source:
@@ -637890,7 +140065,7 @@
Returns:
- This + The Downloader object
@@ -637901,7 +140076,7 @@
Returns:
-GogScript +Downloader
@@ -637919,7 +140094,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -637927,7 +140102,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -637963,13 +140138,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -637979,7 +140157,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -638020,7 +140198,7 @@
Parameters:
Source:
@@ -638049,7 +140227,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -638060,7 +140238,7 @@
Returns:
-Downloader +WineShortcut
@@ -638227,7 +140405,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -638235,7 +140413,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -638271,16 +140449,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -638290,7 +140465,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -638331,7 +140506,7 @@
Parameters:
Source:
@@ -638360,7 +140535,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -638371,7 +140546,7 @@
Returns:
-WineShortcut +Resource
@@ -638548,165 +140723,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -641041,7 +143057,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -641049,7 +143065,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -641085,7 +143101,7 @@

Parameters:
- trustlevel + trustLevel @@ -641101,7 +143117,7 @@
Parameters:
- + The trust level @@ -641142,7 +143158,7 @@
Parameters:
Source:
@@ -641171,7 +143187,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -641182,7 +143198,7 @@
Returns:
-QuickScript +WineShortcut
@@ -641200,7 +143216,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -641208,7 +143224,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -641244,7 +143260,7 @@

Parameters:
- trustLevel + trustlevel @@ -641260,7 +143276,7 @@
Parameters:
- The trust level + @@ -641301,7 +143317,7 @@
Parameters:
Source:
@@ -641330,7 +143346,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -641341,7 +143357,7 @@
Returns:
-WineShortcut +QuickScript
@@ -642666,13 +144682,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -642694,8 +144714,6 @@
Parameters:
Type - Attributes - @@ -642721,20 +144739,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -642775,7 +144783,7 @@
Parameters:
Source:
@@ -642803,6 +144811,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -642811,10 +144823,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -642991,17 +145000,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -643023,6 +145028,8 @@
Parameters:
Type + Attributes + @@ -643048,10 +145055,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -643092,7 +145109,7 @@
Parameters:
Source:
@@ -643120,10 +145137,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -643132,7 +145145,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -643166,7 +145182,7 @@
Returns:

default()

-
Tool to open the Wine registry editor
+
AppResource class
@@ -643229,7 +145245,7 @@

new defaultSource:
@@ -645041,7 +147057,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -645049,7 +147065,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -645101,7 +147117,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -645142,7 +147158,7 @@
Parameters:
Source:
@@ -645171,7 +147187,7 @@
Returns:
- The Resource object + The Downloader object
@@ -645182,7 +147198,7 @@
Returns:
-Resource +Downloader
@@ -645200,7 +147216,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -645208,7 +147224,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -645260,7 +147276,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -645301,7 +147317,7 @@
Parameters:
Source:
@@ -645330,7 +147346,7 @@
Returns:
- The Downloader object + The Resource object
@@ -645341,7 +147357,7 @@
Returns:
-Downloader +Resource
@@ -645359,7 +147375,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -645367,7 +147383,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -645411,7 +147427,7 @@

createSource:
@@ -645439,6 +147455,10 @@

createReturns:

+
+ The Wine object +
+
@@ -645447,7 +147467,7 @@
Returns:
-void +Wine
@@ -645465,7 +147485,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -645473,7 +147493,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -645517,7 +147537,7 @@

createSource:
@@ -645545,10 +147565,6 @@

createReturns:

-
- The Wine object -
-
@@ -645557,7 +147573,7 @@
Returns:
-Wine +void
@@ -645937,13 +147953,173 @@
Parameters:
- setupWizard + setupWizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -645994,7 +148170,7 @@
Parameters:
Source:
@@ -646023,7 +148199,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -646034,7 +148210,7 @@
Returns:
-String +boolean
@@ -646052,7 +148228,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -646060,7 +148236,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -646096,13 +148272,13 @@

Parameters:
- + + @@ -646153,7 +148329,7 @@
Parameters:
Source:
@@ -646182,7 +148358,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -646193,7 +148369,7 @@
Returns:
-QuickScript +boolean
@@ -646370,6 +148546,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -645953,7 +148129,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -646112,7 +148288,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -646484,7 +148819,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -646509,6 +148928,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -646520,13 +148961,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -646568,7 +149013,7 @@

fontDire
Source:
@@ -646597,7 +149042,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -646626,6 +149071,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -646785,7 +149340,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -646793,7 +149348,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -646837,7 +149392,7 @@

getSource:
@@ -646866,7 +149421,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -646895,7 +149450,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -646903,7 +149458,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -646914,6 +149469,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -646947,7 +149551,7 @@

getSource:
@@ -646976,7 +149580,7 @@
Returns:
- The content of downloaded file + This
@@ -646987,7 +149591,7 @@
Returns:
-String +GogScript
@@ -647005,7 +149609,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -647013,7 +149617,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -647024,6 +149628,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -647057,7 +149710,7 @@

getContai
Source:
@@ -647086,7 +149739,7 @@

Returns:
- The container name + This
@@ -647097,7 +149750,7 @@
Returns:
-string +GogScript
@@ -647115,7 +149768,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -647123,7 +149776,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -647159,13 +149812,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -647175,7 +149828,7 @@
Parameters:
- The setup file name + The http headers @@ -647216,7 +149869,7 @@
Parameters:
Source:
@@ -647245,7 +149898,7 @@
Returns:
- This + The Downloader object
@@ -647256,7 +149909,7 @@
Returns:
-GogScript +Downloader
@@ -647274,7 +149927,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -647282,7 +149935,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -647293,55 +149946,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -647375,7 +149979,7 @@
Parameters:
Source:
@@ -647404,7 +150008,7 @@
Returns:
- This + The json value
@@ -647415,7 +150019,7 @@
Returns:
-GogScript +any
@@ -647433,7 +150037,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -647441,7 +150045,7 @@

headers - Sets the http headers + kill wine server @@ -647452,55 +150056,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -647534,7 +150089,7 @@
Parameters:
Source:
@@ -647562,10 +150117,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -647574,7 +150125,7 @@
Returns:
-Downloader +Wine
@@ -647592,7 +150143,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -647600,7 +150151,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -647611,114 +150163,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -647754,7 +150245,7 @@

killSource:
@@ -647782,6 +150273,10 @@

kill + This + +
@@ -647790,7 +150285,7 @@
Returns:
-Wine +GogScript
@@ -647808,7 +150303,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -647816,8 +150311,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -647853,13 +150347,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -647869,7 +150363,7 @@
Parameters:
- The setupWizard to use + The download message @@ -647910,7 +150404,7 @@
Parameters:
Source:
@@ -647939,7 +150433,7 @@
Returns:
- This + The Downloader object
@@ -647950,7 +150444,7 @@
Returns:
-GogScript +Downloader
@@ -647968,7 +150462,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -647976,7 +150470,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -648012,13 +150506,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -648028,7 +150525,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -648069,7 +150566,7 @@
Parameters:
Source:
@@ -648098,7 +150595,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -648109,7 +150606,7 @@
Returns:
-Downloader +WineShortcut
@@ -648276,7 +150773,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -648284,7 +150781,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -648320,16 +150817,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -648339,7 +150833,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -648380,7 +150874,7 @@
Parameters:
Source:
@@ -648409,7 +150903,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -648420,7 +150914,7 @@
Returns:
-WineShortcut +Resource
@@ -648597,165 +151091,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -651090,7 +153425,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -651098,7 +153433,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -651134,7 +153469,7 @@

Parameters:
- trustlevel + trustLevel @@ -651150,7 +153485,7 @@
Parameters:
- + The trust level @@ -651191,7 +153526,7 @@
Parameters:
Source:
@@ -651220,7 +153555,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -651231,7 +153566,7 @@
Returns:
-QuickScript +WineShortcut
@@ -651249,7 +153584,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -651257,7 +153592,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -651293,7 +153628,7 @@

Parameters:
- trustLevel + trustlevel @@ -651309,7 +153644,7 @@
Parameters:
- The trust level + @@ -651350,7 +153685,7 @@
Parameters:
Source:
@@ -651379,7 +153714,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -651390,7 +153725,7 @@
Returns:
-WineShortcut +QuickScript
@@ -652715,13 +155050,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -652743,8 +155082,6 @@
Parameters:
Type - Attributes - @@ -652770,20 +155107,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -652824,7 +155151,7 @@
Parameters:
Source:
@@ -652852,6 +155179,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -652860,10 +155191,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -653040,17 +155368,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -653072,6 +155396,8 @@
Parameters:
Type + Attributes + @@ -653097,10 +155423,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -653141,7 +155477,7 @@
Parameters:
Source:
@@ -653169,10 +155505,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -653181,7 +155513,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -653215,7 +155550,7 @@
Returns:

default()

-
Tool to open the Wine task manager
+
WineShortcut prototype
@@ -653278,7 +155613,7 @@

new defaultSource:
@@ -655090,7 +157425,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -655098,7 +157433,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -655150,7 +157485,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -655191,7 +157526,7 @@
Parameters:
Source:
@@ -655220,7 +157555,7 @@
Returns:
- The Resource object + The Downloader object
@@ -655231,7 +157566,7 @@
Returns:
-Resource +Downloader
@@ -655249,7 +157584,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -655257,7 +157592,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -655309,7 +157644,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -655350,7 +157685,7 @@
Parameters:
Source:
@@ -655379,7 +157714,7 @@
Returns:
- The Downloader object + The Resource object
@@ -655390,7 +157725,7 @@
Returns:
-Downloader +Resource
@@ -655408,7 +157743,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -655416,7 +157751,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -655460,7 +157795,7 @@

createSource:
@@ -655488,6 +157823,10 @@

createReturns:

+
+ The Wine object +
+
@@ -655496,7 +157835,7 @@
Returns:
-void +Wine
@@ -655514,7 +157853,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -655522,7 +157861,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -655566,7 +157905,7 @@

createSource:
@@ -655594,10 +157933,6 @@

createReturns:

-
- The Wine object -
-
@@ -655606,7 +157941,7 @@
Returns:
-Wine +void
@@ -655986,13 +158321,173 @@
Parameters:
- setupWizard + setupWizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -656043,7 +158538,7 @@
Parameters:
Source:
@@ -656072,7 +158567,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -656083,7 +158578,7 @@
Returns:
-String +boolean
@@ -656101,7 +158596,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -656109,7 +158604,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -656145,13 +158640,13 @@

Parameters:
- + + @@ -656202,7 +158697,7 @@
Parameters:
Source:
@@ -656231,7 +158726,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -656242,7 +158737,7 @@
Returns:
-QuickScript +boolean
@@ -656419,6 +158914,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -656002,7 +158497,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -656161,7 +158656,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -656533,7 +159187,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -656558,6 +159296,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -656569,13 +159329,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -656617,7 +159381,7 @@

fontDire
Source:
@@ -656646,7 +159410,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -656675,6 +159439,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -656834,7 +159708,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -656842,7 +159716,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -656886,7 +159760,7 @@

getSource:
@@ -656915,7 +159789,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -656944,7 +159818,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -656952,7 +159826,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -656963,6 +159837,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -656996,7 +159919,7 @@

getSource:
@@ -657025,7 +159948,7 @@
Returns:
- The content of downloaded file + This
@@ -657036,7 +159959,7 @@
Returns:
-String +GogScript
@@ -657054,7 +159977,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -657062,7 +159985,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -657073,6 +159996,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -657106,7 +160078,7 @@

getContai
Source:
@@ -657135,7 +160107,7 @@

Returns:
- The container name + This
@@ -657146,7 +160118,7 @@
Returns:
-string +GogScript
@@ -657164,7 +160136,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -657172,7 +160144,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -657208,13 +160180,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -657224,7 +160196,7 @@
Parameters:
- The setup file name + The http headers @@ -657265,7 +160237,7 @@
Parameters:
Source:
@@ -657294,7 +160266,7 @@
Returns:
- This + The Downloader object
@@ -657305,7 +160277,7 @@
Returns:
-GogScript +Downloader
@@ -657323,7 +160295,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -657331,7 +160303,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -657342,55 +160314,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -657424,7 +160347,7 @@
Parameters:
Source:
@@ -657453,7 +160376,7 @@
Returns:
- This + The json value
@@ -657464,7 +160387,7 @@
Returns:
-GogScript +any
@@ -657482,7 +160405,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -657490,7 +160413,7 @@

headers - Sets the http headers + kill wine server @@ -657501,55 +160424,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -657583,7 +160457,7 @@
Parameters:
Source:
@@ -657611,10 +160485,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -657623,7 +160493,7 @@
Returns:
-Downloader +Wine
@@ -657641,7 +160511,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -657649,7 +160519,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -657660,114 +160531,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -657803,7 +160613,7 @@

killSource:
@@ -657831,6 +160641,10 @@

kill + This + +
@@ -657839,7 +160653,7 @@
Returns:
-Wine +GogScript
@@ -657857,7 +160671,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -657865,8 +160679,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -657902,13 +160715,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -657918,7 +160731,7 @@
Parameters:
- The setupWizard to use + The download message @@ -657959,7 +160772,7 @@
Parameters:
Source:
@@ -657988,7 +160801,7 @@
Returns:
- This + The Downloader object
@@ -657999,7 +160812,7 @@
Returns:
-GogScript +Downloader
@@ -658017,7 +160830,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -658025,7 +160838,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -658061,13 +160874,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -658077,7 +160893,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -658118,7 +160934,7 @@
Parameters:
Source:
@@ -658147,7 +160963,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -658158,7 +160974,7 @@
Returns:
-Downloader +WineShortcut
@@ -658325,7 +161141,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -658333,7 +161149,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -658369,16 +161185,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -658388,7 +161201,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -658429,7 +161242,7 @@
Parameters:
Source:
@@ -658458,7 +161271,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -658469,7 +161282,7 @@
Returns:
-WineShortcut +Resource
@@ -658646,165 +161459,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -661139,7 +163793,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -661147,7 +163801,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -661183,7 +163837,7 @@

Parameters:
- trustlevel + trustLevel @@ -661199,7 +163853,7 @@
Parameters:
- + The trust level @@ -661240,7 +163894,7 @@
Parameters:
Source:
@@ -661269,7 +163923,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -661280,7 +163934,7 @@
Returns:
-QuickScript +WineShortcut
@@ -661298,7 +163952,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -661306,7 +163960,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -661342,7 +163996,7 @@

Parameters:
- trustLevel + trustlevel @@ -661358,7 +164012,7 @@
Parameters:
- The trust level + @@ -661399,7 +164053,7 @@
Parameters:
Source:
@@ -661428,7 +164082,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -661439,7 +164093,7 @@
Returns:
-WineShortcut +QuickScript
@@ -662764,13 +165418,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -662792,8 +165450,6 @@
Parameters:
Type - Attributes - @@ -662819,20 +165475,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -662873,7 +165519,7 @@
Parameters:
Source:
@@ -662901,6 +165547,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -662909,10 +165559,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -663089,17 +165736,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -663121,6 +165764,8 @@
Parameters:
Type + Attributes + @@ -663146,10 +165791,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -663190,7 +165845,7 @@
Parameters:
Source:
@@ -663218,10 +165873,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -663230,7 +165881,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -663264,7 +165918,7 @@
Returns:

default()

-
Tool to open a terminal in a Wine prefix
+
A "plain" script installer that is fully configurable.
@@ -663327,7 +165981,7 @@

new defaultSource:
@@ -665139,7 +167793,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -665147,7 +167801,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -665199,7 +167853,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -665240,7 +167894,7 @@
Parameters:
Source:
@@ -665269,7 +167923,7 @@
Returns:
- The Resource object + The Downloader object
@@ -665280,7 +167934,7 @@
Returns:
-Resource +Downloader
@@ -665298,7 +167952,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -665306,7 +167960,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -665358,7 +168012,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -665399,7 +168053,7 @@
Parameters:
Source:
@@ -665428,7 +168082,7 @@
Returns:
- The Downloader object + The Resource object
@@ -665439,7 +168093,7 @@
Returns:
-Downloader +Resource
@@ -665457,7 +168111,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -665465,7 +168119,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -665509,7 +168163,7 @@

createSource:
@@ -665537,6 +168191,10 @@

createReturns:

+
+ The Wine object +
+
@@ -665545,7 +168203,7 @@
Returns:
-void +Wine
@@ -665563,7 +168221,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -665571,7 +168229,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -665615,7 +168273,7 @@

createSource:
@@ -665643,10 +168301,6 @@

createReturns:

-
- The Wine object -
-
@@ -665655,7 +168309,7 @@
Returns:
-Wine +void
@@ -666035,13 +168689,173 @@
Parameters:
- setupWizard + setupWizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -666092,7 +168906,7 @@
Parameters:
Source:
@@ -666121,7 +168935,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -666132,7 +168946,7 @@
Returns:
-String +boolean
@@ -666150,7 +168964,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -666158,7 +168972,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -666194,13 +169008,13 @@

Parameters:
- + + @@ -666251,7 +169065,7 @@
Parameters:
Source:
@@ -666280,7 +169094,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -666291,7 +169105,7 @@
Returns:
-QuickScript +boolean
@@ -666468,6 +169282,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -666051,7 +168865,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -666210,7 +169024,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -666582,7 +169555,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -666607,6 +169664,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -666618,13 +169697,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -666666,7 +169749,7 @@

fontDire
Source:
@@ -666695,7 +169778,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -666724,6 +169807,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -666883,7 +170076,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -666891,7 +170084,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -666935,7 +170128,7 @@

getSource:
@@ -666964,7 +170157,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -666993,7 +170186,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -667001,7 +170194,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -667012,6 +170205,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -667045,7 +170287,7 @@

getSource:
@@ -667074,7 +170316,7 @@
Returns:
- The content of downloaded file + This
@@ -667085,7 +170327,7 @@
Returns:
-String +GogScript
@@ -667103,7 +170345,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -667111,7 +170353,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -667122,6 +170364,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -667155,7 +170446,7 @@

getContai
Source:
@@ -667184,7 +170475,7 @@

Returns:
- The container name + This
@@ -667195,7 +170486,7 @@
Returns:
-string +GogScript
@@ -667213,7 +170504,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -667221,7 +170512,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -667257,13 +170548,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -667273,7 +170564,7 @@
Parameters:
- The setup file name + The http headers @@ -667314,7 +170605,7 @@
Parameters:
Source:
@@ -667343,7 +170634,7 @@
Returns:
- This + The Downloader object
@@ -667354,7 +170645,7 @@
Returns:
-GogScript +Downloader
@@ -667372,7 +170663,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -667380,7 +170671,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -667391,55 +170682,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -667473,7 +170715,7 @@
Parameters:
Source:
@@ -667502,7 +170744,7 @@
Returns:
- This + The json value
@@ -667513,7 +170755,7 @@
Returns:
-GogScript +any
@@ -667531,7 +170773,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -667539,7 +170781,7 @@

headers - Sets the http headers + kill wine server @@ -667550,55 +170792,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -667632,7 +170825,7 @@
Parameters:
Source:
@@ -667660,10 +170853,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -667672,7 +170861,7 @@
Returns:
-Downloader +Wine
@@ -667690,7 +170879,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -667698,7 +170887,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -667709,114 +170899,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -667852,7 +170981,7 @@

killSource:
@@ -667880,6 +171009,10 @@

kill + This + +
@@ -667888,7 +171021,7 @@
Returns:
-Wine +GogScript
@@ -667906,7 +171039,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -667914,8 +171047,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -667951,13 +171083,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -667967,7 +171099,7 @@
Parameters:
- The setupWizard to use + The download message @@ -668008,7 +171140,7 @@
Parameters:
Source:
@@ -668037,7 +171169,7 @@
Returns:
- This + The Downloader object
@@ -668048,7 +171180,7 @@
Returns:
-GogScript +Downloader
@@ -668066,7 +171198,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -668074,7 +171206,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -668110,13 +171242,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -668126,7 +171261,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -668167,7 +171302,7 @@
Parameters:
Source:
@@ -668196,7 +171331,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -668207,7 +171342,7 @@
Returns:
-Downloader +WineShortcut
@@ -668374,7 +171509,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -668382,7 +171517,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -668418,16 +171553,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -668437,7 +171569,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -668478,7 +171610,7 @@
Parameters:
Source:
@@ -668507,7 +171639,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -668518,7 +171650,7 @@
Returns:
-WineShortcut +Resource
@@ -668695,165 +171827,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -671188,7 +174161,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -671196,7 +174169,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -671232,7 +174205,7 @@

Parameters:
- trustlevel + trustLevel @@ -671248,7 +174221,7 @@
Parameters:
- + The trust level @@ -671289,7 +174262,7 @@
Parameters:
Source:
@@ -671318,7 +174291,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -671329,7 +174302,7 @@
Returns:
-QuickScript +WineShortcut
@@ -671347,7 +174320,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -671355,7 +174328,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -671391,7 +174364,7 @@

Parameters:
- trustLevel + trustlevel @@ -671407,7 +174380,7 @@
Parameters:
- The trust level + @@ -671448,7 +174421,7 @@
Parameters:
Source:
@@ -671477,7 +174450,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -671488,7 +174461,7 @@
Returns:
-WineShortcut +QuickScript
@@ -672813,13 +175786,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -672841,8 +175818,6 @@
Parameters:
Type - Attributes - @@ -672868,20 +175843,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -672922,7 +175887,7 @@
Parameters:
Source:
@@ -672950,6 +175915,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -672958,10 +175927,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -673138,17 +176104,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -673170,6 +176132,8 @@
Parameters:
Type + Attributes + @@ -673195,10 +176159,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -673239,7 +176213,7 @@
Parameters:
Source:
@@ -673267,10 +176241,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -673279,7 +176249,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -673313,7 +176286,7 @@
Returns:

default()

-
Tool to uninstall Wine
+
setting to set the DirectDraw renderer
@@ -673376,7 +176349,7 @@

new defaultSource:
@@ -675188,7 +178161,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -675196,7 +178169,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -675248,7 +178221,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -675289,7 +178262,7 @@
Parameters:
Source:
@@ -675318,7 +178291,7 @@
Returns:
- The Resource object + The Downloader object
@@ -675329,7 +178302,7 @@
Returns:
-Resource +Downloader
@@ -675347,7 +178320,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -675355,7 +178328,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -675407,7 +178380,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -675448,7 +178421,7 @@
Parameters:
Source:
@@ -675477,7 +178450,7 @@
Returns:
- The Downloader object + The Resource object
@@ -675488,7 +178461,7 @@
Returns:
-Downloader +Resource
@@ -675506,7 +178479,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -675514,7 +178487,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -675558,7 +178531,7 @@

createSource:
@@ -675586,6 +178559,10 @@

createReturns:

+
+ The Wine object +
+
@@ -675594,7 +178571,7 @@
Returns:
-void +Wine
@@ -675612,7 +178589,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -675620,7 +178597,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -675664,7 +178641,7 @@

createSource:
@@ -675692,10 +178669,6 @@

createReturns:

-
- The Wine object -
-
@@ -675704,7 +178677,7 @@
Returns:
-Wine +void
@@ -676084,13 +179057,173 @@
Parameters:
- setupWizard + setupWizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -676141,7 +179274,7 @@
Parameters:
Source:
@@ -676170,7 +179303,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -676181,7 +179314,7 @@
Returns:
-String +boolean
@@ -676199,7 +179332,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -676207,7 +179340,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -676243,13 +179376,13 @@

Parameters:
- + + @@ -676300,7 +179433,7 @@
Parameters:
Source:
@@ -676329,7 +179462,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -676340,7 +179473,7 @@
Returns:
-QuickScript +boolean
@@ -676517,6 +179650,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -676100,7 +179233,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -676259,7 +179392,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -676631,7 +179923,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -676656,6 +180032,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -676667,13 +180065,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -676715,7 +180117,7 @@

fontDire
Source:
@@ -676744,7 +180146,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -676773,6 +180175,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -676932,7 +180444,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -676940,7 +180452,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -676984,7 +180496,7 @@

getSource:
@@ -677013,7 +180525,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -677042,7 +180554,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -677050,7 +180562,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -677061,6 +180573,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -677094,7 +180655,7 @@

getSource:
@@ -677123,7 +180684,7 @@
Returns:
- The content of downloaded file + This
@@ -677134,7 +180695,7 @@
Returns:
-String +GogScript
@@ -677152,7 +180713,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -677160,7 +180721,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -677171,6 +180732,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -677204,7 +180814,7 @@

getContai
Source:
@@ -677233,7 +180843,7 @@

Returns:
- The container name + This
@@ -677244,7 +180854,7 @@
Returns:
-string +GogScript
@@ -677262,7 +180872,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -677270,7 +180880,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -677306,13 +180916,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -677322,7 +180932,7 @@
Parameters:
- The setup file name + The http headers @@ -677363,7 +180973,7 @@
Parameters:
Source:
@@ -677392,7 +181002,7 @@
Returns:
- This + The Downloader object
@@ -677403,7 +181013,7 @@
Returns:
-GogScript +Downloader
@@ -677421,7 +181031,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -677429,7 +181039,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -677440,55 +181050,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -677522,7 +181083,7 @@
Parameters:
Source:
@@ -677551,7 +181112,7 @@
Returns:
- This + The json value
@@ -677562,7 +181123,7 @@
Returns:
-GogScript +any
@@ -677580,7 +181141,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -677588,7 +181149,7 @@

headers - Sets the http headers + kill wine server @@ -677599,55 +181160,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -677681,7 +181193,7 @@
Parameters:
Source:
@@ -677709,10 +181221,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -677721,7 +181229,7 @@
Returns:
-Downloader +Wine
@@ -677739,7 +181247,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -677747,7 +181255,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -677758,114 +181267,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -677901,7 +181349,7 @@

killSource:
@@ -677929,6 +181377,10 @@

kill + This + +
@@ -677937,7 +181389,7 @@
Returns:
-Wine +GogScript
@@ -677955,7 +181407,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -677963,8 +181415,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -678000,13 +181451,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -678016,7 +181467,7 @@
Parameters:
- The setupWizard to use + The download message @@ -678057,7 +181508,7 @@
Parameters:
Source:
@@ -678086,7 +181537,7 @@
Returns:
- This + The Downloader object
@@ -678097,7 +181548,7 @@
Returns:
-GogScript +Downloader
@@ -678115,7 +181566,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -678123,7 +181574,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -678159,13 +181610,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -678175,7 +181629,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -678216,7 +181670,7 @@
Parameters:
Source:
@@ -678245,7 +181699,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -678256,7 +181710,7 @@
Returns:
-Downloader +WineShortcut
@@ -678423,7 +181877,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -678431,7 +181885,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -678467,16 +181921,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -678486,7 +181937,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -678527,7 +181978,7 @@
Parameters:
Source:
@@ -678556,7 +182007,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -678567,7 +182018,7 @@
Returns:
-WineShortcut +Resource
@@ -678744,165 +182195,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -681237,7 +184529,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -681245,7 +184537,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -681281,7 +184573,7 @@

Parameters:
- trustlevel + trustLevel @@ -681297,7 +184589,7 @@
Parameters:
- + The trust level @@ -681338,7 +184630,7 @@
Parameters:
Source:
@@ -681367,7 +184659,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -681378,7 +184670,7 @@
Returns:
-QuickScript +WineShortcut
@@ -681396,7 +184688,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -681404,7 +184696,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -681440,7 +184732,7 @@

Parameters:
- trustLevel + trustlevel @@ -681456,7 +184748,7 @@
Parameters:
- The trust level + @@ -681497,7 +184789,7 @@
Parameters:
Source:
@@ -681526,7 +184818,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -681537,7 +184829,7 @@
Returns:
-WineShortcut +QuickScript
@@ -682862,13 +186154,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -682890,8 +186186,6 @@
Parameters:
Type - Attributes - @@ -682917,20 +186211,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -682971,7 +186255,7 @@
Parameters:
Source:
@@ -682999,6 +186283,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -683007,10 +186295,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -683187,17 +186472,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -683219,6 +186500,8 @@
Parameters:
Type + Attributes + @@ -683244,10 +186527,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -683288,7 +186581,7 @@
Parameters:
Source:
@@ -683316,10 +186609,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -683328,7 +186617,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -683362,7 +186654,7 @@
Returns:

default()

-
Tool to open a Wine console
+
Setting to set the Fonts Smoothing
@@ -683425,7 +186717,7 @@

new defaultSource:
@@ -685237,7 +188529,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -685245,7 +188537,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -685297,7 +188589,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -685338,7 +188630,7 @@
Parameters:
Source:
@@ -685367,7 +188659,7 @@
Returns:
- The Resource object + The Downloader object
@@ -685378,7 +188670,7 @@
Returns:
-Resource +Downloader
@@ -685396,7 +188688,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -685404,7 +188696,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -685456,7 +188748,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -685497,7 +188789,7 @@
Parameters:
Source:
@@ -685526,7 +188818,7 @@
Returns:
- The Downloader object + The Resource object
@@ -685537,7 +188829,7 @@
Returns:
-Downloader +Resource
@@ -685555,7 +188847,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -685563,7 +188855,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -685607,7 +188899,7 @@

createSource:
@@ -685635,6 +188927,10 @@

createReturns:

+
+ The Wine object +
+
@@ -685643,7 +188939,7 @@
Returns:
-void +Wine
@@ -685661,7 +188957,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -685669,7 +188965,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -685713,7 +189009,7 @@

createSource:
@@ -685741,10 +189037,6 @@

createReturns:

-
- The Wine object -
-
@@ -685753,7 +189045,7 @@
Returns:
-Wine +void
@@ -686133,13 +189425,173 @@
Parameters:
- setupWizard + setupWizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -686190,7 +189642,7 @@
Parameters:
Source:
@@ -686219,7 +189671,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -686230,7 +189682,7 @@
Returns:
-String +boolean
@@ -686248,7 +189700,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -686256,7 +189708,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -686292,13 +189744,13 @@

Parameters:
- + + @@ -686349,7 +189801,7 @@
Parameters:
Source:
@@ -686378,7 +189830,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -686389,7 +189841,7 @@
Returns:
-QuickScript +boolean
@@ -686566,6 +190018,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -686149,7 +189601,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -686308,7 +189760,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -686680,7 +190291,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -686705,6 +190400,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -686716,13 +190433,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -686764,7 +190485,7 @@

fontDire
Source:
@@ -686793,7 +190514,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -686822,6 +190543,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -686981,7 +190812,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -686989,7 +190820,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -687033,7 +190864,7 @@

getSource:
@@ -687062,7 +190893,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -687091,7 +190922,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -687099,7 +190930,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -687110,6 +190941,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -687143,7 +191023,7 @@

getSource:
@@ -687172,7 +191052,7 @@
Returns:
- The content of downloaded file + This
@@ -687183,7 +191063,7 @@
Returns:
-String +GogScript
@@ -687201,7 +191081,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -687209,7 +191089,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -687220,6 +191100,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -687253,7 +191182,7 @@

getContai
Source:
@@ -687282,7 +191211,7 @@

Returns:
- The container name + This
@@ -687293,7 +191222,7 @@
Returns:
-string +GogScript
@@ -687311,7 +191240,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -687319,7 +191248,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -687355,13 +191284,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -687371,7 +191300,7 @@
Parameters:
- The setup file name + The http headers @@ -687412,7 +191341,7 @@
Parameters:
Source:
@@ -687441,7 +191370,7 @@
Returns:
- This + The Downloader object
@@ -687452,7 +191381,7 @@
Returns:
-GogScript +Downloader
@@ -687470,7 +191399,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -687478,7 +191407,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -687489,55 +191418,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -687571,7 +191451,7 @@
Parameters:
Source:
@@ -687600,7 +191480,7 @@
Returns:
- This + The json value
@@ -687611,7 +191491,7 @@
Returns:
-GogScript +any
@@ -687629,7 +191509,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -687637,7 +191517,7 @@

headers - Sets the http headers + kill wine server @@ -687648,55 +191528,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -687730,7 +191561,7 @@
Parameters:
Source:
@@ -687758,10 +191589,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -687770,7 +191597,7 @@
Returns:
-Downloader +Wine
@@ -687788,7 +191615,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -687796,7 +191623,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -687807,114 +191635,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -687950,7 +191717,7 @@

killSource:
@@ -687978,6 +191745,10 @@

kill + This + +
@@ -687986,7 +191757,7 @@
Returns:
-Wine +GogScript
@@ -688004,7 +191775,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -688012,8 +191783,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -688049,13 +191819,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -688065,7 +191835,7 @@
Parameters:
- The setupWizard to use + The download message @@ -688106,7 +191876,7 @@
Parameters:
Source:
@@ -688135,7 +191905,7 @@
Returns:
- This + The Downloader object
@@ -688146,7 +191916,7 @@
Returns:
-GogScript +Downloader
@@ -688164,7 +191934,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -688172,7 +191942,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -688208,13 +191978,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -688224,7 +191997,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -688265,7 +192038,7 @@
Parameters:
Source:
@@ -688294,7 +192067,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -688305,7 +192078,7 @@
Returns:
-Downloader +WineShortcut
@@ -688472,7 +192245,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -688480,7 +192253,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -688516,16 +192289,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -688535,7 +192305,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -688576,7 +192346,7 @@
Parameters:
Source:
@@ -688605,7 +192375,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -688616,7 +192386,7 @@
Returns:
-WineShortcut +Resource
@@ -688793,165 +192563,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -691286,7 +194897,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -691294,7 +194905,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -691330,7 +194941,7 @@

Parameters:
- trustlevel + trustLevel @@ -691346,7 +194957,7 @@
Parameters:
- + The trust level @@ -691387,7 +194998,7 @@
Parameters:
Source:
@@ -691416,7 +195027,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -691427,7 +195038,7 @@
Returns:
-QuickScript +WineShortcut
@@ -691445,7 +195056,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -691453,7 +195064,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -691489,7 +195100,7 @@

Parameters:
- trustLevel + trustlevel @@ -691505,7 +195116,7 @@
Parameters:
- The trust level + @@ -691546,7 +195157,7 @@
Parameters:
Source:
@@ -691575,7 +195186,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -691586,7 +195197,7 @@
Returns:
-WineShortcut +QuickScript
@@ -692911,13 +196522,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -692939,8 +196554,6 @@
Parameters:
Type - Attributes - @@ -692966,20 +196579,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -693020,7 +196623,7 @@
Parameters:
Source:
@@ -693048,6 +196651,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -693056,10 +196663,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -693236,17 +196840,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -693268,6 +196868,8 @@
Parameters:
Type + Attributes + @@ -693293,10 +196895,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -693337,7 +196949,7 @@
Parameters:
Source:
@@ -693365,10 +196977,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -693377,7 +196985,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -693411,7 +197022,7 @@
Returns:

default()

-
Verb to install VK9
+
Tool to open a Wine console
@@ -693474,7 +197085,7 @@

new defaultSource:
@@ -695286,7 +198897,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -695294,7 +198905,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -695346,7 +198957,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -695387,7 +198998,7 @@
Parameters:
Source:
@@ -695416,7 +199027,7 @@
Returns:
- The Resource object + The Downloader object
@@ -695427,7 +199038,7 @@
Returns:
-Resource +Downloader
@@ -695445,7 +199056,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -695453,7 +199064,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -695505,7 +199116,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -695546,7 +199157,7 @@
Parameters:
Source:
@@ -695575,7 +199186,7 @@
Returns:
- The Downloader object + The Resource object
@@ -695586,7 +199197,7 @@
Returns:
-Downloader +Resource
@@ -695604,7 +199215,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -695612,7 +199223,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -695656,7 +199267,7 @@

createSource:
@@ -695684,6 +199295,10 @@

createReturns:

+
+ The Wine object +
+
@@ -695692,7 +199307,7 @@
Returns:
-void +Wine
@@ -695710,7 +199325,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -695718,7 +199333,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -695762,7 +199377,7 @@

createSource:
@@ -695790,10 +199405,6 @@

createReturns:

-
- The Wine object -
-
@@ -695802,7 +199413,7 @@
Returns:
-Wine +void
@@ -696182,13 +199793,173 @@
Parameters:
- setupWizard + setupWizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -696239,7 +200010,7 @@
Parameters:
Source:
@@ -696268,7 +200039,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -696279,7 +200050,7 @@
Returns:
-String +boolean
@@ -696297,7 +200068,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -696305,7 +200076,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -696341,13 +200112,13 @@

Parameters:
- + + @@ -696398,7 +200169,7 @@
Parameters:
Source:
@@ -696427,7 +200198,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -696438,7 +200209,7 @@
Returns:
-QuickScript +boolean
@@ -696615,6 +200386,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -696198,7 +199969,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -696357,7 +200128,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -696729,7 +200659,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -696754,6 +200768,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -696765,13 +200801,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -696813,7 +200853,7 @@

fontDire
Source:
@@ -696842,7 +200882,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -696871,6 +200911,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -697030,7 +201180,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -697038,7 +201188,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -697082,7 +201232,7 @@

getSource:
@@ -697111,7 +201261,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -697140,7 +201290,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -697148,7 +201298,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -697159,6 +201309,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -697192,7 +201391,7 @@

getSource:
@@ -697221,7 +201420,7 @@
Returns:
- The content of downloaded file + This
@@ -697232,7 +201431,7 @@
Returns:
-String +GogScript
@@ -697250,7 +201449,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -697258,7 +201457,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -697269,6 +201468,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -697302,7 +201550,7 @@

getContai
Source:
@@ -697331,7 +201579,7 @@

Returns:
- The container name + This
@@ -697342,7 +201590,7 @@
Returns:
-string +GogScript
@@ -697360,7 +201608,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -697368,7 +201616,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -697404,13 +201652,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -697420,7 +201668,7 @@
Parameters:
- The setup file name + The http headers @@ -697461,7 +201709,7 @@
Parameters:
Source:
@@ -697490,7 +201738,7 @@
Returns:
- This + The Downloader object
@@ -697501,7 +201749,7 @@
Returns:
-GogScript +Downloader
@@ -697519,7 +201767,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -697527,7 +201775,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -697538,55 +201786,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -697620,7 +201819,7 @@
Parameters:
Source:
@@ -697649,7 +201848,7 @@
Returns:
- This + The json value
@@ -697660,7 +201859,7 @@
Returns:
-GogScript +any
@@ -697678,7 +201877,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -697686,7 +201885,7 @@

headers - Sets the http headers + kill wine server @@ -697697,55 +201896,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -697779,7 +201929,7 @@
Parameters:
Source:
@@ -697807,10 +201957,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -697819,7 +201965,7 @@
Returns:
-Downloader +Wine
@@ -697837,7 +201983,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -697845,7 +201991,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -697856,114 +202003,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -697999,7 +202085,7 @@

killSource:
@@ -698027,6 +202113,10 @@

kill + This + +
@@ -698035,7 +202125,7 @@
Returns:
-Wine +GogScript
@@ -698053,7 +202143,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -698061,8 +202151,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -698098,13 +202187,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -698114,7 +202203,7 @@
Parameters:
- The setupWizard to use + The download message @@ -698155,7 +202244,7 @@
Parameters:
Source:
@@ -698184,7 +202273,7 @@
Returns:
- This + The Downloader object
@@ -698195,7 +202284,7 @@
Returns:
-GogScript +Downloader
@@ -698213,7 +202302,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -698221,7 +202310,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -698257,13 +202346,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -698273,7 +202365,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -698314,7 +202406,7 @@
Parameters:
Source:
@@ -698343,7 +202435,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -698354,7 +202446,7 @@
Returns:
-Downloader +WineShortcut
@@ -698521,7 +202613,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -698529,7 +202621,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -698565,16 +202657,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -698584,7 +202673,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -698625,7 +202714,7 @@
Parameters:
Source:
@@ -698654,7 +202743,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -698665,7 +202754,7 @@
Returns:
-WineShortcut +Resource
@@ -698842,165 +202931,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -701335,7 +205265,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -701343,7 +205273,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -701379,7 +205309,7 @@

Parameters:
- trustlevel + trustLevel @@ -701395,7 +205325,7 @@
Parameters:
- + The trust level @@ -701436,7 +205366,7 @@
Parameters:
Source:
@@ -701465,7 +205395,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -701476,7 +205406,7 @@
Returns:
-QuickScript +WineShortcut
@@ -701494,7 +205424,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -701502,7 +205432,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -701538,7 +205468,7 @@

Parameters:
- trustLevel + trustlevel @@ -701554,7 +205484,7 @@
Parameters:
- The trust level + @@ -701595,7 +205525,7 @@
Parameters:
Source:
@@ -701624,7 +205554,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -701635,7 +205565,7 @@
Returns:
-WineShortcut +QuickScript
@@ -702960,13 +206890,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -702988,8 +206922,6 @@
Parameters:
Type - Attributes - @@ -703015,20 +206947,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -703069,7 +206991,7 @@
Parameters:
Source:
@@ -703097,6 +207019,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -703105,10 +207031,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -703285,17 +207208,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -703317,6 +207236,8 @@
Parameters:
Type + Attributes + @@ -703342,10 +207263,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -703386,7 +207317,7 @@
Parameters:
Source:
@@ -703414,10 +207345,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -703426,7 +207353,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -703460,7 +207390,7 @@
Returns:

default()

-
Verb to install D9VK
+
Tool to uninstall Wine
@@ -703523,7 +207453,7 @@

new defaultSource:
@@ -705335,7 +209265,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -705343,7 +209273,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -705395,7 +209325,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -705436,7 +209366,7 @@
Parameters:
Source:
@@ -705465,7 +209395,7 @@
Returns:
- The Resource object + The Downloader object
@@ -705476,7 +209406,7 @@
Returns:
-Resource +Downloader
@@ -705494,7 +209424,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -705502,7 +209432,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -705554,7 +209484,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -705595,7 +209525,7 @@
Parameters:
Source:
@@ -705624,7 +209554,7 @@
Returns:
- The Downloader object + The Resource object
@@ -705635,7 +209565,7 @@
Returns:
-Downloader +Resource
@@ -705653,7 +209583,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -705661,7 +209591,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -705705,7 +209635,7 @@

createSource:
@@ -705733,6 +209663,10 @@

createReturns:

+
+ The Wine object +
+
@@ -705741,7 +209675,7 @@
Returns:
-void +Wine
@@ -705759,7 +209693,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -705767,7 +209701,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -705811,7 +209745,7 @@

createSource:
@@ -705839,10 +209773,6 @@

createReturns:

-
- The Wine object -
-
@@ -705851,7 +209781,7 @@
Returns:
-Wine +void
@@ -706231,13 +210161,173 @@
Parameters:
- setupWizard + setupWizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -706288,7 +210378,7 @@
Parameters:
Source:
@@ -706317,7 +210407,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -706328,7 +210418,7 @@
Returns:
-String +boolean
@@ -706346,7 +210436,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -706354,7 +210444,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -706390,13 +210480,13 @@

Parameters:
- + + @@ -706447,7 +210537,7 @@
Parameters:
Source:
@@ -706476,7 +210566,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -706487,7 +210577,7 @@
Returns:
-QuickScript +boolean
@@ -706664,6 +210754,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -706247,7 +210337,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -706406,7 +210496,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -706778,7 +211027,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -706803,6 +211136,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -706814,13 +211169,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -706862,7 +211221,7 @@

fontDire
Source:
@@ -706891,7 +211250,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -706920,6 +211279,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -707079,7 +211548,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -707087,7 +211556,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -707131,7 +211600,7 @@

getSource:
@@ -707160,7 +211629,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -707189,7 +211658,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -707197,7 +211666,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -707208,6 +211677,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -707241,7 +211759,7 @@

getSource:
@@ -707270,7 +211788,7 @@
Returns:
- The content of downloaded file + This
@@ -707281,7 +211799,7 @@
Returns:
-String +GogScript
@@ -707299,7 +211817,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -707307,7 +211825,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -707318,6 +211836,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -707351,7 +211918,7 @@

getContai
Source:
@@ -707380,7 +211947,7 @@

Returns:
- The container name + This
@@ -707391,7 +211958,7 @@
Returns:
-string +GogScript
@@ -707409,7 +211976,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -707417,7 +211984,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -707453,13 +212020,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -707469,7 +212036,7 @@
Parameters:
- The setup file name + The http headers @@ -707510,7 +212077,7 @@
Parameters:
Source:
@@ -707539,7 +212106,7 @@
Returns:
- This + The Downloader object
@@ -707550,7 +212117,7 @@
Returns:
-GogScript +Downloader
@@ -707568,7 +212135,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -707576,7 +212143,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -707587,55 +212154,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -707669,7 +212187,7 @@
Parameters:
Source:
@@ -707698,7 +212216,7 @@
Returns:
- This + The json value
@@ -707709,7 +212227,7 @@
Returns:
-GogScript +any
@@ -707727,7 +212245,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -707735,7 +212253,7 @@

headers - Sets the http headers + kill wine server @@ -707746,55 +212264,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -707828,7 +212297,7 @@
Parameters:
Source:
@@ -707856,10 +212325,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -707868,7 +212333,7 @@
Returns:
-Downloader +Wine
@@ -707886,7 +212351,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -707894,7 +212359,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -707905,114 +212371,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -708048,7 +212453,7 @@

killSource:
@@ -708076,6 +212481,10 @@

kill + This + +
@@ -708084,7 +212493,7 @@
Returns:
-Wine +GogScript
@@ -708102,7 +212511,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -708110,8 +212519,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -708147,13 +212555,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -708163,7 +212571,7 @@
Parameters:
- The setupWizard to use + The download message @@ -708204,7 +212612,7 @@
Parameters:
Source:
@@ -708233,7 +212641,7 @@
Returns:
- This + The Downloader object
@@ -708244,7 +212652,7 @@
Returns:
-GogScript +Downloader
@@ -708262,7 +212670,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -708270,7 +212678,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -708306,13 +212714,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -708322,7 +212733,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -708363,7 +212774,7 @@
Parameters:
Source:
@@ -708392,7 +212803,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -708403,7 +212814,7 @@
Returns:
-Downloader +WineShortcut
@@ -708570,7 +212981,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -708578,7 +212989,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -708614,16 +213025,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -708633,7 +213041,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -708674,7 +213082,7 @@
Parameters:
Source:
@@ -708703,7 +213111,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -708714,7 +213122,7 @@
Returns:
-WineShortcut +Resource
@@ -708891,165 +213299,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -711384,7 +215633,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -711392,7 +215641,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -711428,7 +215677,7 @@

Parameters:
- trustlevel + trustLevel @@ -711444,7 +215693,7 @@
Parameters:
- + The trust level @@ -711485,7 +215734,7 @@
Parameters:
Source:
@@ -711514,7 +215763,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -711525,7 +215774,7 @@
Returns:
-QuickScript +WineShortcut
@@ -711543,7 +215792,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -711551,7 +215800,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -711587,7 +215836,7 @@

Parameters:
- trustLevel + trustlevel @@ -711603,7 +215852,7 @@
Parameters:
- The trust level + @@ -711644,7 +215893,7 @@
Parameters:
Source:
@@ -711673,7 +215922,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -711684,7 +215933,7 @@
Returns:
-WineShortcut +QuickScript
@@ -713009,13 +217258,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -713037,8 +217290,6 @@
Parameters:
Type - Attributes - @@ -713064,20 +217315,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -713118,7 +217359,7 @@
Parameters:
Source:
@@ -713146,6 +217387,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -713154,10 +217399,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -713334,17 +217576,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -713366,6 +217604,8 @@
Parameters:
Type + Attributes + @@ -713391,10 +217631,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -713435,7 +217685,7 @@
Parameters:
Source:
@@ -713463,10 +217713,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -713475,7 +217721,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -713509,7 +217758,7 @@
Returns:

default()

-
Verb to install Uplay
+
Tool to open a terminal in a Wine prefix
@@ -713572,7 +217821,7 @@

new defaultSource:
@@ -715384,7 +219633,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -715392,7 +219641,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -715444,7 +219693,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -715485,7 +219734,7 @@
Parameters:
Source:
@@ -715514,7 +219763,7 @@
Returns:
- The Resource object + The Downloader object
@@ -715525,7 +219774,7 @@
Returns:
-Resource +Downloader
@@ -715543,7 +219792,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -715551,7 +219800,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -715603,7 +219852,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -715644,7 +219893,7 @@
Parameters:
Source:
@@ -715673,7 +219922,7 @@
Returns:
- The Downloader object + The Resource object
@@ -715684,7 +219933,7 @@
Returns:
-Downloader +Resource
@@ -715702,7 +219951,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -715710,7 +219959,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -715754,7 +220003,7 @@

createSource:
@@ -715782,6 +220031,10 @@

createReturns:

+
+ The Wine object +
+
@@ -715790,7 +220043,7 @@
Returns:
-void +Wine
@@ -715808,7 +220061,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -715816,7 +220069,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -715860,7 +220113,7 @@

createSource:
@@ -715888,10 +220141,6 @@

createReturns:

-
- The Wine object -
-
@@ -715900,7 +220149,7 @@
Returns:
-Wine +void
@@ -716280,13 +220529,173 @@
Parameters:
- setupWizard + setupWizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -716337,7 +220746,7 @@
Parameters:
Source:
@@ -716366,7 +220775,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -716377,7 +220786,7 @@
Returns:
-String +boolean
@@ -716395,7 +220804,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -716403,7 +220812,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -716439,13 +220848,13 @@

Parameters:
- + + @@ -716496,7 +220905,7 @@
Parameters:
Source:
@@ -716525,7 +220934,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -716536,7 +220945,7 @@
Returns:
-QuickScript +boolean
@@ -716713,6 +221122,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -716296,7 +220705,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -716455,7 +220864,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -716827,7 +221395,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -716852,6 +221504,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -716863,13 +221537,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -716911,7 +221589,7 @@

fontDire
Source:
@@ -716940,7 +221618,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -716969,6 +221647,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -717128,7 +221916,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -717136,7 +221924,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -717180,7 +221968,7 @@

getSource:
@@ -717209,7 +221997,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -717238,7 +222026,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -717246,7 +222034,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -717257,6 +222045,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -717290,7 +222127,7 @@

getSource:
@@ -717319,7 +222156,7 @@
Returns:
- The content of downloaded file + This
@@ -717330,7 +222167,7 @@
Returns:
-String +GogScript
@@ -717348,7 +222185,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -717356,7 +222193,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -717367,6 +222204,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -717400,7 +222286,7 @@

getContai
Source:
@@ -717429,7 +222315,7 @@

Returns:
- The container name + This
@@ -717440,7 +222326,7 @@
Returns:
-string +GogScript
@@ -717458,7 +222344,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -717466,7 +222352,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -717502,13 +222388,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -717518,7 +222404,7 @@
Parameters:
- The setup file name + The http headers @@ -717559,7 +222445,7 @@
Parameters:
Source:
@@ -717588,7 +222474,7 @@
Returns:
- This + The Downloader object
@@ -717599,7 +222485,7 @@
Returns:
-GogScript +Downloader
@@ -717617,7 +222503,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -717625,7 +222511,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -717636,55 +222522,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -717718,7 +222555,7 @@
Parameters:
Source:
@@ -717747,7 +222584,7 @@
Returns:
- This + The json value
@@ -717758,7 +222595,7 @@
Returns:
-GogScript +any
@@ -717776,7 +222613,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -717784,7 +222621,7 @@

headers - Sets the http headers + kill wine server @@ -717795,55 +222632,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -717877,7 +222665,7 @@
Parameters:
Source:
@@ -717905,10 +222693,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -717917,7 +222701,7 @@
Returns:
-Downloader +Wine
@@ -717935,7 +222719,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -717943,7 +222727,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -717954,114 +222739,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -718097,7 +222821,7 @@

killSource:
@@ -718125,6 +222849,10 @@

kill + This + +
@@ -718133,7 +222861,7 @@
Returns:
-Wine +GogScript
@@ -718151,7 +222879,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -718159,8 +222887,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -718196,13 +222923,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -718212,7 +222939,7 @@
Parameters:
- The setupWizard to use + The download message @@ -718253,7 +222980,7 @@
Parameters:
Source:
@@ -718282,7 +223009,7 @@
Returns:
- This + The Downloader object
@@ -718293,7 +223020,7 @@
Returns:
-GogScript +Downloader
@@ -718311,7 +223038,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -718319,7 +223046,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -718355,13 +223082,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -718371,7 +223101,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -718412,7 +223142,7 @@
Parameters:
Source:
@@ -718441,7 +223171,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -718452,7 +223182,7 @@
Returns:
-Downloader +WineShortcut
@@ -718619,7 +223349,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -718627,7 +223357,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -718663,16 +223393,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -718682,7 +223409,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -718723,7 +223450,7 @@
Parameters:
Source:
@@ -718752,7 +223479,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -718763,7 +223490,7 @@
Returns:
-WineShortcut +Resource
@@ -718940,165 +223667,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -721433,7 +226001,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -721441,7 +226009,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -721477,7 +226045,7 @@

Parameters:
- trustlevel + trustLevel @@ -721493,7 +226061,7 @@
Parameters:
- + The trust level @@ -721534,7 +226102,7 @@
Parameters:
Source:
@@ -721563,7 +226131,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -721574,7 +226142,7 @@
Returns:
-QuickScript +WineShortcut
@@ -721592,7 +226160,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -721600,7 +226168,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -721636,7 +226204,7 @@

Parameters:
- trustLevel + trustlevel @@ -721652,7 +226220,7 @@
Parameters:
- The trust level + @@ -721693,7 +226261,7 @@
Parameters:
Source:
@@ -721722,7 +226290,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -721733,7 +226301,7 @@
Returns:
-WineShortcut +QuickScript
@@ -723058,13 +227626,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -723086,8 +227658,6 @@
Parameters:
Type - Attributes - @@ -723113,20 +227683,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -723167,7 +227727,7 @@
Parameters:
Source:
@@ -723195,6 +227755,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -723203,10 +227767,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -723383,17 +227944,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -723415,6 +227972,8 @@
Parameters:
Type + Attributes + @@ -723440,10 +227999,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -723484,7 +228053,7 @@
Parameters:
Source:
@@ -723512,10 +228081,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -723524,7 +228089,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -723558,7 +228126,7 @@
Returns:

default()

-
Verb to install DXVK
+
Tool to open the Wine task manager
@@ -723621,7 +228189,7 @@

new defaultSource:
@@ -725433,7 +230001,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -725441,7 +230009,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -725493,7 +230061,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -725534,7 +230102,7 @@
Parameters:
Source:
@@ -725563,7 +230131,7 @@
Returns:
- The Resource object + The Downloader object
@@ -725574,7 +230142,7 @@
Returns:
-Resource +Downloader
@@ -725592,7 +230160,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -725600,7 +230168,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -725652,7 +230220,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -725693,7 +230261,7 @@
Parameters:
Source:
@@ -725722,7 +230290,7 @@
Returns:
- The Downloader object + The Resource object
@@ -725733,7 +230301,7 @@
Returns:
-Downloader +Resource
@@ -725751,7 +230319,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -725759,7 +230327,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -725803,7 +230371,7 @@

createSource:
@@ -725831,6 +230399,10 @@

createReturns:

+
+ The Wine object +
+
@@ -725839,7 +230411,7 @@
Returns:
-void +Wine
@@ -725857,7 +230429,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -725865,7 +230437,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -725909,7 +230481,7 @@

createSource:
@@ -725937,10 +230509,6 @@

createReturns:

-
- The Wine object -
-
@@ -725949,7 +230517,7 @@
Returns:
-Wine +void
@@ -726329,13 +230897,173 @@
Parameters:
- setupWizard + setupWizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -726386,7 +231114,7 @@
Parameters:
Source:
@@ -726415,7 +231143,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -726426,7 +231154,7 @@
Returns:
-String +boolean
@@ -726444,7 +231172,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -726452,7 +231180,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -726488,13 +231216,13 @@

Parameters:
- + + @@ -726545,7 +231273,7 @@
Parameters:
Source:
@@ -726574,7 +231302,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -726585,7 +231313,7 @@
Returns:
-QuickScript +boolean
@@ -726762,6 +231490,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -726345,7 +231073,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -726504,7 +231232,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -726876,7 +231763,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -726901,6 +231872,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -726912,13 +231905,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -726960,7 +231957,7 @@

fontDire
Source:
@@ -726989,7 +231986,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -727018,6 +232015,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -727177,7 +232284,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -727185,7 +232292,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -727229,7 +232336,7 @@

getSource:
@@ -727258,7 +232365,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -727287,7 +232394,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -727295,7 +232402,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -727306,6 +232413,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -727339,7 +232495,7 @@

getSource:
@@ -727368,7 +232524,7 @@
Returns:
- The content of downloaded file + This
@@ -727379,7 +232535,7 @@
Returns:
-String +GogScript
@@ -727397,7 +232553,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -727405,7 +232561,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -727416,6 +232572,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -727449,7 +232654,7 @@

getContai
Source:
@@ -727478,7 +232683,7 @@

Returns:
- The container name + This
@@ -727489,7 +232694,7 @@
Returns:
-string +GogScript
@@ -727507,7 +232712,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -727515,7 +232720,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -727551,13 +232756,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -727567,7 +232772,7 @@
Parameters:
- The setup file name + The http headers @@ -727608,7 +232813,7 @@
Parameters:
Source:
@@ -727637,7 +232842,7 @@
Returns:
- This + The Downloader object
@@ -727648,7 +232853,7 @@
Returns:
-GogScript +Downloader
@@ -727666,7 +232871,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -727674,7 +232879,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -727685,55 +232890,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -727767,7 +232923,7 @@
Parameters:
Source:
@@ -727796,7 +232952,7 @@
Returns:
- This + The json value
@@ -727807,7 +232963,7 @@
Returns:
-GogScript +any
@@ -727825,7 +232981,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -727833,7 +232989,7 @@

headers - Sets the http headers + kill wine server @@ -727844,55 +233000,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -727926,7 +233033,7 @@
Parameters:
Source:
@@ -727954,10 +233061,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -727966,7 +233069,7 @@
Returns:
-Downloader +Wine
@@ -727984,7 +233087,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -727992,7 +233095,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -728003,114 +233107,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -728146,7 +233189,7 @@

killSource:
@@ -728174,6 +233217,10 @@

kill + This + +
@@ -728182,7 +233229,7 @@
Returns:
-Wine +GogScript
@@ -728200,7 +233247,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -728208,8 +233255,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -728245,13 +233291,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -728261,7 +233307,7 @@
Parameters:
- The setupWizard to use + The download message @@ -728302,7 +233348,7 @@
Parameters:
Source:
@@ -728331,7 +233377,7 @@
Returns:
- This + The Downloader object
@@ -728342,7 +233388,7 @@
Returns:
-GogScript +Downloader
@@ -728360,7 +233406,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -728368,7 +233414,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -728404,13 +233450,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -728420,7 +233469,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -728461,7 +233510,7 @@
Parameters:
Source:
@@ -728490,7 +233539,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -728501,7 +233550,7 @@
Returns:
-Downloader +WineShortcut
@@ -728668,7 +233717,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -728676,7 +233725,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -728712,16 +233761,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -728731,7 +233777,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -728772,7 +233818,7 @@
Parameters:
Source:
@@ -728801,7 +233847,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -728812,7 +233858,7 @@
Returns:
-WineShortcut +Resource
@@ -728989,165 +234035,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -731482,7 +236369,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -731490,7 +236377,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -731526,7 +236413,7 @@

Parameters:
- trustlevel + trustLevel @@ -731542,7 +236429,7 @@
Parameters:
- + The trust level @@ -731583,7 +236470,7 @@
Parameters:
Source:
@@ -731612,7 +236499,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -731623,7 +236510,7 @@
Returns:
-QuickScript +WineShortcut
@@ -731641,7 +236528,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -731649,7 +236536,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -731685,7 +236572,7 @@

Parameters:
- trustLevel + trustlevel @@ -731701,7 +236588,7 @@
Parameters:
- The trust level + @@ -731742,7 +236629,7 @@
Parameters:
Source:
@@ -731771,7 +236658,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -731782,7 +236669,7 @@
Returns:
-WineShortcut +QuickScript
@@ -733107,13 +237994,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -733135,8 +238026,6 @@
Parameters:
Type - Attributes - @@ -733162,20 +238051,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -733216,7 +238095,7 @@
Parameters:
Source:
@@ -733244,6 +238123,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -733252,10 +238135,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -733432,17 +238312,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -733464,6 +238340,8 @@
Parameters:
Type + Attributes + @@ -733489,10 +238367,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -733533,7 +238421,7 @@
Parameters:
Source:
@@ -733561,10 +238449,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -733573,7 +238457,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -733607,7 +238494,7 @@
Returns:

default()

-
Verb to install the Tahoma font
+
Tool to open the Wine registry editor
@@ -733670,7 +238557,7 @@

new defaultSource:
@@ -735482,7 +240369,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -735490,7 +240377,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -735542,7 +240429,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -735583,7 +240470,7 @@
Parameters:
Source:
@@ -735612,7 +240499,7 @@
Returns:
- The Resource object + The Downloader object
@@ -735623,7 +240510,7 @@
Returns:
-Resource +Downloader
@@ -735641,7 +240528,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -735649,7 +240536,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -735701,7 +240588,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -735742,7 +240629,7 @@
Parameters:
Source:
@@ -735771,7 +240658,7 @@
Returns:
- The Downloader object + The Resource object
@@ -735782,7 +240669,7 @@
Returns:
-Downloader +Resource
@@ -735800,7 +240687,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -735808,7 +240695,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -735852,7 +240739,7 @@

createSource:
@@ -735880,6 +240767,10 @@

createReturns:

+
+ The Wine object +
+
@@ -735888,7 +240779,7 @@
Returns:
-void +Wine
@@ -735906,7 +240797,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -735914,7 +240805,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -735958,7 +240849,7 @@

createSource:
@@ -735986,10 +240877,6 @@

createReturns:

-
- The Wine object -
-
@@ -735998,7 +240885,7 @@
Returns:
-Wine +void
@@ -736378,13 +241265,173 @@
Parameters:
- setupWizard + setupWizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -736435,7 +241482,7 @@
Parameters:
Source:
@@ -736464,7 +241511,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -736475,7 +241522,7 @@
Returns:
-String +boolean
@@ -736493,7 +241540,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -736501,7 +241548,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -736537,13 +241584,13 @@

Parameters:
- + + @@ -736594,7 +241641,7 @@
Parameters:
Source:
@@ -736623,7 +241670,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -736634,7 +241681,7 @@
Returns:
-QuickScript +boolean
@@ -736811,6 +241858,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -736394,7 +241441,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -736553,7 +241600,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -736925,7 +242131,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -736950,6 +242240,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -736961,13 +242273,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -737009,7 +242325,7 @@

fontDire
Source:
@@ -737038,7 +242354,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -737067,6 +242383,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -737226,7 +242652,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -737234,7 +242660,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -737278,7 +242704,7 @@

getSource:
@@ -737307,7 +242733,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -737336,7 +242762,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -737344,7 +242770,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -737355,6 +242781,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -737388,7 +242863,7 @@

getSource:
@@ -737417,7 +242892,7 @@
Returns:
- The content of downloaded file + This
@@ -737428,7 +242903,7 @@
Returns:
-String +GogScript
@@ -737446,7 +242921,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -737454,7 +242929,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -737465,6 +242940,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -737498,7 +243022,7 @@

getContai
Source:
@@ -737527,7 +243051,7 @@

Returns:
- The container name + This
@@ -737538,7 +243062,7 @@
Returns:
-string +GogScript
@@ -737556,7 +243080,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -737564,7 +243088,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -737600,13 +243124,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -737616,7 +243140,7 @@
Parameters:
- The setup file name + The http headers @@ -737657,7 +243181,7 @@
Parameters:
Source:
@@ -737686,7 +243210,7 @@
Returns:
- This + The Downloader object
@@ -737697,7 +243221,7 @@
Returns:
-GogScript +Downloader
@@ -737715,7 +243239,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -737723,7 +243247,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -737734,55 +243258,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -737816,7 +243291,7 @@
Parameters:
Source:
@@ -737845,7 +243320,7 @@
Returns:
- This + The json value
@@ -737856,7 +243331,7 @@
Returns:
-GogScript +any
@@ -737874,7 +243349,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -737882,7 +243357,7 @@

headers - Sets the http headers + kill wine server @@ -737893,55 +243368,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -737975,7 +243401,7 @@
Parameters:
Source:
@@ -738003,10 +243429,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -738015,7 +243437,7 @@
Returns:
-Downloader +Wine
@@ -738033,7 +243455,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -738041,7 +243463,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -738052,114 +243475,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -738195,7 +243557,7 @@

killSource:
@@ -738223,6 +243585,10 @@

kill + This + +
@@ -738231,7 +243597,7 @@
Returns:
-Wine +GogScript
@@ -738249,7 +243615,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -738257,8 +243623,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -738294,13 +243659,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -738310,7 +243675,7 @@
Parameters:
- The setupWizard to use + The download message @@ -738351,7 +243716,7 @@
Parameters:
Source:
@@ -738380,7 +243745,7 @@
Returns:
- This + The Downloader object
@@ -738391,7 +243756,7 @@
Returns:
-GogScript +Downloader
@@ -738409,7 +243774,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -738417,7 +243782,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -738453,13 +243818,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -738469,7 +243837,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -738510,7 +243878,7 @@
Parameters:
Source:
@@ -738539,7 +243907,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -738550,7 +243918,7 @@
Returns:
-Downloader +WineShortcut
@@ -738717,7 +244085,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -738725,7 +244093,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -738761,16 +244129,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -738780,7 +244145,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -738821,7 +244186,7 @@
Parameters:
Source:
@@ -738850,7 +244215,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -738861,7 +244226,7 @@
Returns:
-WineShortcut +Resource
@@ -739038,165 +244403,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -741531,7 +246737,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -741539,7 +246745,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -741575,7 +246781,7 @@

Parameters:
- trustlevel + trustLevel @@ -741591,7 +246797,7 @@
Parameters:
- + The trust level @@ -741632,7 +246838,7 @@
Parameters:
Source:
@@ -741661,7 +246867,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -741672,7 +246878,7 @@
Returns:
-QuickScript +WineShortcut
@@ -741690,7 +246896,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -741698,7 +246904,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -741734,7 +246940,7 @@

Parameters:
- trustLevel + trustlevel @@ -741750,7 +246956,7 @@
Parameters:
- The trust level + @@ -741791,7 +246997,7 @@
Parameters:
Source:
@@ -741820,7 +247026,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -741831,7 +247037,7 @@
Returns:
-WineShortcut +QuickScript
@@ -743156,13 +248362,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -743184,8 +248394,6 @@
Parameters:
Type - Attributes - @@ -743211,20 +248419,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -743265,7 +248463,7 @@
Parameters:
Source:
@@ -743293,6 +248491,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -743301,10 +248503,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -743481,17 +248680,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -743513,6 +248708,8 @@
Parameters:
Type + Attributes + @@ -743538,10 +248735,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -743582,7 +248789,7 @@
Parameters:
Source:
@@ -743610,10 +248817,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -743622,7 +248825,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -743656,7 +248862,7 @@
Returns:

default()

-
Verb to install FAudio
+
Tool to repair a Wine prefix
@@ -743719,7 +248925,7 @@

new defaultSource:
@@ -745531,7 +250737,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -745539,7 +250745,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -745591,7 +250797,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -745632,7 +250838,7 @@
Parameters:
Source:
@@ -745661,7 +250867,7 @@
Returns:
- The Resource object + The Downloader object
@@ -745672,7 +250878,7 @@
Returns:
-Resource +Downloader
@@ -745690,7 +250896,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -745698,7 +250904,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -745750,7 +250956,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -745791,7 +250997,7 @@
Parameters:
Source:
@@ -745820,7 +251026,7 @@
Returns:
- The Downloader object + The Resource object
@@ -745831,7 +251037,7 @@
Returns:
-Downloader +Resource
@@ -745849,7 +251055,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -745857,7 +251063,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -745901,7 +251107,7 @@

createSource:
@@ -745929,6 +251135,10 @@

createReturns:

+
+ The Wine object +
+
@@ -745937,7 +251147,7 @@
Returns:
-void +Wine
@@ -745955,7 +251165,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -745963,7 +251173,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -746007,7 +251217,7 @@

createSource:
@@ -746035,10 +251245,6 @@

createReturns:

-
- The Wine object -
-
@@ -746047,7 +251253,7 @@
Returns:
-Wine +void
@@ -746427,13 +251633,173 @@
Parameters:
- setupWizard + setupWizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -746484,7 +251850,7 @@
Parameters:
Source:
@@ -746513,7 +251879,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -746524,7 +251890,7 @@
Returns:
-String +boolean
@@ -746542,7 +251908,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -746550,7 +251916,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -746586,13 +251952,13 @@

Parameters:
- + + @@ -746643,7 +252009,7 @@
Parameters:
Source:
@@ -746672,7 +252038,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -746683,7 +252049,7 @@
Returns:
-QuickScript +boolean
@@ -746860,6 +252226,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -746443,7 +251809,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -746602,7 +251968,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -746974,7 +252499,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -746999,6 +252608,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -747010,13 +252641,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -747058,7 +252693,7 @@

fontDire
Source:
@@ -747087,7 +252722,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -747116,6 +252751,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -747275,7 +253020,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -747283,7 +253028,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -747327,7 +253072,7 @@

getSource:
@@ -747356,7 +253101,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -747385,7 +253130,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -747393,7 +253138,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -747404,6 +253149,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -747437,7 +253231,7 @@

getSource:
@@ -747466,7 +253260,7 @@
Returns:
- The content of downloaded file + This
@@ -747477,7 +253271,7 @@
Returns:
-String +GogScript
@@ -747495,7 +253289,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -747503,7 +253297,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -747514,6 +253308,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -747547,7 +253390,7 @@

getContai
Source:
@@ -747576,7 +253419,7 @@

Returns:
- The container name + This
@@ -747587,7 +253430,7 @@
Returns:
-string +GogScript
@@ -747605,7 +253448,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -747613,7 +253456,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -747649,13 +253492,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -747665,7 +253508,7 @@
Parameters:
- The setup file name + The http headers @@ -747706,7 +253549,7 @@
Parameters:
Source:
@@ -747735,7 +253578,7 @@
Returns:
- This + The Downloader object
@@ -747746,7 +253589,7 @@
Returns:
-GogScript +Downloader
@@ -747764,7 +253607,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -747772,7 +253615,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -747783,55 +253626,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -747865,7 +253659,7 @@
Parameters:
Source:
@@ -747894,7 +253688,7 @@
Returns:
- This + The json value
@@ -747905,7 +253699,7 @@
Returns:
-GogScript +any
@@ -747923,7 +253717,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -747931,7 +253725,7 @@

headers - Sets the http headers + kill wine server @@ -747942,55 +253736,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -748024,7 +253769,7 @@
Parameters:
Source:
@@ -748052,10 +253797,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -748064,7 +253805,7 @@
Returns:
-Downloader +Wine
@@ -748082,7 +253823,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -748090,7 +253831,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -748101,114 +253843,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -748244,7 +253925,7 @@

killSource:
@@ -748272,6 +253953,10 @@

kill + This + +
@@ -748280,7 +253965,7 @@
Returns:
-Wine +GogScript
@@ -748298,7 +253983,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -748306,8 +253991,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -748343,13 +254027,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -748359,7 +254043,7 @@
Parameters:
- The setupWizard to use + The download message @@ -748400,7 +254084,7 @@
Parameters:
Source:
@@ -748429,7 +254113,7 @@
Returns:
- This + The Downloader object
@@ -748440,7 +254124,7 @@
Returns:
-GogScript +Downloader
@@ -748458,7 +254142,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -748466,7 +254150,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -748502,13 +254186,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -748518,7 +254205,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -748559,7 +254246,7 @@
Parameters:
Source:
@@ -748588,7 +254275,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -748599,7 +254286,7 @@
Returns:
-Downloader +WineShortcut
@@ -748766,7 +254453,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -748774,7 +254461,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -748810,16 +254497,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -748829,7 +254513,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -748870,7 +254554,7 @@
Parameters:
Source:
@@ -748899,7 +254583,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -748910,7 +254594,7 @@
Returns:
-WineShortcut +Resource
@@ -749087,165 +254771,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -751580,7 +257105,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -751588,7 +257113,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -751624,7 +257149,7 @@

Parameters:
- trustlevel + trustLevel @@ -751640,7 +257165,7 @@
Parameters:
- + The trust level @@ -751681,7 +257206,7 @@
Parameters:
Source:
@@ -751710,7 +257235,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -751721,7 +257246,7 @@
Returns:
-QuickScript +WineShortcut
@@ -751739,7 +257264,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -751747,7 +257272,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -751783,7 +257308,7 @@

Parameters:
- trustLevel + trustlevel @@ -751799,7 +257324,7 @@
Parameters:
- The trust level + @@ -751840,7 +257365,7 @@
Parameters:
Source:
@@ -751869,7 +257394,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -751880,7 +257405,7 @@
Returns:
-WineShortcut +QuickScript
@@ -753205,13 +258730,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -753233,8 +258762,6 @@
Parameters:
Type - Attributes - @@ -753260,20 +258787,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -753314,7 +258831,7 @@
Parameters:
Source:
@@ -753342,6 +258859,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -753350,10 +258871,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -753530,17 +259048,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -753562,6 +259076,8 @@
Parameters:
Type + Attributes + @@ -753587,10 +259103,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -753631,7 +259157,7 @@
Parameters:
Source:
@@ -753659,10 +259185,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -753671,7 +259193,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -753705,7 +259230,7 @@
Returns:

default()

-
Verb to remove mono
+
Tool to reboot Wine
@@ -753768,7 +259293,7 @@

new defaultSource:
@@ -755580,7 +261105,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -755588,7 +261113,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -755640,7 +261165,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -755681,7 +261206,7 @@
Parameters:
Source:
@@ -755710,7 +261235,7 @@
Returns:
- The Resource object + The Downloader object
@@ -755721,7 +261246,7 @@
Returns:
-Resource +Downloader
@@ -755739,7 +261264,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -755747,7 +261272,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -755799,7 +261324,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -755840,7 +261365,7 @@
Parameters:
Source:
@@ -755869,7 +261394,7 @@
Returns:
- The Downloader object + The Resource object
@@ -755880,7 +261405,7 @@
Returns:
-Downloader +Resource
@@ -755898,7 +261423,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -755906,7 +261431,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -755950,7 +261475,7 @@

createSource:
@@ -755978,6 +261503,10 @@

createReturns:

+
+ The Wine object +
+
@@ -755986,7 +261515,7 @@
Returns:
-void +Wine
@@ -756004,7 +261533,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -756012,7 +261541,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -756056,7 +261585,7 @@

createSource:
@@ -756084,10 +261613,6 @@

createReturns:

-
- The Wine object -
-
@@ -756096,7 +261621,7 @@
Returns:
-Wine +void
@@ -756476,13 +262001,173 @@
Parameters:
- setupWizard + setupWizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -756533,7 +262218,7 @@
Parameters:
Source:
@@ -756562,7 +262247,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -756573,7 +262258,7 @@
Returns:
-String +boolean
@@ -756591,7 +262276,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -756599,7 +262284,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -756635,13 +262320,13 @@

Parameters:
- + + @@ -756692,7 +262377,7 @@
Parameters:
Source:
@@ -756721,7 +262406,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -756732,7 +262417,7 @@
Returns:
-QuickScript +boolean
@@ -756909,6 +262594,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -756492,7 +262177,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -756651,7 +262336,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -757023,7 +262867,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -757048,6 +262976,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -757059,13 +263009,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -757107,7 +263061,7 @@

fontDire
Source:
@@ -757136,7 +263090,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -757165,6 +263119,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -757324,7 +263388,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -757332,7 +263396,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -757376,7 +263440,7 @@

getSource:
@@ -757405,7 +263469,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -757434,7 +263498,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -757442,7 +263506,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -757453,6 +263517,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -757486,7 +263599,7 @@

getSource:
@@ -757515,7 +263628,7 @@
Returns:
- The content of downloaded file + This
@@ -757526,7 +263639,7 @@
Returns:
-String +GogScript
@@ -757544,7 +263657,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -757552,7 +263665,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -757563,6 +263676,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -757596,7 +263758,7 @@

getContai
Source:
@@ -757625,7 +263787,7 @@

Returns:
- The container name + This
@@ -757636,7 +263798,7 @@
Returns:
-string +GogScript
@@ -757654,7 +263816,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -757662,7 +263824,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -757698,13 +263860,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -757714,7 +263876,7 @@
Parameters:
- The setup file name + The http headers @@ -757755,7 +263917,7 @@
Parameters:
Source:
@@ -757784,7 +263946,7 @@
Returns:
- This + The Downloader object
@@ -757795,7 +263957,7 @@
Returns:
-GogScript +Downloader
@@ -757813,7 +263975,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -757821,7 +263983,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -757832,55 +263994,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -757914,7 +264027,7 @@
Parameters:
Source:
@@ -757943,7 +264056,7 @@
Returns:
- This + The json value
@@ -757954,7 +264067,7 @@
Returns:
-GogScript +any
@@ -757972,7 +264085,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -757980,7 +264093,7 @@

headers - Sets the http headers + kill wine server @@ -757991,55 +264104,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -758073,7 +264137,7 @@
Parameters:
Source:
@@ -758101,10 +264165,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -758113,7 +264173,7 @@
Returns:
-Downloader +Wine
@@ -758131,7 +264191,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -758139,7 +264199,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -758150,114 +264211,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -758293,7 +264293,7 @@

killSource:
@@ -758321,6 +264321,10 @@

kill + This + +
@@ -758329,7 +264333,7 @@
Returns:
-Wine +GogScript
@@ -758347,7 +264351,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -758355,8 +264359,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -758392,13 +264395,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -758408,7 +264411,7 @@
Parameters:
- The setupWizard to use + The download message @@ -758449,7 +264452,7 @@
Parameters:
Source:
@@ -758478,7 +264481,7 @@
Returns:
- This + The Downloader object
@@ -758489,7 +264492,7 @@
Returns:
-GogScript +Downloader
@@ -758507,7 +264510,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -758515,7 +264518,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -758551,13 +264554,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -758567,7 +264573,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -758608,7 +264614,7 @@
Parameters:
Source:
@@ -758637,7 +264643,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -758648,7 +264654,7 @@
Returns:
-Downloader +WineShortcut
@@ -758815,7 +264821,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -758823,7 +264829,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -758859,16 +264865,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -758878,7 +264881,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -758919,7 +264922,7 @@
Parameters:
Source:
@@ -758948,7 +264951,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -758959,7 +264962,7 @@
Returns:
-WineShortcut +Resource
@@ -759136,165 +265139,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -761629,7 +267473,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -761637,7 +267481,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -761673,7 +267517,7 @@

Parameters:
- trustlevel + trustLevel @@ -761689,7 +267533,7 @@
Parameters:
- + The trust level @@ -761730,7 +267574,7 @@
Parameters:
Source:
@@ -761759,7 +267603,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -761770,7 +267614,7 @@
Returns:
-QuickScript +WineShortcut
@@ -761788,7 +267632,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -761796,7 +267640,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -761832,7 +267676,7 @@

Parameters:
- trustLevel + trustlevel @@ -761848,7 +267692,7 @@
Parameters:
- The trust level + @@ -761889,7 +267733,7 @@
Parameters:
Source:
@@ -761918,7 +267762,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -761929,7 +267773,7 @@
Returns:
-WineShortcut +QuickScript
@@ -763254,13 +269098,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -763282,8 +269130,6 @@
Parameters:
Type - Attributes - @@ -763309,20 +269155,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -763363,7 +269199,7 @@
Parameters:
Source:
@@ -763391,6 +269227,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -763399,10 +269239,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -763579,17 +269416,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -763611,6 +269444,8 @@
Parameters:
Type + Attributes + @@ -763636,10 +269471,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -763680,7 +269525,7 @@
Parameters:
Source:
@@ -763708,10 +269553,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -763720,7 +269561,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -763754,7 +269598,7 @@
Returns:

default()

-
Verb to install Nvidia PhysX
+
Tool to kill running Wine processes
@@ -763817,7 +269661,7 @@

new defaultSource:
@@ -765629,7 +271473,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -765637,7 +271481,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -765689,7 +271533,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -765730,7 +271574,7 @@
Parameters:
Source:
@@ -765759,7 +271603,7 @@
Returns:
- The Resource object + The Downloader object
@@ -765770,7 +271614,7 @@
Returns:
-Resource +Downloader
@@ -765788,7 +271632,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -765796,7 +271640,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -765848,7 +271692,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -765889,7 +271733,7 @@
Parameters:
Source:
@@ -765918,7 +271762,7 @@
Returns:
- The Downloader object + The Resource object
@@ -765929,7 +271773,7 @@
Returns:
-Downloader +Resource
@@ -765947,7 +271791,7 @@
Returns:
-

create() → {void}

+

create() → {Wine}

@@ -765955,7 +271799,7 @@

create - Creates a new shortcut + runs "wineboot" @@ -765999,7 +271843,7 @@

createSource:
@@ -766027,6 +271871,10 @@

createReturns:

+
+ The Wine object +
+
@@ -766035,7 +271883,7 @@
Returns:
-void +Wine
@@ -766053,7 +271901,7 @@
Returns:
-

create() → {Wine}

+

create() → {void}

@@ -766061,7 +271909,7 @@

create - runs "wineboot" + Creates a new shortcut @@ -766105,7 +271953,7 @@

createSource:
@@ -766133,10 +271981,6 @@

createReturns:

-
- The Wine object -
-
@@ -766145,7 +271989,7 @@
Returns:
-Wine +void
@@ -766525,13 +272369,173 @@
Parameters:
- setupWizard + setupWizard + + + + + +SetupWizard + + + + + + + + + + The setup wizard + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The .exe file entry that can be used to continue the installation +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

downloadFinished(wine) → {boolean}

+ + + + + + +
+ Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -766582,7 +272586,7 @@
Parameters:
Source:
@@ -766611,7 +272615,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + True if the download has finished, false otherwise
@@ -766622,7 +272626,7 @@
Returns:
-String +boolean
@@ -766640,7 +272644,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

downloadStarted(wine) → {boolean}

@@ -766648,7 +272652,7 @@

environmen
- set environment + Checks whether the software download has started
@@ -766684,13 +272688,13 @@

Parameters:
- + + @@ -766741,7 +272745,7 @@
Parameters:
Source:
@@ -766770,7 +272774,7 @@
Returns:
- QuickScript object + True if the download has started, false otherwise
@@ -766781,7 +272785,7 @@
Returns:
-QuickScript +boolean
@@ -766958,6 +272962,165 @@
Returns:
+

environment(environment) → {QuickScript}

+ + + + + + +
+ set environment +
+ + + + + + + + + +
Parameters:
+ + +
NameTypeDescription
wine -SetupWizard +Wine @@ -766541,7 +272545,7 @@
Parameters:
-
The setup wizardThe wine engine object
environmentwine -string +Wine @@ -766700,7 +272704,7 @@
Parameters:
-
variablesThe wine engine object
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + + + variables
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ QuickScript object +
+ + + +
+
+ Type +
+
+ +QuickScript + + +
+
+ + + + + + + + + + + + +

executable(executable, args)

@@ -767072,7 +273235,91 @@
Parameters:
Source:
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

fontDirectory() → {string}

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
@@ -767097,6 +273344,28 @@
Parameters:
+
Returns:
+ + +
+ font directory +
+ + + +
+
+ Type +
+
+ +string + + +
+
+ + @@ -767108,13 +273377,17 @@
Parameters:
-

fontDirectory() → {string}

+

get() → {string}

+
+ Fetches the Resource and returns the path leading to the downloaded resource +
+ @@ -767156,7 +273429,7 @@

fontDire
Source:
@@ -767185,7 +273458,7 @@

Returns:
- font directory + The path leading to the downloaded resource
@@ -767214,6 +273487,116 @@
Returns:
+

get() → {String}

+ + + + + + +
+ Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +
Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + +

get(resourceName) → {Resource}

@@ -767373,7 +273756,7 @@
Returns:
-

get() → {string}

+

getContainer() → {string}

@@ -767381,7 +273764,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + Returns the name of the container belonging to a shortcut @@ -767425,7 +273808,7 @@

getSource:
@@ -767454,7 +273837,7 @@
Returns:
- The path leading to the downloaded resource + The container name
@@ -767483,7 +273866,7 @@
Returns:
-

get() → {String}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -767491,7 +273874,7 @@

get - Gets the content of the downloaded file + Sets one setup file name so that the script can fetch it from gog.com @@ -767502,6 +273885,55 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileName + + + + + +string + + + + + + + + + + The setup file name + + + + + + + @@ -767535,7 +273967,7 @@

getSource:
@@ -767564,7 +273996,7 @@
Returns:
- The content of downloaded file + This
@@ -767575,7 +274007,7 @@
Returns:
-String +GogScript
@@ -767593,7 +274025,7 @@
Returns:
-

getContainer() → {string}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -767601,7 +274033,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -767612,6 +274044,55 @@

getContai +

Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
setupFileNames + + +Array.<string> + + + + The setup file name(s)
+ + @@ -767645,7 +274126,7 @@

getContai
Source:
@@ -767674,7 +274155,7 @@

Returns:
- The container name + This
@@ -767685,7 +274166,7 @@
Returns:
-string +GogScript
@@ -767703,7 +274184,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

headers(headers) → {Downloader}

@@ -767711,7 +274192,7 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Sets the http headers
@@ -767747,13 +274228,13 @@

Parameters:
- setupFileName + headers -string +Object @@ -767763,7 +274244,7 @@
Parameters:
- The setup file name + The http headers @@ -767804,7 +274285,7 @@
Parameters:
Source:
@@ -767833,7 +274314,7 @@
Returns:
- This + The Downloader object
@@ -767844,7 +274325,7 @@
Returns:
-GogScript +Downloader
@@ -767862,7 +274343,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

json() → {any}

@@ -767870,7 +274351,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Gets the content of the downloaded file and returns it as a JSON value
@@ -767881,55 +274362,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -767963,7 +274395,7 @@
Parameters:
Source:
@@ -767992,7 +274424,7 @@
Returns:
- This + The json value
@@ -768003,7 +274435,7 @@
Returns:
-GogScript +any
@@ -768021,7 +274453,7 @@
Returns:
-

headers(headers) → {Downloader}

+

kill() → {Wine}

@@ -768029,7 +274461,7 @@

headers - Sets the http headers + kill wine server @@ -768040,55 +274472,6 @@

headersParameters:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
headers - - -Object - - - - The http headers
- - @@ -768122,7 +274505,7 @@
Parameters:
Source:
@@ -768150,10 +274533,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -768162,7 +274541,7 @@
Returns:
-Downloader +Wine
@@ -768180,7 +274559,7 @@
Returns:
-

json() → {any}

+

loginToGog(setupWizard) → {GogScript}

@@ -768188,7 +274567,8 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -768199,114 +274579,53 @@

json - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - +
Parameters:
-

- - - - - - - - - - - - - - - -
Returns:
+ + + + + -
- The json value -
- + -
-
- Type -
-
-any + -
-
+ + + + + + + + + - - + - -

kill() → {Wine}

- + + - - - -
- kill wine server -
- - - - - - - + +
NameTypeDescription
setupWizard + + +SetupWizard + + The setupWizard to use
@@ -768342,7 +274661,7 @@

killSource:
@@ -768370,6 +274689,10 @@

kill + This + +
@@ -768378,7 +274701,7 @@
Returns:
-Wine +GogScript
@@ -768396,7 +274719,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

message(message) → {Downloader}

@@ -768404,8 +274727,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Sets the download message text
@@ -768441,13 +274763,13 @@

Parameters:
- setupWizard + message -SetupWizard +string @@ -768457,7 +274779,7 @@
Parameters:
- The setupWizard to use + The download message @@ -768498,7 +274820,7 @@
Parameters:
Source:
@@ -768527,7 +274849,7 @@
Returns:
- This + The Downloader object
@@ -768538,7 +274860,7 @@
Returns:
-GogScript +Downloader
@@ -768556,7 +274878,7 @@
Returns:
-

message(message) → {Downloader}

+

miniature(miniature) → {WineShortcut}

@@ -768564,7 +274886,7 @@

message - Sets the download message text + Sets the miniature for the shortcut @@ -768600,13 +274922,16 @@
Parameters:
- message + miniature -string +Array.<string> +| + +URI @@ -768616,7 +274941,7 @@
Parameters:
- The download message + An array which specifies the application of which the miniature shall be used or URI of the miniature @@ -768657,7 +274982,7 @@
Parameters:
Source:
@@ -768686,7 +275011,7 @@
Returns:
- The Downloader object + The WineShortcut object
@@ -768697,7 +275022,7 @@
Returns:
-Downloader +WineShortcut
@@ -768864,7 +275189,7 @@
Parameters:
-

miniature(miniature) → {WineShortcut}

+

name(name) → {Resource}

@@ -768872,7 +275197,7 @@

miniature - Sets the miniature for the shortcut + Sets the resource name @@ -768908,16 +275233,13 @@
Parameters:
- miniature + name -Array.<string> -| - -URI +string @@ -768927,7 +275249,7 @@
Parameters:
- An array which specifies the application of which the miniature shall be used or URI of the miniature + The name of the resource @@ -768968,7 +275290,7 @@
Parameters:
Source:
@@ -768997,7 +275319,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -769008,7 +275330,7 @@
Returns:
-WineShortcut +Resource
@@ -769185,165 +275507,6 @@
Returns:
-

name(name) → {Resource}

- - - - - - -
- Sets the resource name -
- - - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
name - - -string - - - - The name of the resource
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - -
- The Resource object -
- - - -
-
- Type -
-
- -Resource - - -
-
- - - - - - - - - - - - -

of(shortcut) → {void}

@@ -771678,7 +277841,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -771686,7 +277849,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -771722,7 +277885,7 @@

Parameters:
- trustlevel + trustLevel @@ -771738,7 +277901,7 @@
Parameters:
- + The trust level @@ -771779,7 +277942,7 @@
Parameters:
Source:
@@ -771808,7 +277971,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -771819,7 +277982,7 @@
Returns:
-QuickScript +WineShortcut
@@ -771837,7 +278000,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -771845,7 +278008,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -771881,7 +278044,7 @@

Parameters:
- trustLevel + trustlevel @@ -771897,7 +278060,7 @@
Parameters:
- The trust level + @@ -771938,7 +278101,7 @@
Parameters:
Source:
@@ -771967,7 +278130,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -771978,7 +278141,7 @@
Returns:
-WineShortcut +QuickScript
@@ -773303,13 +279466,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -773331,8 +279498,6 @@
Parameters:
Type - Attributes - @@ -773358,20 +279523,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -773412,7 +279567,7 @@
Parameters:
Source:
@@ -773440,6 +279595,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -773448,10 +279607,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -773628,17 +279784,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -773660,6 +279812,8 @@
Parameters:
Type + Attributes + @@ -773685,10 +279839,20 @@
Parameters:
+ + + <optional>
+ + + + + - The setup wizard + + + @@ -773729,7 +279893,7 @@
Parameters:
Source:
@@ -773757,10 +279921,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -773769,7 +279929,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -773803,7 +279966,7 @@
Returns:

default()

-
Verb to install QuickTime 7.6
+
Tool to configure Wine
@@ -773866,7 +280029,7 @@

new defaultSource:
@@ -775678,7 +281841,7 @@
Returns:
-

checksum(checksum) → {Resource}

+

checksum(checksum) → {Downloader}

@@ -775686,7 +281849,7 @@

checksum - Sets the checksum which shall be used to verify the resource + Sets the checksum @@ -775738,7 +281901,7 @@
Parameters:
- The checksum + The checksum which shall be used to verify the download @@ -775779,7 +281942,7 @@
Parameters:
Source:
@@ -775808,7 +281971,7 @@
Returns:
- The Resource object + The Downloader object
@@ -775819,7 +281982,7 @@
Returns:
-Resource +Downloader
@@ -775837,7 +282000,7 @@
Returns:
-

checksum(checksum) → {Downloader}

+

checksum(checksum) → {Resource}

@@ -775845,7 +282008,7 @@

checksum - Sets the checksum + Sets the checksum which shall be used to verify the resource @@ -775897,7 +282060,7 @@
Parameters:
- The checksum which shall be used to verify the download + The checksum @@ -775938,7 +282101,7 @@
Parameters:
Source:
@@ -775967,7 +282130,7 @@
Returns:
- The Downloader object + The Resource object
@@ -775978,113 +282141,7 @@
Returns:
-Downloader - - -
-

- - - - - - - - - - - - - -

create() → {void}

- - - - - - -
- Creates a new shortcut -
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Source:
-
- - - - - - - -
- - - - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -void +Resource
@@ -776212,7 +282269,7 @@
Returns:
-

description(description) → {WineShortcut}

+

create() → {void}

@@ -776220,7 +282277,7 @@

descriptio
- Sets the shortcut description + Creates a new shortcut
@@ -776231,55 +282288,6 @@

descriptio -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
description - - -string - - - - The shortcut description
- - @@ -776313,7 +282321,7 @@
Parameters:
Source:
@@ -776341,10 +282349,6 @@
Parameters:
Returns:
-
- The WineShortcut object -
-
@@ -776353,7 +282357,7 @@
Returns:
-WineShortcut +void
@@ -776371,7 +282375,7 @@
Returns:
-

directory(directory) → {Resource}

+

description(description) → {WineShortcut}

@@ -776379,7 +282383,7 @@

directory - Sets the directory inside the resources directory where the Resource is stored + Sets the shortcut description @@ -776415,7 +282419,7 @@
Parameters:
- directory + description @@ -776431,7 +282435,7 @@
Parameters:
- The directory path + The shortcut description @@ -776472,7 +282476,7 @@
Parameters:
Source:
@@ -776501,7 +282505,7 @@
Returns:
- The Resource object + The WineShortcut object
@@ -776512,7 +282516,7 @@
Returns:
-Resource +WineShortcut
@@ -776530,7 +282534,7 @@
Returns:
-

download(setupWizard) → {String}

+

directory(directory) → {Resource}

@@ -776538,7 +282542,7 @@

download - Download the setup resources in the same directory, and returns the path of the .exe + Sets the directory inside the resources directory where the Resource is stored @@ -776574,13 +282578,13 @@
Parameters:
- setupWizard + directory -SetupWizard +string @@ -776590,7 +282594,7 @@
Parameters:
- The setup wizard + The directory path @@ -776631,7 +282635,7 @@
Parameters:
Source:
@@ -776660,7 +282664,7 @@
Returns:
- The .exe file entry that can be used to continue the installation + The Resource object
@@ -776671,7 +282675,7 @@
Returns:
-String +Resource
@@ -776689,7 +282693,7 @@
Returns:
-

environment(environment) → {QuickScript}

+

download(setupWizard) → {String}

@@ -776697,7 +282701,7 @@

environmen
- set environment + Download the setup resources in the same directory, and returns the path of the .exe
@@ -776733,13 +282737,13 @@

Parameters:
- environment + setupWizard -string +SetupWizard @@ -776749,7 +282753,7 @@
Parameters:
- variables + The setup wizard @@ -776790,7 +282794,7 @@
Parameters:
Source:
@@ -776819,7 +282823,7 @@
Returns:
- QuickScript object + The .exe file entry that can be used to continue the installation
@@ -776830,7 +282834,7 @@
Returns:
-QuickScript +String
@@ -776848,7 +282852,7 @@
Returns:
-

environment(environment) → {WineShortcut}

+

downloadFinished(wine) → {boolean}

@@ -776856,7 +282860,8 @@

environmen
- Sets the shortcut environment variables + Checks whether the software download has finished. +To get a valid result with this method `downloadStarted(wine)` needs to return `true` first
@@ -776892,13 +282897,13 @@

Parameters:
- environment + wine -string +Wine @@ -776908,7 +282913,7 @@
Parameters:
- The environment variables + The wine engine object @@ -776949,7 +282954,7 @@
Parameters:
Source:
@@ -776978,7 +282983,7 @@
Returns:
- The WineShortcut object + True if the download has finished, false otherwise
@@ -776989,7 +282994,7 @@
Returns:
-WineShortcut +boolean
@@ -777007,7 +283012,7 @@
Returns:
-

executable(executable, args)

+

downloadStarted(wine) → {boolean}

@@ -777015,7 +283020,7 @@

executable<
- set executable + Checks whether the software download has started
@@ -777051,28 +283056,15 @@

Parameters:
- executable + wine - - - - - - - executable without path (e.g. "Steam.exe") - - - + +Wine - - - args - - @@ -777080,7 +283072,7 @@
Parameters:
- use array (e.g. ["-applaunch", 409160]) + The wine engine object @@ -777121,7 +283113,7 @@
Parameters:
Source:
@@ -777146,6 +283138,28 @@
Parameters:
+
Returns:
+ + +
+ True if the download has started, false otherwise +
+ + + +
+
+ Type +
+
+ +boolean + + +
+
+ + @@ -777157,19 +283171,72 @@
Parameters:
-

fontDirectory() → {string}

+

environment(environment) → {WineShortcut}

+
+ Sets the shortcut environment variables +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
environment + + +string + + The environment variables
@@ -777205,7 +283272,7 @@

fontDire
Source:
@@ -777234,7 +283301,7 @@

Returns:
- font directory + The WineShortcut object
@@ -777245,7 +283312,7 @@
Returns:
-string +WineShortcut
@@ -777263,7 +283330,7 @@
Returns:
-

get(resourceName) → {Resource}

+

environment(environment) → {QuickScript}

@@ -777271,7 +283338,7 @@

get - Returns the searched resource + set environment @@ -777307,7 +283374,7 @@
Parameters:
- resourceName + environment @@ -777323,7 +283390,7 @@
Parameters:
- The name of the resource + variables @@ -777364,7 +283431,7 @@
Parameters:
Source:
@@ -777393,7 +283460,7 @@
Returns:
- The found resource + QuickScript object
@@ -777404,7 +283471,7 @@
Returns:
-Resource +QuickScript
@@ -777422,7 +283489,7 @@
Returns:
-

get() → {string}

+

executable(executable, args)

@@ -777430,7 +283497,7 @@

get - Fetches the Resource and returns the path leading to the downloaded resource + set executable @@ -777441,6 +283508,68 @@

get + + + + Name + + + Type + + + + + + Description + + + + + + + + + executable + + + + + + + + + + + executable without path (e.g. "Steam.exe") + + + + + + + args + + + + + + + + + + + use array (e.g. ["-applaunch", 409160]) + + + + + + + @@ -777474,7 +283603,7 @@

getSource:
@@ -777499,28 +283628,6 @@

get - The path leading to the downloaded resource - - - - -
-
- Type -
-
- -string - - -
-
- - @@ -777532,17 +283639,13 @@
Returns:
-

get() → {String}

+

fontDirectory() → {string}

-
- Gets the content of the downloaded file -
- @@ -777584,7 +283687,7 @@

getSource:
@@ -777613,7 +283716,7 @@
Returns:
- The content of downloaded file + font directory
@@ -777624,7 +283727,7 @@
Returns:
-String +string
@@ -777642,7 +283745,7 @@
Returns:
-

getContainer() → {string}

+

get() → {string}

@@ -777650,7 +283753,7 @@

getContai
- Returns the name of the container belonging to a shortcut + Fetches the Resource and returns the path leading to the downloaded resource
@@ -777694,7 +283797,7 @@

getContai
Source:
@@ -777723,7 +283826,7 @@

Returns:
- The container name + The path leading to the downloaded resource
@@ -777752,7 +283855,7 @@
Returns:
-

gogSetupFileName(setupFileName) → {GogScript}

+

get() → {String}

@@ -777760,7 +283863,117 @@

gogSe
- Sets one setup file name so that the script can fetch it from gog.com + Gets the content of the downloaded file +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + +

Returns:
+ + +
+ The content of downloaded file +
+ + + +
+
+ Type +
+
+ +String + + +
+
+ + + + + + + + + + + + + +

get(resourceName) → {Resource}

+ + + + + + +
+ Returns the searched resource
@@ -777796,7 +284009,7 @@
Parameters:
- setupFileName + resourceName @@ -777812,7 +284025,7 @@
Parameters:
- The setup file name + The name of the resource @@ -777853,7 +284066,7 @@
Parameters:
Source:
@@ -777882,7 +284095,7 @@
Returns:
- This + The found resource
@@ -777893,7 +284106,7 @@
Returns:
-GogScript +Resource
@@ -777911,7 +284124,7 @@
Returns:
-

gogSetupFileNames(setupFileNames) → {GogScript}

+

getContainer() → {string}

@@ -777919,7 +284132,7 @@

gogS
- Sets the setup file(s) name so that the script can fetch it from gog.com + Returns the name of the container belonging to a shortcut
@@ -777930,55 +284143,6 @@

gogS -

Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setupFileNames - - -Array.<string> - - - - The setup file name(s)
- - @@ -778012,7 +284176,7 @@
Parameters:
Source:
@@ -778041,7 +284205,7 @@
Returns:
- This + The container name
@@ -778052,7 +284216,7 @@
Returns:
-GogScript +string
@@ -778070,7 +284234,7 @@
Returns:
-

headers(headers) → {Downloader}

+

gogSetupFileName(setupFileName) → {GogScript}

@@ -778078,7 +284242,7 @@

headers - Sets the http headers + Sets one setup file name so that the script can fetch it from gog.com @@ -778114,13 +284278,13 @@
Parameters:
- headers + setupFileName -Object +string @@ -778130,7 +284294,7 @@
Parameters:
- The http headers + The setup file name @@ -778171,7 +284335,7 @@
Parameters:
Source:
@@ -778200,7 +284364,7 @@
Returns:
- The Downloader object + This
@@ -778211,7 +284375,7 @@
Returns:
-Downloader +GogScript
@@ -778229,7 +284393,7 @@
Returns:
-

json() → {any}

+

gogSetupFileNames(setupFileNames) → {GogScript}

@@ -778237,7 +284401,7 @@

json - Gets the content of the downloaded file and returns it as a JSON value + Sets the setup file(s) name so that the script can fetch it from gog.com @@ -778248,6 +284412,55 @@

json + + + + Name + + + Type + + + + + + Description + + + + + + + + + setupFileNames + + + + + +Array.<string> + + + + + + + + + + The setup file name(s) + + + + + + + @@ -778281,7 +284494,7 @@

jsonSource:
@@ -778310,7 +284523,7 @@
Returns:
- The json value + This
@@ -778321,7 +284534,7 @@
Returns:
-any +GogScript
@@ -778339,7 +284552,7 @@
Returns:
-

kill() → {Wine}

+

headers(headers) → {Downloader}

@@ -778347,7 +284560,7 @@

kill - kill wine server + Sets the http headers @@ -778358,6 +284571,55 @@

kill + + + + Name + + + Type + + + + + + Description + + + + + + + + + headers + + + + + +Object + + + + + + + + + + The http headers + + + + + + + @@ -778391,7 +284653,7 @@

killSource:
@@ -778419,6 +284681,10 @@

kill + The Downloader object + +
@@ -778427,7 +284693,7 @@
Returns:
-Wine +Downloader
@@ -778445,7 +284711,7 @@
Returns:
-

loginToGog(setupWizard) → {GogScript}

+

json() → {any}

@@ -778453,8 +284719,7 @@

loginToGog<
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later. -Stores the tocken in a parameter + Gets the content of the downloaded file and returns it as a JSON value
@@ -778465,53 +284730,114 @@

loginToGog< -

Parameters:
+ + + + +
+ - - - - - - + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + + + + + + + + + + - + + + + + + +
Returns:
+
+ The json value +
+ + +
+
+ Type +
+
+any -
- - - + + + - - - - - + - + - - + +

kill() → {Wine}

+ - -
NameTypeDescription
setupWizard - - -SetupWizard - - The setupWizard to use
+ + + +
+ kill wine server +
+ + + + + + + @@ -778547,7 +284873,7 @@
Parameters:
Source:
@@ -778575,10 +284901,6 @@
Parameters:
Returns:
-
- This -
-
@@ -778587,7 +284909,7 @@
Returns:
-GogScript +Wine
@@ -778605,7 +284927,7 @@
Returns:
-

message(message) → {Downloader}

+

loginToGog(setupWizard) → {GogScript}

@@ -778613,7 +284935,8 @@

message - Sets the download message text + Presents a Gog.com login window to the user, login to its account and return a token that can be used later. +Stores the tocken in a parameter @@ -778649,13 +284972,13 @@
Parameters:
- message + setupWizard -string +SetupWizard @@ -778665,7 +284988,7 @@
Parameters:
- The download message + The setupWizard to use @@ -778706,7 +285029,7 @@
Parameters:
Source:
@@ -778735,7 +285058,7 @@
Returns:
- The Downloader object + This
@@ -778746,7 +285069,7 @@
Returns:
-Downloader +GogScript
@@ -778764,7 +285087,7 @@
Returns:
-

miniature(miniatureopt)

+

message(message) → {Downloader}

@@ -778772,7 +285095,7 @@

miniature - get/set miniature (for the installation and the shortcut) + Sets the download message text @@ -778796,8 +285119,6 @@
Parameters:
Type - Attributes - @@ -778810,33 +285131,23 @@
Parameters:
- miniature + message -URI +string - - - <optional>
- - - - - - - - path to the miniature file + The download message @@ -778877,7 +285188,7 @@
Parameters:
Source:
@@ -778902,6 +285213,28 @@
Parameters:
+
Returns:
+ + +
+ The Downloader object +
+ + + +
+
+ Type +
+
+ +Downloader + + +
+
+ + @@ -779075,7 +285408,7 @@
Returns:
-

name(name) → {WineShortcut}

+

miniature(miniatureopt)

@@ -779083,7 +285416,156 @@

name - Sets the shortcut name + get/set miniature (for the installation and the shortcut) + + + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
miniature + + +URI + + + + + + <optional>
+ + + + + +
path to the miniature file
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

name(name) → {Resource}

+ + + + + + +
+ Sets the resource name
@@ -779135,7 +285617,7 @@
Parameters:
- The shortcut name + The name of the resource @@ -779176,7 +285658,7 @@
Parameters:
Source:
@@ -779205,7 +285687,7 @@
Returns:
- The WineShortcut object + The Resource object
@@ -779216,7 +285698,7 @@
Returns:
-WineShortcut +Resource
@@ -779234,7 +285716,7 @@
Returns:
-

name(name) → {Resource}

+

name(name) → {WineShortcut}

@@ -779242,7 +285724,7 @@

name - Sets the resource name + Sets the shortcut name @@ -779294,7 +285776,7 @@
Parameters:
- The name of the resource + The shortcut name @@ -779335,7 +285817,7 @@
Parameters:
Source:
@@ -779364,7 +285846,7 @@
Returns:
- The Resource object + The WineShortcut object
@@ -779375,7 +285857,7 @@
Returns:
-Resource +WineShortcut
@@ -781727,7 +288209,7 @@
Returns:
-

trustLevel(trustlevel) → {QuickScript}

+

trustLevel(trustLevel) → {WineShortcut}

@@ -781735,7 +288217,7 @@

trustLevel<
- set trust level + Sets the trust level
@@ -781771,7 +288253,7 @@

Parameters:
- trustlevel + trustLevel @@ -781787,7 +288269,7 @@
Parameters:
- + The trust level @@ -781828,7 +288310,7 @@
Parameters:
Source:
@@ -781857,7 +288339,7 @@
Returns:
- QuickScript object + The WineShortcut object
@@ -781868,7 +288350,7 @@
Returns:
-QuickScript +WineShortcut
@@ -781886,7 +288368,7 @@
Returns:
-

trustLevel(trustLevel) → {WineShortcut}

+

trustLevel(trustlevel) → {QuickScript}

@@ -781894,7 +288376,7 @@

trustLevel<
- Sets the trust level + set trust level
@@ -781930,7 +288412,7 @@

Parameters:
- trustLevel + trustlevel @@ -781946,7 +288428,7 @@
Parameters:
- The trust level + @@ -781987,7 +288469,7 @@
Parameters:
Source:
@@ -782016,7 +288498,7 @@
Returns:
- The WineShortcut object + QuickScript object
@@ -782027,7 +288509,7 @@
Returns:
-WineShortcut +QuickScript
@@ -783352,13 +289834,17 @@
Returns:
-

wizard(wizardopt) → {SetupWizard|Wine}

+

wizard(wizard) → {Downloader}

+
+ Sets the setup wizard +
+ @@ -783380,8 +289866,6 @@
Parameters:
Type - Attributes - @@ -783407,20 +289891,10 @@
Parameters:
- - - <optional>
- - - - - - - - + The setup wizard @@ -783461,7 +289935,7 @@
Parameters:
Source:
@@ -783489,6 +289963,10 @@
Parameters:
Returns:
+
+ The Downloader object +
+
@@ -783497,10 +289975,7 @@
Returns:
-SetupWizard -| - -Wine +Downloader
@@ -783677,17 +290152,13 @@
Returns:
-

wizard(wizard) → {Downloader}

+

wizard(wizardopt) → {SetupWizard|Wine}

-
- Sets the setup wizard -
- @@ -783709,6 +290180,8 @@
Parameters:
Type + Attributes + @@ -783734,10 +290207,20 @@
Parameters:
+ + + <optional>
+ + + + + + + - The setup wizard + @@ -783778,7 +290261,7 @@
Parameters:
Source:
@@ -783806,10 +290289,6 @@
Parameters:
Returns:
-
- The Downloader object -
-
@@ -783818,7 +290297,10 @@
Returns:
-Downloader +SetupWizard +| + +Wine
@@ -783846,7 +290328,7 @@
Returns:

diff --git a/i18n/Messages.properties b/i18n/Messages.properties index 6616e9d8dc..2c02db0170 100644 --- a/i18n/Messages.properties +++ b/i18n/Messages.properties @@ -239,10 +239,10 @@ Call\ of\ Juarez\u00ae\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:403 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Engines/Wine/Engine/Implementation/script.js:484 +#: Engines/Wine/Engine/Implementation/script.js:492 Change\ {0}\ container\ Wine\ version=Change {0} container Wine version #: Utils/Functions/Filesystem/Files/script.js:215 @@ -301,7 +301,7 @@ Custom\ Installer\ Script=Custom Installer Script #: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 D9VK=D9VK -#: Engines/Wine/Verbs/D9VK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:44 D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 @@ -319,7 +319,7 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp @@ -353,20 +353,20 @@ DirectDraw\ renderer=DirectDraw renderer #: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:45 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:220 Downloading\ amd64\ runtime...=Downloading amd64 runtime... -#: Engines/Wine/Engine/Implementation/script.js:124 -#: Engines/Wine/Engine/Implementation/script.js:155 +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 Downloading\ runtime\ json...=Downloading runtime json... -#: Engines/Wine/Engine/Implementation/script.js:245 +#: Engines/Wine/Engine/Implementation/script.js:251 Downloading\ x86\ runtime...=Downloading x86 runtime... #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed @@ -382,10 +382,10 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Space Engineers/Steam/script.js:25 +#: Applications/Games/Space Engineers/Steam/script.js:49 Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. -#: Applications/Games/Subnautica/Steam/script.js:30 +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). #: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 @@ -456,15 +456,15 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it\u2019s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:17 -#: Engines/Wine/Verbs/d3dx10/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:17 -#: Engines/Wine/Verbs/d3dx11/script.js:40 Engines/Wine/Verbs/xact/script.js:17 -#: Engines/Wine/Verbs/xact/script.js:19 Engines/Wine/Verbs/xact/script.js:55 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:17 -#: Engines/Wine/Verbs/d3dx9/script.js:39 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 @@ -491,7 +491,7 @@ Far\ Cry\u00ae\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry\u00ae\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80\u2019s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. -#: Engines/Wine/Engine/Implementation/script.js:313 +#: Engines/Wine/Engine/Implementation/script.js:321 Fetching\ available\ Wine\ versions...=Fetching available Wine versions... #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 @@ -621,7 +621,7 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:23 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt #: Applications/Games/Mass Effect 2/Origin/script.js:17 @@ -661,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:61 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:303 -#: 6.0/Online/script.js:149 Engines/Wine/Verbs/corefonts/script.js:87 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installing {0}... #: i18n/tmp/Applications/Internet/category.js:1 @@ -847,7 +847,7 @@ Office=Office #: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Steam/script.js:14 2/Local/script.js:15 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 @@ -967,22 +967,22 @@ Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensu #: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/D9VK/script.js:24 +#: Engines/Wine/Verbs/D9VK/script.js:50 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. -#: Engines/Wine/Verbs/DXVK/script.js:24 +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:21 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. #: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:117 +#: Engines/Wine/QuickScript/Steam Script/script.js:137 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:16 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 @@ -991,19 +991,19 @@ Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ #: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:42 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:58 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/Engine/Implementation/script.js:512 +#: Engines/Wine/Engine/Implementation/script.js:520 Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. #: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:91 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=Please select the executable. #: Engines/Wine/QuickScript/Local Installer Script/script.js:25 @@ -1012,12 +1012,11 @@ Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Engine/Implementation/script.js:514 +#: Engines/Wine/Engine/Implementation/script.js:522 Please\ select\ the\ version\ of\ wine.=Please select the version of wine. -#: Engines/Wine/Verbs/DXVK/script.js:114 Engines/Wine/Verbs/FAudio/script.js:71 -#: Engines/Wine/Verbs/gallium9/script.js:92 Engines/Wine/Verbs/VK9/script.js:90 -#: Engines/Wine/Verbs/D9VK/script.js:87 +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. #: Engines/Wine/QuickScript/Installer Script/script.js:36 @@ -1029,7 +1028,7 @@ Please\ select\ the\ wine\ distribution.=Please select the wine distribution. #: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:151 +#: Engines/Wine/QuickScript/Steam Script/script.js:182 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... #: Engines/Wine/QuickScript/Uplay Script/script.js:77 @@ -1043,66 +1042,63 @@ Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded. #: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet472/script.js:37 -#: Engines/Wine/Verbs/vcrun2012/script.js:20 -#: Engines/Wine/Verbs/vcrun2012/script.js:31 -#: Engines/Wine/Verbs/vcrun2003/script.js:20 -#: Engines/Wine/Verbs/d3drm/script.js:21 -#: Engines/Wine/Verbs/dotnet20sp2/script.js:37 -#: Engines/Wine/Verbs/dotnet20sp2/script.js:53 -#: Engines/Wine/Verbs/msxml3/script.js:26 -#: Engines/Wine/Verbs/vcrun2013/script.js:20 -#: Engines/Wine/Verbs/vcrun2013/script.js:31 -#: Engines/Wine/Verbs/dotnet462/script.js:37 -#: Engines/Wine/Verbs/vcrun2017/script.js:20 -#: Engines/Wine/Verbs/vcrun2017/script.js:31 -#: Engines/Wine/Verbs/dotnet46/script.js:36 -#: Engines/Wine/Verbs/vcrun2005/script.js:19 -#: Engines/Wine/Verbs/dotnet452/script.js:37 -#: Engines/Wine/Verbs/amstream/script.js:23 -#: Engines/Wine/Verbs/amstream/script.js:42 -#: Engines/Wine/Verbs/devenum/script.js:22 -#: Engines/Wine/Verbs/dotnet461/script.js:37 -#: Engines/Wine/Verbs/vcrun2015/script.js:20 -#: Engines/Wine/Verbs/vcrun2015/script.js:31 -#: Engines/Wine/Verbs/dotnet40/script.js:37 -#: Engines/Wine/Verbs/vcrun2010/script.js:20 -#: Engines/Wine/Verbs/vcrun2010/script.js:31 -#: Engines/Wine/Verbs/dotnet45/script.js:37 -#: Engines/Wine/Verbs/vcrun6sp6/script.js:32 -#: Engines/Wine/Verbs/msxml6/script.js:37 -#: Engines/Wine/Verbs/msxml6/script.js:40 -#: Engines/Wine/Verbs/gdiplus/script.js:20 -#: Engines/Wine/Verbs/vcrun2008/script.js:20 -#: Engines/Wine/Verbs/vcrun2008/script.js:31 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:17 Engines/Wine/Verbs/PhysX/script.js:19 -#: Engines/Wine/Verbs/dotnet20/script.js:29 -#: Engines/Wine/Verbs/dotnet20/script.js:48 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:46 +#: Engines/Wine/Verbs/msxml6/script.js:59 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... #: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:145 -#: Engines/Wine/Verbs/dotnet472/script.js:40 Engines/Wine/Verbs/Remove -#: Mono/script.js:13 Mono/script.js:16 Mono/script.js:19 -#: Engines/Wine/Verbs/dotnet462/script.js:40 -#: Engines/Wine/Verbs/dotnet46/script.js:39 -#: Engines/Wine/Verbs/d3dx10/script.js:38 -#: Engines/Wine/Verbs/dotnet452/script.js:40 -#: Engines/Wine/Verbs/dotnet461/script.js:40 -#: Engines/Wine/Verbs/dotnet40/script.js:40 -#: Engines/Wine/Verbs/dotnet40/script.js:47 -#: Engines/Wine/Verbs/dotnet45/script.js:40 -#: Engines/Wine/Verbs/d3dx11/script.js:39 -#: Engines/Wine/Verbs/corefonts/script.js:86 -#: Engines/Wine/Verbs/xact/script.js:54 Engines/Wine/Verbs/d3dx9/script.js:38 -#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 -#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip -#: Script/script.js:38 Script/script.js:64 Engines/Wine/QuickScript/Installer -#: Script/script.js:84 Script/script.js:100 Engines/Wine/QuickScript/Origin -#: Script/script.js:52 Script/script.js:57 Script/script.js:65 -#: Engines/Wine/QuickScript/Uplay Script/script.js:70 Script/script.js:90 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:173 Script/script.js:178 +#: Script/script.js:198 Script/script.js:213 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 @@ -1170,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:34 Engines/Wine/Verbs/xact/script.js:36 -Registering\ {0}...=Registering {0}... - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=Registry Editor @@ -1265,7 +1258,7 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:34 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=Select your region\: #: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 @@ -1613,28 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. #: Applications/Games/Sprouts Adventure/Local/script.js:13 This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). -#: Engines/Wine/Verbs/dotnet472/script.js:17 -#: Engines/Wine/Verbs/dotnet472/script.js:65 -#: Engines/Wine/Verbs/dotnet462/script.js:17 -#: Engines/Wine/Verbs/dotnet462/script.js:65 -#: Engines/Wine/Verbs/dotnet46/script.js:16 -#: Engines/Wine/Verbs/dotnet46/script.js:64 -#: Engines/Wine/Verbs/dotnet452/script.js:17 -#: Engines/Wine/Verbs/dotnet452/script.js:69 -#: Engines/Wine/Verbs/dotnet461/script.js:17 -#: Engines/Wine/Verbs/dotnet461/script.js:65 +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:17 -#: Engines/Wine/Verbs/dotnet40/script.js:79 -#: Engines/Wine/Verbs/dotnet45/script.js:16 -#: Engines/Wine/Verbs/dotnet45/script.js:70 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1727,7 +1720,7 @@ Use\ Take\ Focus=Use Take Focus #: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 UseTakeFocus=UseTakeFocus -#: Engines/Wine/Verbs/gallium9/script.js:22 +#: Engines/Wine/Verbs/gallium9/script.js:42 Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). #: i18n/tmp/Utils/Functions/Apps/application.js:2 @@ -1745,7 +1738,7 @@ Utils\ for\ system\ interaction.=Utils for system interaction. #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:19 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1782,13 +1775,13 @@ Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Ma #: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:46 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:23 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:79 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1880,7 +1873,7 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind\u2019s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! -#: Applications/Games/Space Engineers/Steam/script.js:24 +#: Applications/Games/Space Engineers/Steam/script.js:44 You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 @@ -1931,8 +1924,8 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:87 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=fonts #: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 @@ -1941,6 +1934,9 @@ gallium9=gallium9 #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -2074,8 +2070,8 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:50 -#: Engines/Wine/Verbs/dotnet45/script.js:50 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our diff --git a/i18n/Messages_af.properties b/i18n/Messages_af.properties index c30ab8da12..288aae0e75 100644 --- a/i18n/Messages_af.properties +++ b/i18n/Messages_af.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:403 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:484 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:21 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:21 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:45 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:214 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:124 +#: Engines/Wine/Engine/Implementation/script.js:155 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:245 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:25 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:30 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -418,27 +457,26 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). #: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 +#: Engines/Wine/Verbs/d3dx10/script.js:17 +#: Engines/Wine/Verbs/d3dx10/script.js:39 #: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx11/script.js:17 +#: Engines/Wine/Verbs/d3dx11/script.js:40 Engines/Wine/Verbs/xact/script.js:17 +#: Engines/Wine/Verbs/xact/script.js:19 Engines/Wine/Verbs/xact/script.js:55 +#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:17 +#: Engines/Wine/Verbs/d3dx9/script.js:39 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:313 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:23 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,11 +661,11 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:61 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:303 +#: 6.0/Online/script.js:149 Engines/Wine/Verbs/corefonts/script.js:87 #: Engines/Wine/Verbs/corefonts/script.js:91 Installing\ {0}...=Installing {0}... @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:14 2/Local/script.js:15 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: Applications/Games/Space Colony/Local/script.js:17 -Once\ the\ progress\ bar\ closes,\ an\ installation\ complete\ window\ should\ appear\ but\ in\ case\ it\ does\ not\ you\ should\ kill\ the\ process\ which\ name\ consist\ of\ just\ one\ dot.=Once the progress bar closes, an installation complete window should appear but in case it does not you should kill the process which name consist of just one dot. - -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -834,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -843,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -876,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -886,141 +955,160 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:24 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:24 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:21 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:16 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:42 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:58 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:32 +#: Engines/Wine/Engine/Implementation/script.js:512 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:91 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:514 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:114 Engines/Wine/Verbs/FAudio/script.js:71 +#: Engines/Wine/Verbs/gallium9/script.js:92 Engines/Wine/Verbs/VK9/script.js:90 +#: Engines/Wine/Verbs/D9VK/script.js:87 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:37 +#: Engines/Wine/Verbs/vcrun2012/script.js:20 +#: Engines/Wine/Verbs/vcrun2012/script.js:31 +#: Engines/Wine/Verbs/vcrun2003/script.js:20 +#: Engines/Wine/Verbs/d3drm/script.js:21 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:37 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:53 +#: Engines/Wine/Verbs/msxml3/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:20 +#: Engines/Wine/Verbs/vcrun2013/script.js:31 +#: Engines/Wine/Verbs/dotnet462/script.js:37 +#: Engines/Wine/Verbs/vcrun2017/script.js:20 +#: Engines/Wine/Verbs/vcrun2017/script.js:31 +#: Engines/Wine/Verbs/dotnet46/script.js:36 +#: Engines/Wine/Verbs/vcrun2005/script.js:19 +#: Engines/Wine/Verbs/dotnet452/script.js:37 +#: Engines/Wine/Verbs/amstream/script.js:23 +#: Engines/Wine/Verbs/amstream/script.js:42 +#: Engines/Wine/Verbs/devenum/script.js:22 +#: Engines/Wine/Verbs/dotnet461/script.js:37 +#: Engines/Wine/Verbs/vcrun2015/script.js:20 +#: Engines/Wine/Verbs/vcrun2015/script.js:31 +#: Engines/Wine/Verbs/dotnet40/script.js:37 +#: Engines/Wine/Verbs/vcrun2010/script.js:20 +#: Engines/Wine/Verbs/vcrun2010/script.js:31 +#: Engines/Wine/Verbs/dotnet45/script.js:37 +#: Engines/Wine/Verbs/vcrun6sp6/script.js:32 +#: Engines/Wine/Verbs/msxml6/script.js:37 +#: Engines/Wine/Verbs/msxml6/script.js:40 +#: Engines/Wine/Verbs/gdiplus/script.js:20 +#: Engines/Wine/Verbs/vcrun2008/script.js:20 +#: Engines/Wine/Verbs/vcrun2008/script.js:31 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:17 Engines/Wine/Verbs/PhysX/script.js:19 +#: Engines/Wine/Verbs/dotnet20/script.js:29 +#: Engines/Wine/Verbs/dotnet20/script.js:48 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:145 +#: Engines/Wine/Verbs/dotnet472/script.js:40 Engines/Wine/Verbs/Remove +#: Mono/script.js:13 Mono/script.js:16 Mono/script.js:19 +#: Engines/Wine/Verbs/dotnet462/script.js:40 +#: Engines/Wine/Verbs/dotnet46/script.js:39 +#: Engines/Wine/Verbs/d3dx10/script.js:38 +#: Engines/Wine/Verbs/dotnet452/script.js:40 +#: Engines/Wine/Verbs/dotnet461/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:47 +#: Engines/Wine/Verbs/dotnet45/script.js:40 +#: Engines/Wine/Verbs/d3dx11/script.js:39 +#: Engines/Wine/Verbs/corefonts/script.js:86 +#: Engines/Wine/Verbs/xact/script.js:54 Engines/Wine/Verbs/d3dx9/script.js:38 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:38 Script/script.js:64 Engines/Wine/QuickScript/Installer +#: Script/script.js:84 Script/script.js:100 Engines/Wine/QuickScript/Origin +#: Script/script.js:52 Script/script.js:57 Script/script.js:65 +#: Engines/Wine/QuickScript/Uplay Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1060,6 +1148,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1079,7 +1170,7 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:34 Engines/Wine/Verbs/xact/script.js:36 Registering\ {0}...=Registering {0}... #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 @@ -1091,7 +1182,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1106,7 +1197,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1206,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1137,8 +1231,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1172,11 +1265,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:34 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1210,9 +1302,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1222,120 +1326,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1348,7 +1454,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1369,6 +1475,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1461,8 +1570,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1477,7 +1586,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1486,6 +1595,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1504,22 +1616,25 @@ The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ the #: Applications/Games/Lego Rock Raiders/Local/script.js:28 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:17 +#: Engines/Wine/Verbs/dotnet472/script.js:65 +#: Engines/Wine/Verbs/dotnet462/script.js:17 +#: Engines/Wine/Verbs/dotnet462/script.js:65 +#: Engines/Wine/Verbs/dotnet46/script.js:16 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:17 +#: Engines/Wine/Verbs/dotnet452/script.js:69 +#: Engines/Wine/Verbs/dotnet461/script.js:17 +#: Engines/Wine/Verbs/dotnet461/script.js:65 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:17 +#: Engines/Wine/Verbs/dotnet40/script.js:79 +#: Engines/Wine/Verbs/dotnet45/script.js:16 +#: Engines/Wine/Verbs/dotnet45/script.js:70 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1547,8 +1662,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1587,14 +1701,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1603,6 +1720,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:22 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1612,10 +1739,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:19 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1624,7 +1754,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1648,17 +1778,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:46 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:23 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:79 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1697,6 +1827,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1706,9 +1839,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1741,6 +1880,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:24 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1759,6 +1901,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1786,10 +1931,13 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 +#: Engines/Wine/Verbs/corefonts/script.js:87 #: Engines/Wine/Verbs/corefonts/script.js:91 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus @@ -1817,12 +1965,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1838,10 +1995,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1868,9 +2025,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1904,10 +2058,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1916,11 +2074,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet45/script.js:50 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_ar.properties b/i18n/Messages_ar.properties index c30ab8da12..288aae0e75 100644 --- a/i18n/Messages_ar.properties +++ b/i18n/Messages_ar.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:403 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:484 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:21 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:21 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:45 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:214 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:124 +#: Engines/Wine/Engine/Implementation/script.js:155 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:245 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:25 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:30 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -418,27 +457,26 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). #: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 +#: Engines/Wine/Verbs/d3dx10/script.js:17 +#: Engines/Wine/Verbs/d3dx10/script.js:39 #: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx11/script.js:17 +#: Engines/Wine/Verbs/d3dx11/script.js:40 Engines/Wine/Verbs/xact/script.js:17 +#: Engines/Wine/Verbs/xact/script.js:19 Engines/Wine/Verbs/xact/script.js:55 +#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:17 +#: Engines/Wine/Verbs/d3dx9/script.js:39 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:313 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:23 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,11 +661,11 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:61 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:303 +#: 6.0/Online/script.js:149 Engines/Wine/Verbs/corefonts/script.js:87 #: Engines/Wine/Verbs/corefonts/script.js:91 Installing\ {0}...=Installing {0}... @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:14 2/Local/script.js:15 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: Applications/Games/Space Colony/Local/script.js:17 -Once\ the\ progress\ bar\ closes,\ an\ installation\ complete\ window\ should\ appear\ but\ in\ case\ it\ does\ not\ you\ should\ kill\ the\ process\ which\ name\ consist\ of\ just\ one\ dot.=Once the progress bar closes, an installation complete window should appear but in case it does not you should kill the process which name consist of just one dot. - -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -834,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -843,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -876,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -886,141 +955,160 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:24 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:24 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:21 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:16 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:42 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:58 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:32 +#: Engines/Wine/Engine/Implementation/script.js:512 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:91 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:514 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:114 Engines/Wine/Verbs/FAudio/script.js:71 +#: Engines/Wine/Verbs/gallium9/script.js:92 Engines/Wine/Verbs/VK9/script.js:90 +#: Engines/Wine/Verbs/D9VK/script.js:87 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:37 +#: Engines/Wine/Verbs/vcrun2012/script.js:20 +#: Engines/Wine/Verbs/vcrun2012/script.js:31 +#: Engines/Wine/Verbs/vcrun2003/script.js:20 +#: Engines/Wine/Verbs/d3drm/script.js:21 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:37 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:53 +#: Engines/Wine/Verbs/msxml3/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:20 +#: Engines/Wine/Verbs/vcrun2013/script.js:31 +#: Engines/Wine/Verbs/dotnet462/script.js:37 +#: Engines/Wine/Verbs/vcrun2017/script.js:20 +#: Engines/Wine/Verbs/vcrun2017/script.js:31 +#: Engines/Wine/Verbs/dotnet46/script.js:36 +#: Engines/Wine/Verbs/vcrun2005/script.js:19 +#: Engines/Wine/Verbs/dotnet452/script.js:37 +#: Engines/Wine/Verbs/amstream/script.js:23 +#: Engines/Wine/Verbs/amstream/script.js:42 +#: Engines/Wine/Verbs/devenum/script.js:22 +#: Engines/Wine/Verbs/dotnet461/script.js:37 +#: Engines/Wine/Verbs/vcrun2015/script.js:20 +#: Engines/Wine/Verbs/vcrun2015/script.js:31 +#: Engines/Wine/Verbs/dotnet40/script.js:37 +#: Engines/Wine/Verbs/vcrun2010/script.js:20 +#: Engines/Wine/Verbs/vcrun2010/script.js:31 +#: Engines/Wine/Verbs/dotnet45/script.js:37 +#: Engines/Wine/Verbs/vcrun6sp6/script.js:32 +#: Engines/Wine/Verbs/msxml6/script.js:37 +#: Engines/Wine/Verbs/msxml6/script.js:40 +#: Engines/Wine/Verbs/gdiplus/script.js:20 +#: Engines/Wine/Verbs/vcrun2008/script.js:20 +#: Engines/Wine/Verbs/vcrun2008/script.js:31 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:17 Engines/Wine/Verbs/PhysX/script.js:19 +#: Engines/Wine/Verbs/dotnet20/script.js:29 +#: Engines/Wine/Verbs/dotnet20/script.js:48 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:145 +#: Engines/Wine/Verbs/dotnet472/script.js:40 Engines/Wine/Verbs/Remove +#: Mono/script.js:13 Mono/script.js:16 Mono/script.js:19 +#: Engines/Wine/Verbs/dotnet462/script.js:40 +#: Engines/Wine/Verbs/dotnet46/script.js:39 +#: Engines/Wine/Verbs/d3dx10/script.js:38 +#: Engines/Wine/Verbs/dotnet452/script.js:40 +#: Engines/Wine/Verbs/dotnet461/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:47 +#: Engines/Wine/Verbs/dotnet45/script.js:40 +#: Engines/Wine/Verbs/d3dx11/script.js:39 +#: Engines/Wine/Verbs/corefonts/script.js:86 +#: Engines/Wine/Verbs/xact/script.js:54 Engines/Wine/Verbs/d3dx9/script.js:38 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:38 Script/script.js:64 Engines/Wine/QuickScript/Installer +#: Script/script.js:84 Script/script.js:100 Engines/Wine/QuickScript/Origin +#: Script/script.js:52 Script/script.js:57 Script/script.js:65 +#: Engines/Wine/QuickScript/Uplay Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1060,6 +1148,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1079,7 +1170,7 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:34 Engines/Wine/Verbs/xact/script.js:36 Registering\ {0}...=Registering {0}... #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 @@ -1091,7 +1182,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1106,7 +1197,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1206,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1137,8 +1231,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1172,11 +1265,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:34 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1210,9 +1302,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1222,120 +1326,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1348,7 +1454,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1369,6 +1475,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1461,8 +1570,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1477,7 +1586,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1486,6 +1595,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1504,22 +1616,25 @@ The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ the #: Applications/Games/Lego Rock Raiders/Local/script.js:28 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:17 +#: Engines/Wine/Verbs/dotnet472/script.js:65 +#: Engines/Wine/Verbs/dotnet462/script.js:17 +#: Engines/Wine/Verbs/dotnet462/script.js:65 +#: Engines/Wine/Verbs/dotnet46/script.js:16 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:17 +#: Engines/Wine/Verbs/dotnet452/script.js:69 +#: Engines/Wine/Verbs/dotnet461/script.js:17 +#: Engines/Wine/Verbs/dotnet461/script.js:65 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:17 +#: Engines/Wine/Verbs/dotnet40/script.js:79 +#: Engines/Wine/Verbs/dotnet45/script.js:16 +#: Engines/Wine/Verbs/dotnet45/script.js:70 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1547,8 +1662,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1587,14 +1701,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1603,6 +1720,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:22 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1612,10 +1739,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:19 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1624,7 +1754,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1648,17 +1778,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:46 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:23 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:79 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1697,6 +1827,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1706,9 +1839,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1741,6 +1880,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:24 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1759,6 +1901,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1786,10 +1931,13 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 +#: Engines/Wine/Verbs/corefonts/script.js:87 #: Engines/Wine/Verbs/corefonts/script.js:91 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus @@ -1817,12 +1965,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1838,10 +1995,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1868,9 +2025,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1904,10 +2058,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1916,11 +2074,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet45/script.js:50 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_az.properties b/i18n/Messages_az.properties index c30ab8da12..288aae0e75 100644 --- a/i18n/Messages_az.properties +++ b/i18n/Messages_az.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:403 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:484 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:21 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:21 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:45 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:214 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:124 +#: Engines/Wine/Engine/Implementation/script.js:155 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:245 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:25 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:30 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -418,27 +457,26 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). #: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 +#: Engines/Wine/Verbs/d3dx10/script.js:17 +#: Engines/Wine/Verbs/d3dx10/script.js:39 #: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx11/script.js:17 +#: Engines/Wine/Verbs/d3dx11/script.js:40 Engines/Wine/Verbs/xact/script.js:17 +#: Engines/Wine/Verbs/xact/script.js:19 Engines/Wine/Verbs/xact/script.js:55 +#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:17 +#: Engines/Wine/Verbs/d3dx9/script.js:39 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:313 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:23 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,11 +661,11 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:61 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:303 +#: 6.0/Online/script.js:149 Engines/Wine/Verbs/corefonts/script.js:87 #: Engines/Wine/Verbs/corefonts/script.js:91 Installing\ {0}...=Installing {0}... @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:14 2/Local/script.js:15 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: Applications/Games/Space Colony/Local/script.js:17 -Once\ the\ progress\ bar\ closes,\ an\ installation\ complete\ window\ should\ appear\ but\ in\ case\ it\ does\ not\ you\ should\ kill\ the\ process\ which\ name\ consist\ of\ just\ one\ dot.=Once the progress bar closes, an installation complete window should appear but in case it does not you should kill the process which name consist of just one dot. - -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -834,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -843,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -876,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -886,141 +955,160 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:24 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:24 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:21 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:16 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:42 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:58 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:32 +#: Engines/Wine/Engine/Implementation/script.js:512 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:91 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:514 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:114 Engines/Wine/Verbs/FAudio/script.js:71 +#: Engines/Wine/Verbs/gallium9/script.js:92 Engines/Wine/Verbs/VK9/script.js:90 +#: Engines/Wine/Verbs/D9VK/script.js:87 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:37 +#: Engines/Wine/Verbs/vcrun2012/script.js:20 +#: Engines/Wine/Verbs/vcrun2012/script.js:31 +#: Engines/Wine/Verbs/vcrun2003/script.js:20 +#: Engines/Wine/Verbs/d3drm/script.js:21 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:37 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:53 +#: Engines/Wine/Verbs/msxml3/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:20 +#: Engines/Wine/Verbs/vcrun2013/script.js:31 +#: Engines/Wine/Verbs/dotnet462/script.js:37 +#: Engines/Wine/Verbs/vcrun2017/script.js:20 +#: Engines/Wine/Verbs/vcrun2017/script.js:31 +#: Engines/Wine/Verbs/dotnet46/script.js:36 +#: Engines/Wine/Verbs/vcrun2005/script.js:19 +#: Engines/Wine/Verbs/dotnet452/script.js:37 +#: Engines/Wine/Verbs/amstream/script.js:23 +#: Engines/Wine/Verbs/amstream/script.js:42 +#: Engines/Wine/Verbs/devenum/script.js:22 +#: Engines/Wine/Verbs/dotnet461/script.js:37 +#: Engines/Wine/Verbs/vcrun2015/script.js:20 +#: Engines/Wine/Verbs/vcrun2015/script.js:31 +#: Engines/Wine/Verbs/dotnet40/script.js:37 +#: Engines/Wine/Verbs/vcrun2010/script.js:20 +#: Engines/Wine/Verbs/vcrun2010/script.js:31 +#: Engines/Wine/Verbs/dotnet45/script.js:37 +#: Engines/Wine/Verbs/vcrun6sp6/script.js:32 +#: Engines/Wine/Verbs/msxml6/script.js:37 +#: Engines/Wine/Verbs/msxml6/script.js:40 +#: Engines/Wine/Verbs/gdiplus/script.js:20 +#: Engines/Wine/Verbs/vcrun2008/script.js:20 +#: Engines/Wine/Verbs/vcrun2008/script.js:31 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:17 Engines/Wine/Verbs/PhysX/script.js:19 +#: Engines/Wine/Verbs/dotnet20/script.js:29 +#: Engines/Wine/Verbs/dotnet20/script.js:48 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:145 +#: Engines/Wine/Verbs/dotnet472/script.js:40 Engines/Wine/Verbs/Remove +#: Mono/script.js:13 Mono/script.js:16 Mono/script.js:19 +#: Engines/Wine/Verbs/dotnet462/script.js:40 +#: Engines/Wine/Verbs/dotnet46/script.js:39 +#: Engines/Wine/Verbs/d3dx10/script.js:38 +#: Engines/Wine/Verbs/dotnet452/script.js:40 +#: Engines/Wine/Verbs/dotnet461/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:47 +#: Engines/Wine/Verbs/dotnet45/script.js:40 +#: Engines/Wine/Verbs/d3dx11/script.js:39 +#: Engines/Wine/Verbs/corefonts/script.js:86 +#: Engines/Wine/Verbs/xact/script.js:54 Engines/Wine/Verbs/d3dx9/script.js:38 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:38 Script/script.js:64 Engines/Wine/QuickScript/Installer +#: Script/script.js:84 Script/script.js:100 Engines/Wine/QuickScript/Origin +#: Script/script.js:52 Script/script.js:57 Script/script.js:65 +#: Engines/Wine/QuickScript/Uplay Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1060,6 +1148,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1079,7 +1170,7 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:34 Engines/Wine/Verbs/xact/script.js:36 Registering\ {0}...=Registering {0}... #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 @@ -1091,7 +1182,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1106,7 +1197,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1206,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1137,8 +1231,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1172,11 +1265,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:34 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1210,9 +1302,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1222,120 +1326,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1348,7 +1454,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1369,6 +1475,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1461,8 +1570,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1477,7 +1586,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1486,6 +1595,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1504,22 +1616,25 @@ The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ the #: Applications/Games/Lego Rock Raiders/Local/script.js:28 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:17 +#: Engines/Wine/Verbs/dotnet472/script.js:65 +#: Engines/Wine/Verbs/dotnet462/script.js:17 +#: Engines/Wine/Verbs/dotnet462/script.js:65 +#: Engines/Wine/Verbs/dotnet46/script.js:16 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:17 +#: Engines/Wine/Verbs/dotnet452/script.js:69 +#: Engines/Wine/Verbs/dotnet461/script.js:17 +#: Engines/Wine/Verbs/dotnet461/script.js:65 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:17 +#: Engines/Wine/Verbs/dotnet40/script.js:79 +#: Engines/Wine/Verbs/dotnet45/script.js:16 +#: Engines/Wine/Verbs/dotnet45/script.js:70 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1547,8 +1662,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1587,14 +1701,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1603,6 +1720,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:22 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1612,10 +1739,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:19 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1624,7 +1754,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1648,17 +1778,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:46 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:23 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:79 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1697,6 +1827,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1706,9 +1839,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1741,6 +1880,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:24 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1759,6 +1901,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1786,10 +1931,13 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 +#: Engines/Wine/Verbs/corefonts/script.js:87 #: Engines/Wine/Verbs/corefonts/script.js:91 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus @@ -1817,12 +1965,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1838,10 +1995,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1868,9 +2025,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1904,10 +2058,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1916,11 +2074,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet45/script.js:50 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_ca.properties b/i18n/Messages_ca.properties index c30ab8da12..15089d6a4e 100644 --- a/i18n/Messages_ca.properties +++ b/i18n/Messages_ca.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:492 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:44 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:220 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:251 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:49 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:321 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installing {0}... #: i18n/tmp/Applications/Internet/category.js:1 @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: Applications/Games/Space Colony/Local/script.js:17 -Once\ the\ progress\ bar\ closes,\ an\ installation\ complete\ window\ should\ appear\ but\ in\ case\ it\ does\ not\ you\ should\ kill\ the\ process\ which\ name\ consist\ of\ just\ one\ dot.=Once the progress bar closes, an installation complete window should appear but in case it does not you should kill the process which name consist of just one dot. - -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -834,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -843,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -876,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -886,141 +955,156 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:50 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:32 +#: Engines/Wine/Engine/Implementation/script.js:520 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:522 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:41 +#: Engines/Wine/Verbs/msxml6/script.js:54 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1060,6 +1144,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1079,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 -Registering\ {0}...=Registering {0}... - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=Registry Editor @@ -1091,7 +1175,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1106,7 +1190,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1199,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1137,8 +1224,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1172,11 +1258,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1210,9 +1295,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1222,120 +1319,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1348,7 +1447,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1369,6 +1468,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1461,8 +1563,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1477,7 +1579,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1486,6 +1588,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1501,25 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1547,8 +1655,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1587,14 +1694,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1603,6 +1713,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:42 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1612,10 +1732,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1624,7 +1747,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1648,17 +1771,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1697,6 +1820,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1706,9 +1832,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1741,6 +1873,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:44 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1759,6 +1894,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1786,13 +1924,19 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -1817,12 +1961,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1838,10 +1991,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1868,9 +2021,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1904,10 +2054,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1916,11 +2070,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_cs.properties b/i18n/Messages_cs.properties index c30ab8da12..15089d6a4e 100644 --- a/i18n/Messages_cs.properties +++ b/i18n/Messages_cs.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:492 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:44 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:220 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:251 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:49 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:321 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installing {0}... #: i18n/tmp/Applications/Internet/category.js:1 @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: Applications/Games/Space Colony/Local/script.js:17 -Once\ the\ progress\ bar\ closes,\ an\ installation\ complete\ window\ should\ appear\ but\ in\ case\ it\ does\ not\ you\ should\ kill\ the\ process\ which\ name\ consist\ of\ just\ one\ dot.=Once the progress bar closes, an installation complete window should appear but in case it does not you should kill the process which name consist of just one dot. - -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -834,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -843,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -876,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -886,141 +955,156 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:50 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:32 +#: Engines/Wine/Engine/Implementation/script.js:520 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:522 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:41 +#: Engines/Wine/Verbs/msxml6/script.js:54 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1060,6 +1144,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1079,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 -Registering\ {0}...=Registering {0}... - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=Registry Editor @@ -1091,7 +1175,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1106,7 +1190,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1199,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1137,8 +1224,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1172,11 +1258,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1210,9 +1295,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1222,120 +1319,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1348,7 +1447,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1369,6 +1468,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1461,8 +1563,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1477,7 +1579,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1486,6 +1588,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1501,25 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1547,8 +1655,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1587,14 +1694,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1603,6 +1713,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:42 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1612,10 +1732,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1624,7 +1747,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1648,17 +1771,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1697,6 +1820,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1706,9 +1832,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1741,6 +1873,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:44 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1759,6 +1894,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1786,13 +1924,19 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -1817,12 +1961,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1838,10 +1991,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1868,9 +2021,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1904,10 +2054,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1916,11 +2070,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_da.properties b/i18n/Messages_da.properties index c30ab8da12..15089d6a4e 100644 --- a/i18n/Messages_da.properties +++ b/i18n/Messages_da.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:492 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:44 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:220 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:251 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:49 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:321 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installing {0}... #: i18n/tmp/Applications/Internet/category.js:1 @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: Applications/Games/Space Colony/Local/script.js:17 -Once\ the\ progress\ bar\ closes,\ an\ installation\ complete\ window\ should\ appear\ but\ in\ case\ it\ does\ not\ you\ should\ kill\ the\ process\ which\ name\ consist\ of\ just\ one\ dot.=Once the progress bar closes, an installation complete window should appear but in case it does not you should kill the process which name consist of just one dot. - -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -834,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -843,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -876,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -886,141 +955,156 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:50 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:32 +#: Engines/Wine/Engine/Implementation/script.js:520 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:522 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:41 +#: Engines/Wine/Verbs/msxml6/script.js:54 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1060,6 +1144,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1079,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 -Registering\ {0}...=Registering {0}... - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=Registry Editor @@ -1091,7 +1175,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1106,7 +1190,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1199,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1137,8 +1224,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1172,11 +1258,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1210,9 +1295,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1222,120 +1319,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1348,7 +1447,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1369,6 +1468,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1461,8 +1563,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1477,7 +1579,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1486,6 +1588,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1501,25 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1547,8 +1655,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1587,14 +1694,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1603,6 +1713,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:42 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1612,10 +1732,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1624,7 +1747,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1648,17 +1771,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1697,6 +1820,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1706,9 +1832,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1741,6 +1873,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:44 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1759,6 +1894,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1786,13 +1924,19 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -1817,12 +1961,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1838,10 +1991,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1868,9 +2021,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1904,10 +2054,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1916,11 +2070,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_de.properties b/i18n/Messages_de.properties index 7a8614d779..7c9379fad9 100644 --- a/i18n/Messages_de.properties +++ b/i18n/Messages_de.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=Eine reine, immersive Sci-Fi Einzelspieler-Simulation. Tauche ein in eine Welt, die durch DEINE Entscheidungen gepr\u00e4gt wird\! Erkunde, rede, k\u00e4mpfe oder schleiche durch The Churchill Tower im Jahr 2042\! \u00dcberlebst du The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=In Far Cry\u00ae, einem tropischen Inselparadies, h\u00e4lt das B\u00f6se Einzug. Dieser ausgekl\u00fcgelte, detailreiche Action-Shooter \u00fcberschreitet Grenzen des Genres und die neuen Levels sind verbl\u00fcffend.

Marine-Freelancer Jack Carver verflucht den Tag, an dem er einen Fu\u00df auf dieses Eiland setzte. Vor einer Woche bot ihm eine aufdringliche Reporterin namens Valerie eine schier unglaubliche Summe an, damit er sie auf diese unber\u00fchrte Insel begleitete. Kurze nach ihrer Ankunft werden sie jedoch von Artilleriefeuer einer mysteri\u00f6sen Milizentruppe in Empfang genommen.

Das Boot ist zerst\u00f6rt, die Moneten offensichtlich den Bach heruntergegangen und die bezaubernde Valerie verschwunden und Jack sieht sich in der Wildnis der Insel einer Armee von S\u00f6ldnern gegen\u00fcbergestellt und verf\u00fcgt nur \u00fcber einen Revolver und seinem \u00dcberlebenswillen. Aber je weiter er in den \u00fcppigen Dschungel vordringt, desto unwirklicher entwickeln sich die Dinge.

Jack begegnet einem Insider der Miliz und erf\u00e4hrt von den f\u00fcrchterlichen Absichten der S\u00f6ldnertruppe. Er stellt Jack vor eine unbequeme Wahl\: Nimm den Kampf gegen diese t\u00f6dlichen S\u00f6ldner auf oder weihe die gesamte Menschheit durch das hinterlistige Vorhaben eines Wahnsinnigen der ewigen Verdammnis. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Immer offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Im malerischen Puzzlespiel Braid k\u00f6nnen Sie den Fluss der Zeit auf komische und ungewohnte Art und Weise beeinflussen. Reisen Sie durch eine Vielzahl von Welten und l\u00f6sen Sie alle Puzzles, um eine entf\u00fchrte Prinzessin zu retten. In jeder Welt steht Ihnen eine andere Macht zur Verf\u00fcgung, mit welcher Sie den Zeitverlauf beeinflussen k\u00f6nnen. Spulen Sie die Zeit selbst zur\u00fcck und stellen Sie sich Objekten und Zeitzonen, in welchen dies nicht m\u00f6glich ist. Begeben Sie sich in parallel geschaltete Realit\u00e4ten, verlangsamen Sie die Zeit und vieles mehr. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia versinkt im Krieg - f\u00fcr Abenteurer und S\u00f6ldner er\u00f6ffnen sich in diesem Land ungeahnte M\u00f6glichkeiten, aber auch gro\u00dfe Gefahren lauern \u00fcberall. Mit Mut und einem starken Schwert kann hier ein Niemand zum gef\u00fcrchteten K\u00e4mpfer werden. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=64bit Executable kann nicht in einem 32bit Wineprefix ausgef\u00fchrt werden. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:492 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Dateikonsistenz wird gepr\u00fcft... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Wine einrichten #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Konnte Mimetype f\u00fcr Dateiendung "{0}" nicht bestimmen -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Konnte {0} nicht deinstallieren\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Angepasst #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:44 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Entwicklung -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Laden Sie "{0}" in Origin herunter und schlie\u00dfen Sie es, nachdem "{0}" installiert ist #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:220 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:251 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:49 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Die Emperor Edition ist ein unverzichtbarer Teil von ROME II und umfasst ein verbessertes Politiksystem, verbesserte Geb\u00e4udeketten, neu ausbalancierte Schlachten und verbesserte Grafiken f\u00fcr die Kampagne und Gefechte.

Zus\u00e4tzlich enth\u00e4lt die Emperor Edition alle Inhalte und Funktionen, die f\u00fcr ROME II seit der Ver\u00f6ffentlichung im September 2013 bereitgestellt wurden. Dazu geh\u00f6ren die Twitch.TV-Integration, eine Touchscreen-Steuerung, neue spielbare Fraktionen und Einheiten, Mac-Kompatibilit\u00e4t und vieles mehr. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Machen Sie sich bereit f\u00fcr einen tropischen Powertrip\! Werden Sie zu einem Diktator auf einer fernen Insel w\u00e4hrend des Kalten Kriegs. Verf\u00fchren, \u00fcberzeugen, versch\u00fcchtern, unterdr\u00fccken oder betr\u00fcgen Sie Ihre Untergebenen, um an der Macht zu bleiben\! Werden Sie ein gro\u00dfz\u00fcgiger Anf\u00fchrer sein? +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Fehler beim Pr\u00fcfen der Checksumme f\u00fcr "{0}".\n\nErwartet \= {1}\nTats\u00e4chlich \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Hast du dich schon mal gefragt, wie es sich wohl anf\u00fchlt, eine Quadrillion Schaden pro Sekunde zu verursachen? Jetzt kannst du es herausfinden\! Begib dich auf deine Mission, um mal richtig viel Schaden anzurichten\! -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Ausf\u00fchrbare Datei {0} nicht gefunden\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Erleben Sie wie es ist Batman zu sein und stellen Sie sich Gothams gef\u00e4hrlichsten Schurken. Erforschen Sie jeden Zentimer des Arkham Asylum und streifen Sie ungehindert auf der ber\u00fcchtigten Insel umher.

Das von Kritikern gefeierte Batman\: Arkham Asylum kehrt in einer \u00fcberarbeiteten Spiel des Jahres Edition mit 4 Extra 'Challenge Maps' zur\u00fcck. Diese zus\u00e4tzlichen Maps sind Crime Alley; Scarecrow Nightmare; Totally Insane und Nocturnal Hunter (diese beiden vom Insane Night Map Pack). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=Extrahiere {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore folgt den Schritten des legend\u00e4ren Mentors Altair, auf einer gef\u00e4hrlichen Reise voller Entdeckungen und Wendungen. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=ZUM ALLERERSTEN MAL\: DAS DRAGONBALL-UNIVERSUM AUF STEAM\!

DRAGON BALL XENOVERSE besucht dank deines individuellen Avatars, der an der Seite von Trunks und vielen anderen Charakteren k\u00e4mpft, ber\u00fchmte K\u00e4mpfe aus der Serie erneut. Wird die St\u00e4rke dieser Partnerschaft ausreichen, um Siege zu erringen und die Dragonball-Geschichte, wie wir sie kennen, zu korrigieren? Zu den Features des Spiels geh\u00f6ren au\u00dferdem die geheimnisvolle Tokitoki-Stadt, neue Spielmechaniken und Charakter-Animationen sowie viele weitere tolle Neuheiten, die schon bald enth\u00fcllt werden\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Ein Tomb Raider 2 Remake von Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon ist DER wahnsinnige Cyber-Shooter. Far Cry\u00ae 3\: Blood Dragon ist angesiedelt auf einer bizarren Open World-Insel, wo das B\u00f6se allgegenw\u00e4rtig ist. Willkommen in einer Vision der Zukunft aus Sicht der 80er. Wir schreiben das Jahr 2007 und Sie sind Sergeant Rex Colt, ein Mark IV Cyber Commando. Ihre Mission\: Schnappen Sie sich das M\u00e4dchen, t\u00f6ten Sie die B\u00f6sewichte und retten Sie die Welt\! +#: Engines/Wine/Engine/Implementation/script.js:321 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=Datei-Extraktoren @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut ist ein adrenalingeladenes, explosives Rennspiel mit spektakul\u00e4ren Effekten und Grafiken sowie innovativen Spielmechaniken, das jede Menge Spa\u00df garantiert\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=\u00dcber Jahrhunderte wurde der Planet Hyllis von einer unbarmherzigen Alienrasse angegriffen. Skeptisch \u00fcber die Unf\u00e4higkeit der Regierung die Angreifer abzuwehren, versucht die rebellische Reporterin Jade jetzt die Wahrheit heraus zu finden. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Erzwingen -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Greifen Sie zur Waffe und folgen Sie den Pfaden eines echten Jediritters.
Jedi Knight\: Jedi Academy ist der neueste Teil der hoch gefeierten Jedi Knight Serie. Sie begeben sich in die Rolle eines neuen Sch\u00fclers, der unbedingt die Kampftechniken vom Jedimaster Luke Skywalker erlernen m\u00f6chte. Kommunizieren Sie mit den ber\u00fchmten Star Wars Charakteren in vielen klassischen Star Wars St\u00e4tten. Es liegt ganz allein an Ihnen\: entscheiden Sie sich letztendlich f\u00fcr das Gute und daf\u00fcr, auf der Seite des Lichts zu k\u00e4mpfen oder w\u00e4hlen Sie die Macht und das B\u00f6se der dunklen Seite? #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Grafik +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower ist ein Tower Platformer, bei dem das Ziel des Spielers ist, von Ebene zu Ebene zu springen und dabei so hoch wie m\u00f6glich zu kommen ohne abzust\u00fcrzen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=Wenn Sie w\u00e4hrend der Installation einen internen Fehler von DirectX erhalten, l\u00f6schen Sie alle .cab Dateien in __Installer/directx/redist. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installiere {0}... #: i18n/tmp/Applications/Internet/category.js:1 @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer ist ein alter Webbrowser.
Sie sollten ihn nur verwenden, um eine Website auf ihre Kompatibilit\u00e4t zu testen. Nutzen Sie ihn nicht, um im Internet zu surfen. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Ezios erbitterter Kampf gegen den m\u00e4chtigen Templer-Orden geht in die n\u00e4chste Runde. Diesmal f\u00fchrt es den legend\u00e4ren Meister-Assassinen nach Rom. Dort plant Ezio, das \u00dcbel direkt an seiner Wurzel zu bek\u00e4mpfen.

Doch Gier und Korruption haben die Herrschaft \u00fcber die gewaltige Metropole an sich gerissen. Um die korrupten Tyrannen der Hauptstadt zu besiegen, braucht Ezio mehr als nur St\u00e4rke. Auch seine F\u00fchrungsqualit\u00e4ten sind gefragt. Die gesamte Bruderschaft der Assassinen steht Ezio treu zur Seite und erwartet seine Befehle. Nur wenn die Assassinen wie ein Mann zusammenarbeiten, k\u00f6nnen sie ihre Todfeinde bezwingen.

Erstmals bietet ein Spiel der Assassin\u2019s Creed-Reihe einen Mehrspieler-Modus. Hier kann der Spieler aus zahlreichen Charakteren seinen pers\u00f6nlichen Favoriten w\u00e4hlen. Jede dieser Figuren verf\u00fcgt \u00fcber individuelle Waffenkenntnisse und Assassinen-Fertigkeiten.

Es ist Zeit, der Bruderschaft beizutreten. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Lokal #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse Warp Override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=B\u00fcroprogramme -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=Es kann sein, dass das Spiel beim ersten Starten nicht in den Vollbildmodus wechselt. Sollte dies der Fall sein, w\u00e4hlen Sie in den Optionen als Aufl\u00f6sung 1280x960. Best\u00e4tigen Sie die folgende Abfrage, das Spiel zu beenden, mit "Ja". Wenn Sie das Spiel nun nochmals starten, sollte ein Fenster erscheinen, in dem Sie eine Aufl\u00f6sung passend zu Ihrem Bildschirm w\u00e4hlen k\u00f6nnen. -#: Applications/Games/Space Colony/Local/script.js:17 -Once\ the\ progress\ bar\ closes,\ an\ installation\ complete\ window\ should\ appear\ but\ in\ case\ it\ does\ not\ you\ should\ kill\ the\ process\ which\ name\ consist\ of\ just\ one\ dot.=Sobald die Fortschrittsanzeige geschlossen wird sollte ein Fenster erscheinen, das anzeigt, dass die Installation abgeschlossen ist. Passiert dies nicht, sollten Sie den Prozess, der als Name einen Punkt hat, beenden. - -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -834,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -843,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Terminal \u00f6ffnen -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -876,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Burnout Paradise The Ultimate Box bringt Ihnen das beste Konosolen Rennspiel von 2008, Burnout Paradise auf den PC, mit vielen gro\u00dfartigen \u00c4nderungen und Verbesserungen, wie zum Beispiel Motorr\u00e4der und aufregenden neuen Onlinemodi und Herausforderungen. @@ -886,141 +955,156 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Bitte schlie\u00dfen Sie Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Bitte stellen Sie sicher, dass winbind installiert ist, bevor Sie fortfahren. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Bitte stellen Sie sicher, dass Sie den neuesten Treiber (mindestens 415.25 f\u00fcr NVIDIA und mesa 19 f\u00fcr AMD) installiert haben oder dieses Spiel wird nicht korrekt funktionieren. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:50 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Bitte geben Sie einen Namen f\u00fcr Ihre Anwendung ein. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Bitte folgen Sie den Schritten der Steam-Installation. Warten Sie anschlie\u00dfend bis das Steam-Update fertiggestellt wurde, loggen Sie sich ein und schlie\u00dfen Steam vollst\u00e4ndig, sodass die Installation von "{0}" fortgesetzt werden kann. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Bitte folgen Sie den Schritten der Uplay Installation.\n\nEntfernen Sie den Haken bei "Uplay ausf\u00fchren" oder schlie\u00dfen Sie Uplay nach der Installation, damit die Installation von "{0}" fortgesetzt werden kann. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Bitte folgen Sie den Schritten der Uplay Installation.\n\nEntfernen Sie den Haken bei "Uplay ausf\u00fchren" oder schlie\u00dfen Sie Uplay nach der Installation, damit die Installation von "{0}" fortgesetzt werden kann. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Bitte loggen Sie sich mit Ihrem GoG.com Account ein, damit wir das Spiel f\u00fcr Sie herunterladen k\u00f6nnen\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=Bitte w\u00e4hlen Sie die .zip Datei aus. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:32 +#: Engines/Wine/Engine/Implementation/script.js:520 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Bitte w\u00e4hlen Sie die Download-URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=Bitte w\u00e4hlen Sie die ausf\u00fchrbare Datei aus. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Bitte w\u00e4hlen Sie die Installationsdatei aus. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Bitte w\u00e4hlen Sie die Installationsdatei aus.\nSie k\u00f6nnen diese von https\://www.elster.de/elfo_down.php herunterladen. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:522 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Bitte w\u00e4hlen Sie die Wine-Architektur. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Bitte w\u00e4hlen Sie die Wine-Distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Bitte w\u00e4hlen Sie die Wine-Version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Bitte warten Sie bis Steam den Download beendet hat... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Bitte warten Sie bis Uplay den Download beendet hat... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Bitte warten Sie w\u00e4hrend {0} heruntergeladen wird... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Bitte warten Sie w\u00e4hrend {0} extrahiert wird... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:41 +#: Engines/Wine/Verbs/msxml6/script.js:54 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=Bitte warten Sie w\u00e4hrend {0} installiert wird... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Bitte warten Sie w\u00e4hren {0} deinstalliert wird... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=Bitte warten... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Der Prefix scheint 32bit zu sein #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1060,6 +1144,9 @@ QuickScripts\ for\ Wine.=QuickScripts f\u00fcr Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Kommandieren Sie eine Multinationale Eliteeinheit aus Spezialisten gegen geheime Terrorkommandos. In Tom Clancy's Rainbox Six\: Raven Shield, dem dritten Teil der bekannten Rainbow Six Serie, muss das Team Rainbow sich einer geheimen und global operierenden Terror Organisation stellen und jagt einen geheimnisvollen Feind. Kommandieren Sie Rainbow in einem Rennen gegen die Zeit - an Orten wie England, Norwegen, der Karibik und Rio de Janeiro mitten im Karneval - um einen Verr\u00fcckten und sein Weltuntergangsszenario zu stoppen. @@ -1079,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger ist ein First Person Shooter (FPS) Puzzle Spiel. Kannst du das System infiltrieren und zerst\u00f6ren? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 -Registering\ {0}...=Registriere {0}... - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=Registryeditor @@ -1091,7 +1175,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Erleben Si #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1106,7 +1190,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1199,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music.

Audiosurf ist ein Puzzel-Rennspiel, in dem Sie Ihre eigene Muskisammlung "absurfen" k\u00f6nnen. Die Streckenf\u00fchrung, die Geschwindigkeit und die Stimmung jeder Rennstrecke spiegeln die Charakteristika des jeweiligen Songs dar. Sie erhalten Punkte, indem Sie gleichfarbige Bl\u00f6cke auf der Strecke zusammenf\u00fcgen. Spielen Sie gegen andere Online, um f\u00fcr Ihren Lieblingssong die h\u00f6chste Punktzahl zu erreichen. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1137,8 +1224,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1172,11 +1258,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=W\u00e4hlen Sie Ihre Region f\u00fcr den Patch (1.0 nach 1.60) aus. -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=W\u00e4hlen Sie Ihre Region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=In einer Welt, in der die Menschen lange verschwunden sind und Monster herrschen, spielt Earth Eternal - Valkal's Shadow, eine Fan-Fortsetzung von Earth Eternal, einem eingestellten MMORPG von Sparkplay Media. Valkal's Shadow basiert auf version 0.8.6, jedoch mit vielen neuen Inhalten und Funktionen, darunter zwei neue Gebiete, viele neue Dungeons und unz\u00e4hlige neue Quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1210,9 +1295,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1222,120 +1319,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty ist ein milit\u00e4risches Science-Fiction Echtzeitstrategiespiel, das von Blizzard Entertainment entwickelt und gepublished wurde. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1348,7 +1447,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam ist eine Internet-Vertriebsplattform f\u00fcr Computerspiele, Software, Filme und Serien, die von der Valve Corporation entwickelt und betrieben wird. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Feste Darstellungsreihenfolge #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1369,6 +1468,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1461,8 +1563,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter ist ein geheimnisvolles, storybasiertes First-Person Spiel. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1477,7 +1579,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=Der Container {0} wird nicht mehr verwendet.\nM\u00f6chten Sie ihn l\u00f6schen? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1486,6 +1588,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=Die brandneue Rocksmith 2014 Edition ist gr\u00f6\u00dfer, besser und schneller denn je. Von Grund auf erneuert, erlebst du stark verbesserte Features, ein neues Aussehen, flexiblere und tiefergehende \u00dcbungswerkzeuge, neue Techniken und Stimmungen, \u00fcber 50 neue Hits und vieles mehr. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=Der Spielablauf in Toki Tori ist ein Mix zweier Genres. W\u00e4hrend alles wie in einem Plattformer aussieht, ist dieses Spiel im Kern ein Puzzle-Spiel. Um im Spiel voranzukommen m\u00fcssen Sie in jedem Level ein Ei mit Hilfe einiger Werkzeuge aufsammeln. Die Spieler m\u00fcssen genauestens Achtgeben und im voraus planen, wenn sie Werkzeuge wie z.B. den Telewarp, Freeze-o-Matic und InstantRock\u2122 nutzen. Zus\u00e4tzliche Werkzeuge werden schrittweise eingef\u00fchrt w\u00e4hrend die Spieler in \u00fcber 80+ Level und vier einzigartigen Welten voranschreiten. @@ -1501,25 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=Wir schreiben das Jahr 1715. Piraten herrschen \u00fcber die Karibik und haben dort ihre eigene, gesetzlose Republik gegr\u00fcndet, in der Korruption, Gier und Grausamkeit an der Tagesordnung sind.Einer dieser Gesetzlosen ist der ungest\u00fcme, junge Kapit\u00e4n Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=Dieses Spiel ben\u00f6tigt einen Kopierschutzpatch. Es k\u00f6nnte in ihrem Land illegal sein, den Kopierschutz zu patchen. Sie m\u00fcssen den Patch daher selbst einspielen. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1547,8 +1655,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1587,14 +1694,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Einzigartige Ereignisse bringen dich in die Hallen einer lange vergessenen Gruft. Das einzige Fluchtmittel ist in einem Steinsockel eingeschlossen und anbei findest du eine Notiz von deinem geheimnisvollen Verb\u00fcndeten. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1603,6 +1713,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay ist Ubisoft's Portal f\u00fcr PC-Spiele. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:42 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils f\u00fcr Apps. @@ -1612,10 +1732,13 @@ Utils\ for\ file\ system\ interaction.=Utils f\u00fcr die Interaktion mit dem Da #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils f\u00fcr die Interaktion mit dem Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1624,7 +1747,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs f\u00fcr Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1648,17 +1771,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Willkommen bei Unholy Heights, einer Mischung aus Tower Defense und Apartmentmanagementsimulation\! Der Teufel hat ein Wohnhaus in ein Mietshaus nur f\u00fcr Monster umgewandelt und hat gro\u00dfe Pl\u00e4ne f\u00fcr die Zukunft. Locke Monster in dein Haus, verlange von ihnen Miete und halte sie gl\u00fccklich durch den Kauf von Einrichtungsgegenst\u00e4nden. Ungl\u00fccklicherweise haben Helden von dem Plan mitbekommen und werden vor nichts Halt machen bevor sie den Teufel vernichtet haben. Klopfe an die T\u00fcr von Bewohnern um sie zum Kampf zu rufen, schlie\u00dfe Helden in gemeinen Scherenformationen und f\u00fchre deine Truppen zum Sieg. Monster finden Arbeit, verlieben sich, bekommen Kinder und \u00fcbergehen sogar ihre Mietzahlungen. Halte sie gl\u00fccklich oder du gehst das Risiko einen niemanden zu haben der f\u00fcr die K\u00e4mpft wenn Helden anklopfen. Aber sei nicht zu weich\: es sind immer vielversprechende B\u00f6sewichte unterwegs die gerne einziehen m\u00f6chten, daher schmei\u00dfe Schmarotzer raus solange die Zeit reif ist\! Ein Vermieter zu sein ist ein schwieriger Beruf, aber es kann nicht schwieriger sein all die H\u00f6lle zu leiten... richtig? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=Wenn Origin startet, werden Sie eine Fehlermeldung erhalten ("Die Aktualisierung konnte nicht abgeschlossen werden"). Dies ist kein Problem. Schlie\u00dfen Sie einfach das Popup-Fenster. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=Bei der Installation der Indeo Codecs m\u00fcssen Sie die benutzerdefinierte Installationsart ausw\u00e4hlen. Danach entfernen Sie den Haken bei "DirectShow Filter" und "Indeo 5 Netscape Browser Extension". Anderenfalls wird die Installation fehlschlagen. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=W\u00e4hlen Sie "Ja", wenn Sie gefragt werden, ob DirectX Media installiert werden soll. W\u00e4hlen Sie "Nein" bei DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Welche Sprachversion m\u00f6chten Sie installieren? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1697,6 +1820,9 @@ Wine\ Tools=Wine Werkzeuge #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine Engine @@ -1706,9 +1832,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine Uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Skyrim wurde mit mehr als als 200 "Spiel des Jahres"-Auszeichnungen pr\u00e4miert, die Skyrim Special Edition erweckt den epischen Fantasy-Meilenstein mit verbl\u00fcffender Detailf\u00fclle zu neuem Leben. Die Special Edition enth\u00e4lt das Spiel samt Add-ons und bietet neue Features wie \u00fcberarbeitete Grafiken und Effekte, volumetrische Strahlenb\u00fcschel, dynamische Tiefensch\u00e4rfe, Screen Space Reflections und einiges mehr, und gibt auch Konsolenspielern Zugriff auf PC-Mods. Neue Quests, Umgebungen, Charaktere, Dialoge, R\u00fcstungen, Waffen und mehr \u2013 dank Mods sind Ihrem Spielerlebnis keine Grenzen gesetzt. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1741,6 +1873,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=Sie entscheiden \u00fcber Ihre eigene Einsatzrolle in der Welt von Brink bei Ihrem Kampf um die letzte Bastion der Menschheit\! +#: Applications/Games/Space Engineers/Steam/script.js:44 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=Sie nehmen an dem altert\u00fcmlichen, traditionellen Spiel Druidenfu\u00dfball teil. @@ -1759,6 +1894,9 @@ always\ offscreen=immer offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1786,13 +1924,19 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=Schriftarten +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -1817,12 +1961,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=Multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=Native Anwendung +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1838,10 +1991,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1868,9 +2021,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=feste Darstellungsreihenfolge -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1904,10 +2054,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1916,11 +2070,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} Anwendungen k\u00f6nnen Probleme haben, wenn die Windows-Version nicht auf "win2003" eingestellt ist #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 ist ein Arcade Top-Down Shooter mit Horde-Survival Gameplay in einer einzigartigen, atmosph\u00e4rischen Umgebung mit fesselnden Gameplay Elementen. Das Ganze kann auch kooperativ gespielt werden. Sie sind ein No-Nonsense Typ, der mit einer Taschenlampe und einer Waffe ausger\u00fcstet ist. Irgendwie haben Sie es geschafft, die Invasion einer gnadenlosen Alienspezies (einer von der Art, die sich von menschlichen Gehirnen ern\u00e4hrt) zu \u00fcberleben. Es sieht nicht gut aus als sie durch die Stadt und andere Orte wandern, \u00fcberall ist Chaos\! Sie suchen nach Ausr\u00fcstung und Waffen, um zu \u00fcberleben, als pinkes Licht emittierende Aliens versuchen, Sie um die Ecke zu bringen und Ihr Gehirn zu fressen. Sie erkennen, dass nur eins zu tun bleibt\: einen neuen Highscore erreichen und sterben wie ein Badass. - diff --git a/i18n/Messages_el.properties b/i18n/Messages_el.properties index c30ab8da12..15089d6a4e 100644 --- a/i18n/Messages_el.properties +++ b/i18n/Messages_el.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:492 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:44 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:220 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:251 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:49 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:321 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installing {0}... #: i18n/tmp/Applications/Internet/category.js:1 @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: Applications/Games/Space Colony/Local/script.js:17 -Once\ the\ progress\ bar\ closes,\ an\ installation\ complete\ window\ should\ appear\ but\ in\ case\ it\ does\ not\ you\ should\ kill\ the\ process\ which\ name\ consist\ of\ just\ one\ dot.=Once the progress bar closes, an installation complete window should appear but in case it does not you should kill the process which name consist of just one dot. - -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -834,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -843,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -876,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -886,141 +955,156 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:50 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:32 +#: Engines/Wine/Engine/Implementation/script.js:520 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:522 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:41 +#: Engines/Wine/Verbs/msxml6/script.js:54 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1060,6 +1144,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1079,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 -Registering\ {0}...=Registering {0}... - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=Registry Editor @@ -1091,7 +1175,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1106,7 +1190,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1199,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1137,8 +1224,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1172,11 +1258,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1210,9 +1295,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1222,120 +1319,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1348,7 +1447,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1369,6 +1468,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1461,8 +1563,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1477,7 +1579,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1486,6 +1588,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1501,25 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1547,8 +1655,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1587,14 +1694,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1603,6 +1713,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:42 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1612,10 +1732,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1624,7 +1747,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1648,17 +1771,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1697,6 +1820,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1706,9 +1832,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1741,6 +1873,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:44 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1759,6 +1894,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1786,13 +1924,19 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -1817,12 +1961,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1838,10 +1991,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1868,9 +2021,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1904,10 +2054,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1916,11 +2070,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_es.properties b/i18n/Messages_es.properties index 922b0a283f..15089d6a4e 100644 --- a/i18n/Messages_es.properties +++ b/i18n/Messages_es.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:492 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:44 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:220 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:251 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:49 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:321 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installing {0}... #: i18n/tmp/Applications/Internet/category.js:1 @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,46 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -831,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -840,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -873,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -883,141 +955,156 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:50 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:36 +#: Engines/Wine/Engine/Implementation/script.js:520 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:27 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:522 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:41 +#: Engines/Wine/Verbs/msxml6/script.js:54 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1057,6 +1144,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1076,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 -Registering\ {0}...=Registering {0}... - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=Registry Editor @@ -1088,7 +1175,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1103,7 +1190,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1112,6 +1199,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1134,8 +1224,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1169,11 +1258,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1207,9 +1295,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1219,120 +1319,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1345,7 +1447,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1366,6 +1468,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1458,8 +1563,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1474,7 +1579,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1483,6 +1588,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1498,25 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1544,8 +1655,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1584,14 +1694,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1600,6 +1713,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:42 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1609,10 +1732,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1621,7 +1747,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1645,17 +1771,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1694,6 +1820,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1703,9 +1832,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1738,6 +1873,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:44 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1756,6 +1894,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1783,13 +1924,19 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -1814,12 +1961,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1835,10 +1991,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1865,9 +2021,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1901,10 +2054,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1913,11 +2070,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_fa.properties b/i18n/Messages_fa.properties new file mode 100644 index 0000000000..288aae0e75 --- /dev/null +++ b/i18n/Messages_fa.properties @@ -0,0 +1,2083 @@ +#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You +#: Still Shower Dad/application.js:2 +'Shower\ With\ Your\ Dad\ Simulator\ 2015\:\ Do\ You\ Still\ Shower\ With\ Your\ Dad?'\ is\ a\ fast\ paced\ shower-simulation\ where\ you\ shower\ with\ your\ 8-bit\ dad.\ It's\ good,\ clean\ fun\!='Shower With Your Dad Simulator 2015\: Do You Still Shower With Your Dad?' is a fast paced shower-simulation where you shower with your 8-bit dad. It's good, clean fun\! + +#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/application.js:2 +'Where\ Legends\ Are\ Made'\ encapsulates\ the\ return\ of\ PES,\ with\ an\ unparalleled\ gameplay\ experience.='Where Legends Are Made' encapsulates the return of PES, with an unparalleled gameplay experience. + +#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 +.NET\ 2.0=.NET 2.0 + +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + +#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 +.NET\ 4.0=.NET 4.0 + +#: i18n/tmp/Engines/Wine/Verbs/dotnet45/script.js:1 +.NET\ 4.5=.NET 4.5 + +#: i18n/tmp/Engines/Wine/Verbs/dotnet452/script.js:1 +.NET\ 4.5.2=.NET 4.5.2 + +#: i18n/tmp/Engines/Wine/Verbs/dotnet46/script.js:1 +.NET\ 4.6=.NET 4.6 + +#: i18n/tmp/Engines/Wine/Verbs/dotnet461/script.js:1 +.NET\ 4.6.1=.NET 4.6.1 + +#: i18n/tmp/Engines/Wine/Verbs/dotnet462/script.js:1 +.NET\ 4.6.2=.NET 4.6.2 + +#: i18n/tmp/Engines/Wine/Verbs/dotnet472/script.js:1 +.NET\ 4.7.2=.NET 4.7.2 + +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/application.js:1 +18\ Wheels\ of\ Steel\:\ Across\ America=18 Wheels of Steel\: Across America + +#: i18n/tmp/Applications/Accessories/7-zip/application.js:2 +7-Zip\ is\ a\ file\ archiver\ with\ a\ high\ compression\ ratio.\ 7-Zip\ is\ open\ source\ software.\ Most\ of\ the\ source\ code\ is\ under\ the\ GNU\ LGPL\ license.\ The\ unRAR\ code\ is\ under\ a\ mixed\ license\:\ GNU\ LGPL\ +\ unRAR\ restrictions.\ You\ can\ use\ 7-Zip\ on\ any\ computer,\ including\ a\ computer\ in\ a\ commercial\ organization.\ You\ don't\ need\ to\ register\ or\ pay\ for\ 7-Zip.=7-Zip is a file archiver with a high compression ratio. 7-Zip is open source software. Most of the source code is under the GNU LGPL license. The unRAR code is under a mixed license\: GNU LGPL + unRAR restrictions. You can use 7-Zip on any computer, including a computer in a commercial organization. You don't need to register or pay for 7-Zip. + +#: i18n/tmp/Applications/Accessories/7-zip/application.js:1 +7-zip=7-zip + +#: i18n/tmp/Applications/Graphics/Photofiltre/application.js:2 +Introduction
PhotoFiltre\ Studio\ is\ a\ complete\ image\ retouching\ program.\ It\ allows\ you\ to\ do\ simple\ or\ advanced\ adjustments\ to\ an\ image\ and\ apply\ a\ vast\ range\ of\ filters\ on\ it.\ It\ is\ simple\ and\ intuitive\ to\ use,\ and\ has\ an\ easy\ learning\ curve.\ The\ toolbar,\ giving\ you\ access\ to\ the\ standard\ filters\ with\ just\ a\ few\ clicks,\ gives\ PhotoFiltre\ Studio\ a\ robust\ look.\ PhotoFiltre\ Studio\ also\ has\ layer\ manager\ (with\ Alpha\ channel),\ advanced\ brushes,\ nozzles\ (or\ tubes),\ red\ eye\ corrector,\ batch\ module\ and\ lot\ of\ other\ powerful\ tools.=Introduction
PhotoFiltre Studio is a complete image retouching program. It allows you to do simple or advanced adjustments to an image and apply a vast range of filters on it. It is simple and intuitive to use, and has an easy learning curve. The toolbar, giving you access to the standard filters with just a few clicks, gives PhotoFiltre Studio a robust look. PhotoFiltre Studio also has layer manager (with Alpha channel), advanced brushes, nozzles (or tubes), red eye corrector, batch module and lot of other powerful tools. + +#: i18n/tmp/Applications/Internet/mIRC/application.js:2 +

mIRC\ is\ a\ popular\ Internet\ Relay\ Chat\ client\ used\ by\ millions\ of\ people,\ and\ thousands\ of\ organizations,\ to\ communicate,\ share,\ play\ and\ work\ with\ each\ other\ on\ IRC\ networks\ around\ the\ world.\ Serving\ the\ Internet\ community\ for\ over\ a\ decade,\ mIRC\ has\ evolved\ into\ a\ powerful,\ reliable\ and\ fun\ piece\ of\ technology.

=

mIRC is a popular Internet Relay Chat client used by millions of people, and thousands of organizations, to communicate, share, play and work with each other on IRC networks around the world. Serving the Internet community for over a decade, mIRC has evolved into a powerful, reliable and fun piece of technology.

+ +#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed +#: Emerald: A Whirlwind Heist/application.js:2 +A\ 15\ minute\ heist\ game\ by\ Crows\ Crows\ Crows\ &\ Directed\ by\ William\ Pugh\ (The\ Stanley\ Parable).=A 15 minute heist game by Crows Crows Crows & Directed by William Pugh (The Stanley Parable). + +#: i18n/tmp/Applications/Games/Lego Rock Raiders/application.js:2 +A\ Lego\ Sci-Fi\ real\ time\ strategy\ game.\ The\ objective\ is\ to\ complete\ missions\ by\ mining\ a\ certain\ quota\ of\ energy\ crystal,\ while\ defending\ your\ mining\ base\ or\ even\ struggling\ to\ keep\ a\ breathable\ atmosphere\ in\ the\ mine.=A Lego Sci-Fi real time strategy game. The objective is to complete missions by mining a certain quota of energy crystal, while defending your mining base or even struggling to keep a breathable atmosphere in the mine. + +#: i18n/tmp/Applications/Games/CONSORTIUM/application.js:2 +A\ murder\ mystery,\ on\ a\ plane,\ in\ the\ future.\ You\ are\ Consortium\ Bishop\ Six,\ a\ global\ peacekeeper\ in\ the\ year\ 2042.\ Your\ actions\ define\ and\ inform\ the\ ongoing\ narrative.=A murder mystery, on a plane, in the future. You are Consortium Bishop Six, a global peacekeeper in the year 2042. Your actions define and inform the ongoing narrative. + +#: i18n/tmp/Applications/Games/The Room/application.js:2 +A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ the\ room\ is\ a\ cast-iron\ safe\ laced\ with\ strange\ carvings\ and\ on\ top,\ a\ note\ from\ your\ distant\ companion.\ It\ promises\ something\ ancient\ and\ astonishing\ concealed\ in\ the\ iron\ chamber\ -\ you\ need\ only\ find\ a\ way\ in.=A mysterious invitation leads to the attic of an abandoned house. In the room is a cast-iron safe laced with strange carvings and on top, a note from your distant companion. It promises something ancient and astonishing concealed in the iron chamber - you need only find a way in. + +#: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 +A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? + +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + +#: i18n/tmp/Applications/Games/Far Cry/application.js:2 +A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. + +#: i18n/tmp/Applications/Accessories/category.js:1 +Accessories=Accessories + +#: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/application.js:1 +Adobe\ Acrobat\ Reader\ DC=Adobe Acrobat Reader DC + +#: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/application.js:2 +Adobe\ Acrobat\ Reader\ DC\ software\ is\ the\ free\ global\ standard\ for\ reliably\ viewing,\ printing,\ and\ commenting\ on\ PDF\ documents.

Premium\ features,\ online\ services\ and\ updates\ do\ not\ work.=Adobe Acrobat Reader DC software is the free global standard for reliably viewing, printing, and commenting on PDF documents.

Premium features, online services and updates do not work. + +#: i18n/tmp/Engines/Wine/Verbs/adobeair/script.js:1 +Adobe\ Air=Adobe Air + +#: i18n/tmp/Applications/Games/Age of Empires II HD/application.js:1 +Age\ of\ Empires\ II\ HD=Age of Empires II HD + +#: i18n/tmp/Applications/Games/Age of Empires II HD/application.js:2 +Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ features,\ trading\ cards,\ improved\ AI,\ workshop\ support,\ multiplayer,\ Steamworks\ integration\ and\ more\!=Age of Empires II has been re-imagined in high definition with new features, trading cards, improved AI, workshop support, multiplayer, Steamworks integration and more\! + +#: i18n/tmp/Applications/Games/Age of Empires III: Complete +#: Collection/application.js:1 +Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection + +#: Engines/Wine/Settings/always offscreen/script.js:17 +Always\ offscreen=Always offscreen + +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/application.js:2 +Amidst\ the\ scorched\ sands\ of\ ancient\ Persia,\ there\ is\ a\ legend\ spun\ in\ an\ ancient\ tongue.\ It\ speaks\ of\ a\ time\ borne\ by\ blood\ and\ ruled\ by\ deceit.\ Drawn\ to\ the\ dark\ powers\ of\ a\ magic\ dagger,\ a\ young\ Prince\ is\ led\ to\ unleash\ a\ deadly\ evil\ upon\ a\ beautiful\ kingdom.=Amidst the scorched sands of ancient Persia, there is a legend spun in an ancient tongue. It speaks of a time borne by blood and ruled by deceit. Drawn to the dark powers of a magic dagger, a young Prince is led to unleash a deadly evil upon a beautiful kingdom. + +#: i18n/tmp/Applications/Games/Assassin's Creed II/application.js:2 +An\ epic\ story\ of\ family,\ vengeance\ and\ conspiracy\ set\ in\ the\ pristine,\ yet\ brutal,\ backdrop\ of\ a\ Renaissance\ Italy.=An epic story of family, vengeance and conspiracy set in the pristine, yet brutal, backdrop of a Renaissance Italy. + +#: i18n/tmp/Applications/Games/Anno 2070/application.js:1 +Anno\ 2070=Anno 2070 + +#: i18n/tmp/Applications/Games/Anno 2070/application.js:2 +Anno\ 2070\ is\ a\ game\ of\ settling\ on\ islands,\ building\ cities,\ productions,\ economies\ as\ well\ as\ trading\ and\ war.=Anno 2070 is a game of settling on islands, building cities, productions, economies as well as trading and war. + +#: i18n/tmp/Utils/Functions/Apps/Resources/script.js:1 +App\ Resources=App Resources + +#: i18n/tmp/Utils/Functions/Apps/application.js:1 +App\ Utils=App Utils + +#: i18n/tmp/Applications/Games/Mass Effect/application.js:2 +As\ Commander\ Shepard,\ you\ lead\ an\ elite\ squad\ on\ a\ heroic,\ action-packed\ adventure\ throughout\ the\ galaxy.\ Discover\ the\ imminent\ danger\ from\ an\ ancient\ threat\ and\ battle\ the\ traitorous\ Saren\ and\ his\ deadly\ army\ to\ save\ civilization.\ The\ fate\ of\ all\ life\ depends\ on\ your\ actions\!=As Commander Shepard, you lead an elite squad on a heroic, action-packed adventure throughout the galaxy. Discover the imminent danger from an ancient threat and battle the traitorous Saren and his deadly army to save civilization. The fate of all life depends on your actions\! + +#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:1 +Assassin's\ Creed®\ Revelations=Assassin's Creed\u00ae Revelations + +#: i18n/tmp/Applications/Games/Assassin's Creed/application.js:1 +Assassin's\ Creed™=Assassin's Creed\u2122 + +#: i18n/tmp/Applications/Games/Assassin's Creed/application.js:2 +Assassin's\ Creed™\ is\ the\ next-gen\ game\ developed\ by\ Ubisoft\ Montreal\ that\ redefines\ the\ action\ genre.\ While\ other\ games\ claim\ to\ be\ next-gen\ with\ impressive\ graphics\ and\ physics,\ Assassin's\ Creed\ merges\ technology,\ game\ design,\ theme\ and\ emotions\ into\ a\ world\ where\ you\ instigate\ chaos\ and\ become\ a\ vulnerable,\ yet\ powerful,\ agent\ of\ change.

The\ setting\ is\ 1191\ AD.\ The\ Third\ Crusade\ is\ tearing\ the\ Holy\ Land\ apart.\ You,\ Altair,\ intend\ to\ stop\ the\ hostilities\ by\ suppressing\ both\ sides\ of\ the\ conflict.You\ are\ an\ Assassin,\ a\ warrior\ shrouded\ in\ secrecy\ and\ feared\ for\ your\ ruthlessness.\ Your\ actions\ can\ throw\ your\ immediate\ environment\ into\ chaos,\ and\ your\ existence\ will\ shape\ events\ during\ this\ pivotal\ moment\ in\ history.=Assassin's Creed\u2122 is the next-gen game developed by Ubisoft Montreal that redefines the action genre. While other games claim to be next-gen with impressive graphics and physics, Assassin's Creed merges technology, game design, theme and emotions into a world where you instigate chaos and become a vulnerable, yet powerful, agent of change.

The setting is 1191 AD. The Third Crusade is tearing the Holy Land apart. You, Altair, intend to stop the hostilities by suppressing both sides of the conflict.You are an Assassin, a warrior shrouded in secrecy and feared for your ruthlessness. Your actions can throw your immediate environment into chaos, and your existence will shape events during this pivotal moment in history. + +#: i18n/tmp/Applications/Games/Assassin's Creed II/application.js:1 +Assassin’s\ Creed\ II=Assassin\u2019s Creed II + +#: i18n/tmp/Applications/Games/Assassin's Creed: Brotherhood/application.js:1 +Assassin’s\ Creed®\ Brotherhood=Assassin\u2019s Creed\u00ae Brotherhood + +#: i18n/tmp/Applications/Games/Assassin's Creed III/application.js:1 +Assassin’s\ Creed®\ III=Assassin\u2019s Creed\u00ae III + +#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:1 +Assassin’s\ Creed®\ IV\ Black\ Flag™=Assassin\u2019s Creed\u00ae IV Black Flag\u2122 + +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/application.js:1 +Assassin’s\ Creed®\ Unity=Assassin\u2019s Creed\u00ae Unity + +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/application.js:2 +Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ embarks\ upon\ an\ extraordinary\ journey\ to\ expose\ the\ true\ powers\ behind\ the\ French\ Revolution.\ In\ the\ brand\ new\ co-op\ mode,\ you\ and\ your\ friends\ will\ also\ be\ thrown\ in\ the\ middle\ of\ a\ ruthless\ struggle\ for\ the\ fate\ of\ a\ nation.=Assassin\u2019s Creed\u00ae Unity tells the story of Arno, a young man who embarks upon an extraordinary journey to expose the true powers behind the French Revolution. In the brand new co-op mode, you and your friends will also be thrown in the middle of a ruthless struggle for the fate of a nation. + +#: i18n/tmp/Applications/Games/Audiosurf/application.js:1 +Audiosurf=Audiosurf + +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + +#: i18n/tmp/Applications/Games/BRINK/application.js:1 +BRINK=BRINK + +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +Backbuffer=Backbuffer + +#: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 +Batman\:\ Arkham\ City\ builds\ upon\ the\ intense,\ atmospheric\ foundation\ of\ Batman\:\ Arkham\ Asylum,\ sending\ players\ flying\ through\ the\ expansive\ Arkham\ City\ -\ five\ times\ larger\ than\ the\ game\ world\ in\ Batman\:\ Arkham\ Asylum\ -\ the\ new\ maximum\ security\ =Batman\: Arkham City builds upon the intense, atmospheric foundation of Batman\: Arkham Asylum, sending players flying through the expansive Arkham City - five times larger than the game world in Batman\: Arkham Asylum - the new maximum security + +#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:1 +Batman™\:\ Arkham\ Asylum=Batman\u2122\: Arkham Asylum + +#: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:1 +Batman™\:\ Arkham\ City=Batman\u2122\: Arkham City + +#: i18n/tmp/Applications/Games/Batman™: Arkham Origins/application.js:1 +Batman™\:\ Arkham\ Origins=Batman\u2122\: Arkham Origins + +#: i18n/tmp/Applications/Games/Batman™: Arkham Origins/application.js:2 +Batman™\:\ Arkham\ Origins\ is\ the\ next\ installment\ in\ the\ blockbuster\ Batman\:\ Arkham\ videogame\ franchise.\ Developed\ by\ WB\ Games\ Montréal,\ the\ game\ features\ an\ expanded\ Gotham\ City\ and\ introduces\ an\ original\ prequel\ storyline\ set\ several\ years\ before\ the\ events\ of\ Batman\:\ Arkham\ Asylum\ and\ Batman\:\ Arkham\ City,\ the\ first\ two\ critically\ acclaimed\ games\ of\ the\ franchise.\ Taking\ place\ before\ the\ rise\ of\ Gotham\ City’s\ most\ dangerous\ criminals,\ the\ game\ showcases\ a\ young\ and\ unrefined\ Batman\ as\ he\ faces\ a\ defining\ moment\ in\ his\ early\ career\ as\ a\ crime\ fighter\ that\ sets\ his\ path\ to\ becoming\ the\ Dark\ Knight.=Batman\u2122\: Arkham Origins is the next installment in the blockbuster Batman\: Arkham videogame franchise. Developed by WB Games Montr\u00e9al, the game features an expanded Gotham City and introduces an original prequel storyline set several years before the events of Batman\: Arkham Asylum and Batman\: Arkham City, the first two critically acclaimed games of the franchise. Taking place before the rise of Gotham City\u2019s most dangerous criminals, the game showcases a young and unrefined Batman as he faces a defining moment in his early career as a crime fighter that sets his path to becoming the Dark Knight. + +#: i18n/tmp/Applications/Games/SimCity (2013)/application.js:2 +Be\ the\ hero\ of\ your\ very\ own\ city\ as\ you\ design\ and\ create\ a\ beautiful,\ bustling\ metropolis\ in\ SimCity\ BuildIt,\ the\ most\ popular\ city\ builder\ on\ mobile,\ and\ other\ SimCity\ games.\ Every\ decision\ is\ yours\ as\ your\ city\ gets\ larger\ and\ more\ intricate.\ Make\ smart\ choices\ to\ keep\ your\ citizens\ happy\ and\ your\ skyline\ growing.\ Build\ your\ way\ to\ extraordinary.
Experience\ the\ newest\ version\ of\ SimCity\ -\ the\ greatest\ city-simulator\ of\ all\ time.\ This\ collection\ is\ packed\ with\ an\ expanded\ core\ game,\ the\ SimCity\:\ Cities\ of\ Tomorrow\ expansion\ pack,\ and\ the\ Amusement\ Park,\ Airship,\ French,\ British\ and\ German\ City\ sets.\ Create\ the\ city\ you\ desire\ and\ make\ choices\ that\ will\ shape\ your\ city\ and\ the\ Sims\ in\ it.\ Focus\ on\ industry,\ or\ consumerism\ and\ your\ economy\ will\ soar\ –\ but\ at\ the\ expense\ of\ your\ Sims'\ health\ as\ pollution\ spreads.\ Implement\ green\ technology\ and\ improve\ your\ Sims’\ lives\ while\ risking\ higher\ taxes\ and\ unemployment.\ The\ choice\ is\ yours.=Be the hero of your very own city as you design and create a beautiful, bustling metropolis in SimCity BuildIt, the most popular city builder on mobile, and other SimCity games. Every decision is yours as your city gets larger and more intricate. Make smart choices to keep your citizens happy and your skyline growing. Build your way to extraordinary.
Experience the newest version of SimCity - the greatest city-simulator of all time. This collection is packed with an expanded core game, the SimCity\: Cities of Tomorrow expansion pack, and the Amusement Park, Airship, French, British and German City sets. Create the city you desire and make choices that will shape your city and the Sims in it. Focus on industry, or consumerism and your economy will soar \u2013 but at the expense of your Sims' health as pollution spreads. Implement green technology and improve your Sims\u2019 lives while risking higher taxes and unemployment. The choice is yours. + +#: i18n/tmp/Applications/Graphics/Microsoft Paint/application.js:2 +Because\ we\ are\ nostalgic\ people.=Because we are nostalgic people. + +#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:2 +Become\ a\ zoo\ manager\ and\ take\ good\ care\ of\ your\ animals.\ Wildlife\ Park\ 2\ brings\ you\ into\ up\ close\ and\ personal\ contact\ with\ more\ than\ 50\ different\ animal\ species.\ Observe\ the\ lovingly\ animated\ interaction\ of\ the\ animals\ -\ with\ other\ animals,\ the\ landscape,\ the\ play\ equipment,\ or\ the\ visitors\ to\ the\ park\!\ Just\ like\ in\ a\ real\ zoo,\ the\ animals\ must\ receive\ all-round\ care.\ This\ is\ as\ easy\ as\ winking\ in\ Wildlife\ Park\ 2\:\ With\ a\ click\ of\ the\ mouse\ you\ can\ feed,\ doctor,\ pet,\ or\ even\ relocate\ animals,\ or\ get\ them\ moving.\ You\ will\ guide\ a\ team\ of\ landscape\ architects,\ gardeners,\ keepers,\ veterinarians,\ and\ scientists.\ If\ you\ manage\ your\ zoo\ carefully,\ you\ will\ soon\ be\ able\ to\ celebrate\ the\ birth\ of\ new\ animals\!\ Construct\ your\ zoo\ using\ more\ than\ 100\ animal\ houses,\ visitor\ facilities,\ staff\ buildings,\ decorative\ park\ elements,\ and\ enclosure\ equipment.\ Wildlife\ Park\ 2\ is\ an\ ideal\ playground\ for\ amateur\ architects,\ too\!\ Use\ the\ extensive\ terraforming\ options\ to\ create\ your\ own\ imaginative\ landscapes.\ Plenty\ of\ established\ plant\ species\ and\ botanical\ rarities\ such\ us\ underwater\ plants\ or\ cacti\ will\ thrive\ under\ your\ loving\ care,\ and\ all\ this\ is\ lavishly\ displayed\ by\ a\ dynamic\ plant\ system.\ Another\ specialty\ is\ the\ realistically\ simulated\ flow\ of\ water.\ By\ easily\ placing\ a\ water\ source,\ you\ can\ create\ thunderous\ waterfalls\ and\ rambling\ water\ worlds.\ Visitors\ to\ your\ zoo\ will\ expect\ a\ few\ treats,\ too\ -\ build\ restaurants\ and\ ice-cream\ parlors\ and\ provide\ spectacular\ entertainment.\ Employ\ advertising\ and\ marketing\ to\ attract\ new\ visitors.\ But\ don't\ forget\ to\ keep\ an\ eye\ on\ your\ zoo's\ budget\ at\ all\ times\!=Become a zoo manager and take good care of your animals. Wildlife Park 2 brings you into up close and personal contact with more than 50 different animal species. Observe the lovingly animated interaction of the animals - with other animals, the landscape, the play equipment, or the visitors to the park\! Just like in a real zoo, the animals must receive all-round care. This is as easy as winking in Wildlife Park 2\: With a click of the mouse you can feed, doctor, pet, or even relocate animals, or get them moving. You will guide a team of landscape architects, gardeners, keepers, veterinarians, and scientists. If you manage your zoo carefully, you will soon be able to celebrate the birth of new animals\! Construct your zoo using more than 100 animal houses, visitor facilities, staff buildings, decorative park elements, and enclosure equipment. Wildlife Park 2 is an ideal playground for amateur architects, too\! Use the extensive terraforming options to create your own imaginative landscapes. Plenty of established plant species and botanical rarities such us underwater plants or cacti will thrive under your loving care, and all this is lavishly displayed by a dynamic plant system. Another specialty is the realistically simulated flow of water. By easily placing a water source, you can create thunderous waterfalls and rambling water worlds. Visitors to your zoo will expect a few treats, too - build restaurants and ice-cream parlors and provide spectacular entertainment. Employ advertising and marketing to attract new visitors. But don't forget to keep an eye on your zoo's budget at all times\! + +#: i18n/tmp/Applications/Games/STAR WARS: Dark Forces/application.js:2 +Behind\ a\ veil\ of\ secrecy\ the\ evil\ Empire\ is\ creating\ a\ doomsday\ army\ -\ one\ that,\ if\ finished,\ will\ become\ the\ final\ cog\ in\ the\ Empire's\ arsenal\ of\ terror\ and\ domination.\ Your\ Mission?\ Join\ the\ Rebel\ Alliance's\ covert\ operations\ division,\ infiltrate\ the\ Empire.=Behind a veil of secrecy the evil Empire is creating a doomsday army - one that, if finished, will become the final cog in the Empire's arsenal of terror and domination. Your Mission? Join the Rebel Alliance's covert operations division, infiltrate the Empire. + +#: i18n/tmp/Applications/Games/Subnautica Below Zero/application.js:2 +Below\ Zero\ is\ an\ underwater\ adventure\ game\ set\ on\ an\ alien\ ocean\ world.\ It\ is\ a\ new\ chapter\ in\ the\ Subnautica\ universe,\ and\ is\ currently\ in\ development\ by\ Unknown\ Worlds.
Return\ to\ planet\ 4546B
Dive\ into\ a\ freezing\ underwater\ adventure.\ Below\ Zero\ is\ set\ in\ an\ arctic\ region\ of\ planet\ 4546B.\ As\ a\ scientist\ posted\ to\ a\ research\ station\ on\ the\ planet's\ surface,\ you\ are\ tasked\ with\ studying\ alien\ artefacts.\ The\ Vesper\ space\ station\ orbits\ high\ above\ you,\ sending\ supplies,\ instructions,\ and\ receiving\ samples\ you\ launch\ from\ the\ surface.\ When\ disaster\ strikes\ the\ research\ station,\ you\ must\ improvise\ to\ survive\:\ Construct\ habitats,\ scavenge\ for\ resources,\ hunt\ for\ food,\ and\ craft\ equipment.
Explore\ new\ biomes
Swim\ beneath\ the\ blue-lit,\ arching\ growth\ of\ Twisty\ Bridges.\ Navigate\ treacherous\ ice\ floes\ on\ the\ ocean\ surface.\ Clamber\ up\ snow\ covered\ peaks,\ and\ venture\ into\ icy\ caves.\ Maneuver\ between\ steaming\ Thermal\ Vents.\ Below\ Zero\ presents\ entirely\ new\ environments\ for\ you\ to\ survive,\ study,\ and\ explore.\ Discover\ new\ lifeforms\ in\ the\ icy\ depths\ of\ 4546B.\ Swim\ through\ the\ giant\ Titan\ Holefish,\ escape\ from\ the\ aggressive\ Brute\ Shark,\ and\ visit\ the\ adorable\ Pengwings.\ Some\ residents\ of\ the\ frozen\ ocean\ will\ help\ you,\ and\ some\ might\ try\ to\ harm\ you.=Below Zero is an underwater adventure game set on an alien ocean world. It is a new chapter in the Subnautica universe, and is currently in development by Unknown Worlds.
Return to planet 4546B
Dive into a freezing underwater adventure. Below Zero is set in an arctic region of planet 4546B. As a scientist posted to a research station on the planet's surface, you are tasked with studying alien artefacts. The Vesper space station orbits high above you, sending supplies, instructions, and receiving samples you launch from the surface. When disaster strikes the research station, you must improvise to survive\: Construct habitats, scavenge for resources, hunt for food, and craft equipment.
Explore new biomes
Swim beneath the blue-lit, arching growth of Twisty Bridges. Navigate treacherous ice floes on the ocean surface. Clamber up snow covered peaks, and venture into icy caves. Maneuver between steaming Thermal Vents. Below Zero presents entirely new environments for you to survive, study, and explore. Discover new lifeforms in the icy depths of 4546B. Swim through the giant Titan Holefish, escape from the aggressive Brute Shark, and visit the adorable Pengwings. Some residents of the frozen ocean will help you, and some might try to harm you. + +#: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:1 +Beyond\ Good\ and\ Evil™=Beyond Good and Evil\u2122 + +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/application.js:2 +Big\ Brother\ has\ arrived\ -\ and\ it’s\ you.\ Investigate\ the\ lives\ of\ citizens\ to\ find\ those\ responsible\ for\ a\ series\ of\ terror\ attacks.\ Information\ from\ the\ internet,\ personal\ communications\ and\ private\ files\ are\ all\ accessible\ to\ you.\ But,\ be\ warned,\ the\ information\ you\ supply\ will\ have\ consequences.=Big Brother has arrived - and it\u2019s you. Investigate the lives of citizens to find those responsible for a series of terror attacks. Information from the internet, personal communications and private files are all accessible to you. But, be warned, the information you supply will have consequences. + +#: i18n/tmp/Applications/Games/BioShock/application.js:2 +BioShock\ is\ a\ shooter\ unlike\ any\ you've\ ever\ played,\ loaded\ with\ weapons\ and\ tactics\ never\ seen.\ You'll\ have\ a\ complete\ arsenal\ at\ your\ disposal\ from\ simple\ revolvers\ to\ grenade\ launchers\ and\ chemical\ throwers,\ but\ you'll\ also\ be\ forced\ to\ genetically\ modify\ your\ DNA\ to\ create\ an\ even\ more\ deadly\ weapon\:\ you.\ Injectable\ plasmids\ give\ you\ super\ human\ powers\:\ blast\ electrical\ currents\ into\ water\ to\ electrocute\ multiple\ enemies,\ or\ freeze\ them\ solid\ and\ obliterate\ them\ with\ the\ swing\ of\ a\ wrench.
No\ encounter\ ever\ plays\ out\ the\ same,\ and\ no\ two\ gamers\ will\ play\ the\ game\ the\ same\ way.=BioShock is a shooter unlike any you've ever played, loaded with weapons and tactics never seen. You'll have a complete arsenal at your disposal from simple revolvers to grenade launchers and chemical throwers, but you'll also be forced to genetically modify your DNA to create an even more deadly weapon\: you. Injectable plasmids give you super human powers\: blast electrical currents into water to electrocute multiple enemies, or freeze them solid and obliterate them with the swing of a wrench.
No encounter ever plays out the same, and no two gamers will play the game the same way. + +#: i18n/tmp/Applications/Games/BioShock/application.js:1 +BioShock™=BioShock\u2122 + +#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/application.js:2 +BioWare\ and\ LucasArts\ bring\ you\ the\ next\ evolution\ in\ MMO\ Gameplay.\ Explore\ an\ age\ thousands\ of\ years\ before\ the\ rise\ of\ Darth\ Vader\ when\ war\ between\ the\ Galactic\ Republic\ and\ the\ Sith\ Empire\ divides\ the\ galaxy.=BioWare and LucasArts bring you the next evolution in MMO Gameplay. Explore an age thousands of years before the rise of Darth Vader when war between the Galactic Republic and the Sith Empire divides the galaxy. + +#: i18n/tmp/Applications/Games/Tom Clancy's The Division/application.js:2 +Black\ Friday\ –\ a\ devastating\ pandemic\ sweeps\ through\ New\ York\ City,\ and\ one\ by\ one,\ basic\ services\ fail.\ In\ only\ days,\ without\ food\ or\ water,\ society\ collapses\ into\ chaos.\ The\ Division,\ an\ autonomous\ unit\ of\ tactical\ agents,\ is\ activated.=Black Friday \u2013 a devastating pandemic sweeps through New York City, and one by one, basic services fail. In only days, without food or water, society collapses into chaos. The Division, an autonomous unit of tactical agents, is activated. + +#: i18n/tmp/Applications/Games/Black Mesa/application.js:1 +Black\ Mesa=Black Mesa + +#: i18n/tmp/Applications/Games/Blizzard app/application.js:1 +#: app/Online/script.js:1 +Blizzard\ app=Blizzard app + +#: i18n/tmp/Applications/Games/Borderlands/application.js:1 +Borderlands=Borderlands + +#: i18n/tmp/Applications/Games/Braid/application.js:1 +Braid=Braid + +#: i18n/tmp/Applications/Games/Braid/application.js:2 +Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. + +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + +#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate +#: Box/application.js:1 +Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box + +#: i18n/tmp/Applications/Games/CONSORTIUM/application.js:1 +CONSORTIUM=CONSORTIUM + +#: i18n/tmp/Applications/Games/Caesar III/application.js:1 +Caesar\ III=Caesar III + +#: i18n/tmp/Applications/Games/Call of Juarez Gunslinger/application.js:1 +Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger + +#: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 +Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. + +#: Engines/Wine/Engine/Implementation/script.js:403 +Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. + +#: Engines/Wine/Engine/Implementation/script.js:484 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 +Checking\ file\ consistency...=Checking file consistency... + +#: i18n/tmp/Applications/Games/ChromaGun/application.js:1 +ChromaGun=ChromaGun + +#: i18n/tmp/Applications/Games/Civilization V/application.js:1 +Civilization\ V=Civilization V + +#: i18n/tmp/Applications/Games/Clicker Heroes/application.js:1 +Clicker\ Heroes=Clicker Heroes + +#: i18n/tmp/Applications/Games/Cogs/application.js:1 +Cogs=Cogs + +#: i18n/tmp/Applications/Games/Cogs/application.js:2 +Cogs\ is\ a\ puzzle\ game\ where\ players\ build\ machines\ from\ sliding\ tiles.\ Players\ can\ choose\ from\ 50\ levels\ and\ 3\ gameplay\ modes.\ New\ puzzles\ are\ unlocked\ by\ building\ contraptions\ quickly\ and\ efficiently.=Cogs is a puzzle game where players build machines from sliding tiles. Players can choose from 50 levels and 3 gameplay modes. New puzzles are unlocked by building contraptions quickly and efficiently. + +#: i18n/tmp/Applications/Games/Command and Conquer - Tiberium +#: Wars/application.js:1 +Command\ and\ Conquer\ -\ Tiberium\ Wars=Command and Conquer - Tiberium Wars + +#: i18n/tmp/Applications/Games/STAR WARS - Empire at War Gold +#: Pack/application.js:2 +Command\ or\ corrupt\ an\ entire\ galaxy\ in\ the\ definitive\ Star\ Wars\ strategy\ collection.\ It\ is\ a\ time\ of\ galactic\ civil\ war.\ Will\ you\ take\ up\ the\ reins\ of\ the\ Rebellion,\ assume\ control\ of\ the\ Empire,\ or\ rule\ the\ Star\ Wars\ Underworld?=Command or corrupt an entire galaxy in the definitive Star Wars strategy collection. It is a time of galactic civil war. Will you take up the reins of the Rebellion, assume control of the Empire, or rule the Star Wars Underworld? + +#: i18n/tmp/Engines/Wine/Tools/WineConsole/script.js:1 +Command\ prompt=Command prompt + +#: i18n/tmp/Engines/Wine/Tools/Configure Wine/script.js:1 +Configure\ Wine=Configure Wine + +#: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 +Consortium\:\ The\ Tower=Consortium\: The Tower + +#: Engines/Wine/Plugins/native application/script.js:29 +Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" + +#: Engines/Wine/Engine/Object/script.js:190 +Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! + +#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 +Crayon\ Physics=Crayon Physics + +#: i18n/tmp/Applications/Games/Crayon Physics/application.js:2 +Crayon\ Physics\ is\ a\ mouse\ arcade\ game.\ You\ will\ have\ to\ draw\ lines\ and\ squares\ to\ move\ a\ ball.\ The\ aim\ is\ to\ catch\ the\ stars\ in\ the\ level.=Crayon Physics is a mouse arcade game. You will have to draw lines and squares to move a ball. The aim is to catch the stars in the level. + +#: i18n/tmp/Applications/Custom/category.js:1 +Custom=Custom + +#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 +Custom\ Installer\ Script=Custom Installer Script + +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:21 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + +#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 +DC\ Universe\ Online=DC Universe Online + +#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:1 +DOOM\ (2016)=DOOM (2016) + +#: i18n/tmp/Engines/Wine/Plugins/DOS support/script.js:1 +DOS\ support=DOS support + +#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse 2/application.js:2 +DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XENOVERSE\ with\ enhanced\ graphics\ that\ will\ further\ immerse\ players\ into\ the\ largest\ and\ most\ detailed\ Dragon\ Ball\ world\ ever\ developed.

DRAGON\ BALL\ XENOVERSE\ 2\ will\ deliver\ a\ new\ hub\ city\ and\ the\ most\ character\ customization\ choices\ to\ date\ among\ a\ multitude\ of\ new\ features\ and\ special\ upgrades.=DRAGON BALL XENOVERSE 2 builds upon the highly popular DRAGON BALL XENOVERSE with enhanced graphics that will further immerse players into the largest and most detailed Dragon Ball world ever developed.

DRAGON BALL XENOVERSE 2 will deliver a new hub city and the most character customization choices to date among a multitude of new features and special upgrades. + +#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 +DXVK=DXVK + +#: Engines/Wine/Verbs/DXVK/script.js:21 +DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 +Default=Default + +#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 +Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ shooter\ genre\ and\ created\ multiplayer\ Deathmatch,\ DOOM\ returns\ as\ a\ brutally\ fun\ and\ challenging\ modern-day\ shooter\ experience.\ Relentless\ demons,\ impossibly\ destructive\ guns,\ and\ fast,\ fluid\ movement\ provide\ the\ foundation\ for\ intense,\ first-person\ combat\ –\ whether\ you’re\ obliterating\ demon\ hordes\ through\ the\ depths\ of\ Hell\ in\ the\ single-player\ campaign,\ or\ competing\ against\ your\ friends\ in\ numerous\ multiplayer\ modes.\ Expand\ your\ gameplay\ experience\ using\ DOOM\ SnapMap\ game\ editor\ to\ easily\ create,\ play,\ and\ share\ your\ content\ with\ the\ world.=Developed by id software, the studio that pioneered the first-person shooter genre and created multiplayer Deathmatch, DOOM returns as a brutally fun and challenging modern-day shooter experience. Relentless demons, impossibly destructive guns, and fast, fluid movement provide the foundation for intense, first-person combat \u2013 whether you\u2019re obliterating demon hordes through the depths of Hell in the single-player campaign, or competing against your friends in numerous multiplayer modes. Expand your gameplay experience using DOOM SnapMap game editor to easily create, play, and share your content with the world. + +#: i18n/tmp/Applications/Development/category.js:1 +Development=Development + +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw +DirectDraw\ renderer=DirectDraw renderer + +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 +Disabled=Disabled + +#: Engines/Wine/QuickScript/Origin Script/script.js:45 +Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed + +#: i18n/tmp/Utils/Functions/Net/Download/script.js:1 +Downloader=Downloader + +#: Engines/Wine/Engine/Implementation/script.js:214 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:124 +#: Engines/Wine/Engine/Implementation/script.js:155 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:245 +Downloading\ x86\ runtime...=Downloading x86 runtime... + +#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed +#: Emerald: A Whirlwind Heist/application.js:1 +Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist + +#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:1 +Dragon\ Ball\ Xenoverse=Dragon Ball Xenoverse + +#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse 2/application.js:1 +Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 + +#: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 +Druid\ Soccer=Druid Soccer + +#: Applications/Games/Space Engineers/Steam/script.js:25 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:30 +Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). + +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 +Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow + +#: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 +Elite\:Dangerous=Elite\:Dangerous + +#: i18n/tmp/Applications/Office/ElsterFormular/application.js:1 +ElsterFormular=ElsterFormular + +#: i18n/tmp/Applications/Office/ElsterFormular/application.js:2 +ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=ElsterFormular is the official german software to file a tax return. + +#: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 +Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. + +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 +Enabled=Enabled + +#: i18n/tmp/Applications/Games/Enderal/application.js:1 +Enderal=Enderal + +#: i18n/tmp/Applications/Games/Enderal/application.js:2 +Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modification\ that\ is\ set\ in\ its\ own\ world\ with\ its\ own\ landscape,\ lore\ and\ story.\ It\ offers\ an\ immersive\ open\ world,\ all\ for\ the\ player\ to\ explore,\ overhauled\ skill\ systems\ and\ gameplay\ mechanics\ and\ a\ dark,\ psychological\ storyline\ with\ believable\ characters.=Enderal is a total conversion for TES V\: Skyrim\: a game modification that is set in its own world with its own landscape, lore and story. It offers an immersive open world, all for the player to explore, overhauled skill systems and gameplay mechanics and a dark, psychological storyline with believable characters. + +#: i18n/tmp/Applications/Games/Tropico 3/application.js:2 +Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. + +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + +#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 +Epic\ Games\ Launcher=Epic Games Launcher + +#: Utils/Functions/Net/Download/script.js:155 +Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} + +#: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 +Ether\ One\ Redux=Ether One Redux + +#: i18n/tmp/Applications/Games/Ether One Redux/application.js:2 +Ether\ One\ is\ a\ first\ person\ adventure\ that\ deals\ with\ the\ fragility\ of\ the\ human\ mind.\ There\ are\ two\ paths\ in\ the\ world\ you\ can\ choose\ from.\ At\ its\ core\ is\ a\ story\ exploration\ path\ free\ from\ puzzles\ where\ you\ can\ unfold\ the\ story\ at\ your\ own\ pace.=Ether One is a first person adventure that deals with the fragility of the human mind. There are two paths in the world you can choose from. At its core is a story exploration path free from puzzles where you can unfold the story at your own pace. + +#: i18n/tmp/Applications/Games/Europa Universalis II/application.js:1 +Europa\ Universalis\ II=Europa Universalis II + +#: i18n/tmp/Applications/Games/Europa Universalis II/application.js:2 +Europa\ Universalis\ II\ is\ a\ strategy\ computer\ game\ developed\ by\ Paradox\ Development\ Studio\ and\ published\ by\ Strategy\ First,\ based\ on\ world\ history\ spanning\ a\ timeline\ between\ 1419\ through\ 1820.=Europa Universalis II is a strategy computer game developed by Paradox Development Studio and published by Strategy First, based on world history spanning a timeline between 1419 through 1820. + +#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:1 +Europa\ Universalis\ IV=Europa Universalis IV + +#: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 +Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. + +#: Engines/Wine/Shortcuts/Wine/script.js:153 +Executable\ {0}\ not\ found\!=Executable {0} not found\! + +#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 +Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ that\ has\ captured\ the\ hearts\ of\ millions\ of\ fans\!=Experience the magical universe of Rayman with legendary 2D gameplay that has captured the hearts of millions of fans\! + +#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 +Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). + +#: Engines/Wine/Verbs/d3dx10/script.js:15 +#: Engines/Wine/Verbs/d3dx10/script.js:17 +#: Engines/Wine/Verbs/d3dx10/script.js:39 +#: Engines/Wine/Verbs/d3dx11/script.js:15 +#: Engines/Wine/Verbs/d3dx11/script.js:17 +#: Engines/Wine/Verbs/d3dx11/script.js:40 Engines/Wine/Verbs/xact/script.js:17 +#: Engines/Wine/Verbs/xact/script.js:19 Engines/Wine/Verbs/xact/script.js:55 +#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:17 +#: Engines/Wine/Verbs/d3dx9/script.js:39 +Extracting\ {0}...=Extracting {0}... + +#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 +Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. + +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +FBO=FBO + +#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 +FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! + +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 +Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. + +#: i18n/tmp/Applications/Games/Far Cry/application.js:1 +Far\ Cry=Far Cry + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:1 +Far\ Cry\ 3\ -\ Blood\ Dragon=Far Cry 3 - Blood Dragon + +#: i18n/tmp/Applications/Games/Far Cry 2/application.js:1 +Far\ Cry®\ 2=Far Cry\u00ae 2 + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 +Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. + +#: Engines/Wine/Engine/Implementation/script.js:313 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + +#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 +File\ Extractors=File Extractors + +#: i18n/tmp/Utils/Functions/Filesystem/Files/script.js:1 +File\ Utilities=File Utilities + +#: i18n/tmp/Utils/Functions/Filesystem/application.js:1 +Filesystem\ Utils=Filesystem Utils + +#: i18n/tmp/Applications/Games/Quantum Conundrum/application.js:2 +Find\ and\ rescue\ your\ uncle\ by\ using\ his\ newest\ invention\ to\ work\ your\ way\ through\ a\ crazy\ complex\ mansion\ as\ you\ switch\ between\ dimensions\ and\ solve\ puzzles\!=Find and rescue your uncle by using his newest invention to work your way through a crazy complex mansion as you switch between dimensions and solve puzzles\! + +#: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/application.js:2 +First\ installment\ of\ The\ Elder\ Scrolls=First installment of The Elder Scrolls + +#: i18n/tmp/Applications/Games/FlatOut/application.js:1 +FlatOut=FlatOut + +#: i18n/tmp/Applications/Games/FlatOut/application.js:2 +FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! + +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + +#: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 +For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. + +#: Engines/Wine/Settings/mouse warp override/script.js:11 +Force=Force + +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 +Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. + +#: i18n/tmp/Applications/Games/Spore/application.js:2 +From\ a\ single\ cell\ to\ a\ galactic\ deity,\ develop\ your\ creation\ in\ the\ world\ of\ your\ ideas.
Play\ Spore\ on\ five\ levels\ of\ development\:\ Cells,\ Creatures,\ Tribes,\ Civilizations\ and\ the\ Universe.\ Each\ level\ has\ its\ own\ unique\ style,\ challenges\ and\ goals.\ Play\ as\ you\ like\ -\ start\ with\ a\ cell\ and\ develop\ one\ species\ from\ a\ small\ organism\ to\ an\ intergalactic\ traveler\ or\ directly\ begin\ to\ build\ tribes\ and\ civilizations\ on\ new\ planets.\ What\ you\ do\ in\ your\ universe\ depends\ only\ on\ you.
Spore\ gives\ you\ a\ variety\ of\ powerful\ but\ easy-to-use\ tools\ that\ help\ you\ create\ and\ change\ every\ aspect\ of\ your\ universe\:\ creatures,\ vehicles,\ buildings,\ and\ even\ spaceships.\ Although\ Spore\ is\ a\ single\ player\ game,\ all\ of\ your\ creations\ are\ automatically\ shared\ for\ other\ players,\ providing\ an\ infinite\ number\ of\ worlds\ to\ explore\ and\ play.=From a single cell to a galactic deity, develop your creation in the world of your ideas.
Play Spore on five levels of development\: Cells, Creatures, Tribes, Civilizations and the Universe. Each level has its own unique style, challenges and goals. Play as you like - start with a cell and develop one species from a small organism to an intergalactic traveler or directly begin to build tribes and civilizations on new planets. What you do in your universe depends only on you.
Spore gives you a variety of powerful but easy-to-use tools that help you create and change every aspect of your universe\: creatures, vehicles, buildings, and even spaceships. Although Spore is a single player game, all of your creations are automatically shared for other players, providing an infinite number of worlds to explore and play. + +#: i18n/tmp/Applications/Games/Call of Juarez Gunslinger/application.js:2 +From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Juarez®\ Gunslinger\ is\ a\ real\ homage\ to\ the\ Wild\ West\ tales.\ Live\ the\ epic\ and\ violent\ journey\ of\ a\ ruthless\ bounty\ hunter\ on\ the\ trail\ of\ the\ West’s\ most\ notorious\ outlaws.=From the dust of a gold mine to the dirt of a saloon, Call of Juarez\u00ae Gunslinger is a real homage to the Wild West tales. Live the epic and violent journey of a ruthless bounty hunter on the trail of the West\u2019s most notorious outlaws. + +#: i18n/tmp/Utils/Functions/category.js:1 +Functions=Functions + +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +GDI=GDI + +#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 +GLSL=GLSL + +#: Engines/Wine/Settings/GLSL/script.js:17 +GLSL\ support=GLSL support + +#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 +#: i18n/tmp/Applications/Games/Teenagent/GOG/script.js:1 +GOG=GOG + +#: i18n/tmp/Applications/Games/GOG Galaxy/application.js:2 +GOG\ GALAXY\ is\ a\ fully\ optional\ Steam-like\ client\ for\ GOG.com\ to\ install,\ play\ and\ update\ your\ games.\ It\ also\ offers\ online\ multiplayer,\ achievements,\ chat,\ game-time\ tracking\ and\ more\ -\ but\ it’s\ up\ to\ you\ which\ features\ you\ want\ to\ use.=GOG GALAXY is a fully optional Steam-like client for GOG.com to install, play and update your games. It also offers online multiplayer, achievements, chat, game-time tracking and more - but it\u2019s up to you which features you want to use. + +#: i18n/tmp/Applications/Games/GOG Galaxy/application.js:1 +GOG\ Galaxy=GOG Galaxy + +#: i18n/tmp/Applications/Games/category.js:1 +Games=Games + +#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1 +GoG\ Script=GoG Script + +#: i18n/tmp/Applications/Games/Goodbye Deponia/application.js:1 +Goodbye\ Deponia=Goodbye Deponia + +#: i18n/tmp/Applications/Graphics/category.js:1 +Graphics=Graphics + +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + +#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 +Guild\ Wars\ 2=Guild Wars 2 + +#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:2 +Guild\ Wars\ 2\ defines\ the\ future\ of\ online\ roleplaying\ games\ with\ action-oriented\ combat,\ customized\ personal\ storylines,\ epic\ dynamic\ events,\ world-class\ PvP,\ and\ no\ subscription\ fees\!=Guild Wars 2 defines the future of online roleplaying games with action-oriented combat, customized personal storylines, epic dynamic events, world-class PvP, and no subscription fees\! + +#: i18n/tmp/Applications/Games/Caesar III/application.js:2 +Hail\ Governor,\ your\ city\ awaits.

As\ a\ provincial\ governor\ charged\ with\ spreading\ the\ glory\ of\ Rome\ our\ mission\ is\ clear\:\ build\ cities,\ foster\ trade\ and\ industry,\ make\ money.\ How\ you\ accomplish\ this\ is\ entirely\ up\ to\ you.\ Gain\ wealth\ and\ power,\ make\ a\ career\ out\ of\ pleasing\ the\ emperor,\ battle\ Barbarians\ and\ repel\ invaders\ or\ concentrate\ on\ building\ the\ next\ Eternal\ City.\ Fail\ and\ you’ll\ end\ up\ as\ lunch\ for\ the\ lions.\ Prove\ your\ strength\ of\ mind\ and\ spirit\ and\ you\ just\ may\ be\ crowned\ Caesar\!=Hail Governor, your city awaits.

As a provincial governor charged with spreading the glory of Rome our mission is clear\: build cities, foster trade and industry, make money. How you accomplish this is entirely up to you. Gain wealth and power, make a career out of pleasing the emperor, battle Barbarians and repel invaders or concentrate on building the next Eternal City. Fail and you\u2019ll end up as lunch for the lions. Prove your strength of mind and spirit and you just may be crowned Caesar\! + +#: i18n/tmp/Applications/Games/Hearthstone/application.js:1 +Hearthstone=Hearthstone + +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/application.js:2 +Heed\ the\ call\ of\ the\ open\ road,\ throw\ the\ gears\ in\ motion\ and\ take\ off\ in\ a\ tractor\ trailer.\ Drive\ faster\ than\ your\ competition,\ haul\ your\ cargo\ across\ the\ entire\ United\ States\ and\ feel\ the\ wind\ in\ your\ face\ as\ you\ control\ your\ own\ destiny.\ Blast\ the\ horn\ and\ build\ a\ career\ in\ the\ fast-paced\ world\ of\ trucking.=Heed the call of the open road, throw the gears in motion and take off in a tractor trailer. Drive faster than your competition, haul your cargo across the entire United States and feel the wind in your face as you control your own destiny. Blast the horn and build a career in the fast-paced world of trucking. + +#: i18n/tmp/Applications/Games/Heroes of the Storm/application.js:1 +Heroes\ of\ the\ Storm=Heroes of the Storm + +#: i18n/tmp/Applications/Games/Heroes of the Storm/application.js:2 +Heroes\ of\ the\ Storm\ (HotS)\ is\ a\ multiplayer\ online\ battle\ arena\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=Heroes of the Storm (HotS) is a multiplayer online battle arena video game developed and published by Blizzard Entertainment. + +#: i18n/tmp/Applications/Games/Hexcells/application.js:1 +Hexcells=Hexcells + +#: i18n/tmp/Applications/Games/Hexcells Infinite/application.js:1 +Hexcells\ Infinite=Hexcells Infinite + +#: i18n/tmp/Applications/Games/Hexcells Infinite/application.js:2 +Hexcells\ Infinite\ is\ the\ third\ game\ in\ the\ series\ of\ ambient\ logic\ puzzle\ games.

It\ includes\ a\ new\ set\ of\ 36\ puzzles\ as\ well\ as\ a\ random\ puzzle\ generator\ and\ now\ supports\ mid-level\ saving\ and\ cross\ platform\ cloud\ saves.

The\ level\ generator\ uses\ an\ 8\ digit\ seed\ number\ to\ generate\ each\ puzzle\ so\ they\ can\ easily\ be\ shared.=Hexcells Infinite is the third game in the series of ambient logic puzzle games.

It includes a new set of 36 puzzles as well as a random puzzle generator and now supports mid-level saving and cross platform cloud saves.

The level generator uses an 8 digit seed number to generate each puzzle so they can easily be shared. + +#: i18n/tmp/Applications/Games/Hexcells Plus/application.js:1 +Hexcells\ Plus=Hexcells Plus + +#: i18n/tmp/Applications/Games/Hexcells Plus/application.js:2 +Hexcells\ Plus\ is\ a\ standalone\ expansion\ to\ Hexcells\ that\ contains\ 36\ new\ and\ more\ challenging\ puzzles.=Hexcells Plus is a standalone expansion to Hexcells that contains 36 new and more challenging puzzles. + +#: i18n/tmp/Applications/Games/Hexcells/application.js:2 +Hexcells\ is\ an\ ambient\ logic\ puzzle\ game\ for\ PC,\ Mac\ and\ Linux.=Hexcells is an ambient logic puzzle game for PC, Mac and Linux. + +#: i18n/tmp/Applications/Games/Icy Tower/application.js:1 +Icy\ Tower\ 1.5=Icy Tower 1.5 + +#: i18n/tmp/Applications/Games/Icy Tower/application.js:2 +Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. + +#: Applications/Games/Total War Rome II/Steam/script.js:23 +If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt + +#: Applications/Games/Mass Effect 2/Origin/script.js:17 +If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. + +#: Applications/Games/Mass Effect/Steam/script.js:11 +If\ you\ have\ sound\ issues,\ please\ edit\ the\ BIOEngine.ini\ and/or\ BaseEngine.ini\ file\ in\ {0}/drive_c/Program\ Files/Steam/steamapps/common/Mass\ Effect/Engine/Config/\n\nAnd\ add\ the\ following\ under\ [ISACTAudio.ISACTAudioDevice]\ \:\n\nDeviceName\=Generic\ Software\nUseEffectsProcessing\=False\n\n=If you have sound issues, please edit the BIOEngine.ini and/or BaseEngine.ini file in {0}/drive_c/Program Files/Steam/steamapps/common/Mass Effect/Engine/Config/\n\nAnd add the following under [ISACTAudio.ISACTAudioDevice] \:\n\nDeviceName\=Generic Software\nUseEffectsProcessing\=False\n\n + +#: i18n/tmp/Applications/Accessories/ImgBurn/application.js:1 +ImgBurn=ImgBurn + +#: i18n/tmp/Applications/Accessories/ImgBurn/application.js:2 +ImgBurn\ is\ a\ lightweight\ CD\ /\ DVD\ /\ HD\ DVD\ /\ Blu-ray\ burning\ application.=ImgBurn is a lightweight CD / DVD / HD DVD / Blu-ray burning application. + +#: i18n/tmp/Applications/Games/Age of Empires III: Complete +#: Collection/application.js:2 +Immerse\ yourself\ in\ the\ award-winning\ strategy\ experience.\ Microsoft\ Studios\ brings\ you\ three\ epic\ Age\ of\ Empires\ III\ games\ in\ one\ monumental\ collection\ for\ the\ first\ time.\ Command\ mighty\ European\ powers\ looking\ to\ explore\ new\ lands\ in\ the\ New\ World;\ or\ jump\ eastward\ to\ Asia\ and\ determine\ the\ outcome\ of\ its\ struggles\ for\ power.=Immerse yourself in the award-winning strategy experience. Microsoft Studios brings you three epic Age of Empires III games in one monumental collection for the first time. Command mighty European powers looking to explore new lands in the New World; or jump eastward to Asia and determine the outcome of its struggles for power. + +#: i18n/tmp/Applications/Games/Civilization V/application.js:2 +In\ Civilization\ V,\ the\ player\ leads\ a\ civilization\ from\ prehistoric\ times\ into\ the\ future\ on\ a\ procedurally\ generated\ map,\ achieving\ one\ of\ a\ number\ of\ different\ victory\ conditions\ through\ research,\ exploration,\ diplomacy,\ expansion,\ economic\ development,\ government\ and\ military\ conquest.=In Civilization V, the player leads a civilization from prehistoric times into the future on a procedurally generated map, achieving one of a number of different victory conditions through research, exploration, diplomacy, expansion, economic development, government and military conquest. + +#: i18n/tmp/Applications/Games/Prey/application.js:2 +In\ Prey,\ you\ awaken\ aboard\ Talos\ I,\ a\ space\ station\ orbiting\ the\ moon\ in\ the\ year\ 2032.\ You\ are\ the\ key\ subject\ of\ an\ experiment\ meant\ to\ alter\ humanity\ forever\ –\ but\ things\ have\ gone\ terribly\ wrong.\ The\ space\ station\ has\ been\ overrun\ by\ hostile\ aliens\ and\ you\ are\ now\ being\ hunted.=In Prey, you awaken aboard Talos I, a space station orbiting the moon in the year 2032. You are the key subject of an experiment meant to alter humanity forever \u2013 but things have gone terribly wrong. The space station has been overrun by hostile aliens and you are now being hunted. + +#: i18n/tmp/Applications/Games/Star Trek Online/application.js:2 +In\ Star\ Trek\ Online,\ the\ Star\ Trek\ universe\ appears\ for\ the\ first\ time\ on\ a\ truly\ massive\ scale.\ Players\ take\ the\ captain's\ chair\ as\ they\ command\ their\ own\ starship\ and\ crew.\ Explore\ strange\ new\ worlds,\ seek\ out\ new\ life\ and\ new\ civilizations,\ and\ boldly\ go\ where\ no\ one\ has\ gone\ before.=In Star Trek Online, the Star Trek universe appears for the first time on a truly massive scale. Players take the captain's chair as they command their own starship and crew. Explore strange new worlds, seek out new life and new civilizations, and boldly go where no one has gone before. + +#: i18n/tmp/Applications/Games/Mirror's Edge/application.js:2 +In\ a\ city\ where\ information\ is\ heavily\ monitored,\ agile\ couriers\ called\ Runners\ transport\ sensitive\ data\ away\ from\ prying\ eyes.\ In\ this\ seemingly\ utopian\ paradise,\ a\ crime\ has\ been\ committed,\ your\ sister\ has\ been\ framed\ and\ now\ you\ are\ being\ hunted.=In a city where information is heavily monitored, agile couriers called Runners transport sensitive data away from prying eyes. In this seemingly utopian paradise, a crime has been committed, your sister has been framed and now you are being hunted. + +#: i18n/tmp/Applications/Games/Warlock - Master of the Arcane/application.js:2 +In\ a\ time\ of\ chaotic\ upheaval,\ the\ player\ takes\ the\ role\ of\ a\ great\ mage,\ a\ warlord\ vying\ for\ ultimate\ power.\ Your\ mission\ is\ to\ build\ an\ empire,\ expand\ your\ borders,\ research\ new\ spells\ and\ conquer\ your\ enemies.\ Become\ the\ ultimate\ Warlock\ and\ rule\ over\ all\ of\ Ardania\!=In a time of chaotic upheaval, the player takes the role of a great mage, a warlord vying for ultimate power. Your mission is to build an empire, expand your borders, research new spells and conquer your enemies. Become the ultimate Warlock and rule over all of Ardania\! + +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/application.js:2 +Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ means\ necessary,\ execute\ with\ extreme\ prejudice,\ and\ exit\ without\ a\ trace\!\ You\ are\ Sam\ Fisher,\ a\ highly\ trained\ secret\ operative\ of\ the\ NSA's\ secret\ arm\:\ Third\ Echelon.=Infiltrate terrorists' positions, acquire critical intelligence by any means necessary, execute with extreme prejudice, and exit without a trace\! You are Sam Fisher, a highly trained secret operative of the NSA's secret arm\: Third Echelon. + +#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 +Installer\ Script=Installer Script + +#: Engines/Wine/Engine/Implementation/script.js:61 +Installing\ version\:\ {0}=Installing version\: {0} + +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:303 +#: 6.0/Online/script.js:149 Engines/Wine/Verbs/corefonts/script.js:87 +#: Engines/Wine/Verbs/corefonts/script.js:91 +Installing\ {0}...=Installing {0}... + +#: i18n/tmp/Applications/Internet/category.js:1 +Internet=Internet + +#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:1 +Internet\ Explorer\ 6.0=Internet Explorer 6.0 + +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 +Internet\ Explorer\ 7.0=Internet Explorer 7.0 + +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 +Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. + +#: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 +Internet\ Resource=Internet Resource + +#: i18n/tmp/Applications/Games/It came from space and ate our +#: brains/application.js:1 +It\ came\ from\ space,\ and\ ate\ our\ brains=It came from space, and ate our brains + +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the +#: Sith/application.js:2 +It\ is\ five\ years\ after\ Kyle's\ victory\ over\ the\ seven\ dark\ Jedi.\ Invading\ Imperial\ forces\ advance\ upon\ a\ quiet\ Rebel\ outpost,\ interrupting\ Kyle's\ training\ of\ a\ brave\ new\ Jedi,\ Mara\ Jade.\ First\ introduced\ in\ Timothy\ Zahn's\ award-winning\ Star\ Wars\ novel,\ Heir\ to\ the\ Empire,\ Mara\ Jade\ blends\ her\ past\ experiences\ as\ a\ one\ time\ smuggler\ and\ Emperor's\ Hand\ with\ her\ apprenticeship\ as\ a\ Jedi\ Knight.=It is five years after Kyle's victory over the seven dark Jedi. Invading Imperial forces advance upon a quiet Rebel outpost, interrupting Kyle's training of a brave new Jedi, Mara Jade. First introduced in Timothy Zahn's award-winning Star Wars novel, Heir to the Empire, Mara Jade blends her past experiences as a one time smuggler and Emperor's Hand with her apprenticeship as a Jedi Knight. + +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight: Dark Forces +#: II/application.js:2 +Jedi\ Knight\:\ Dark\ Forces\ II\ picks\ up\ where\ the\ award-winning\ Dark\ Forces™\ game\ left\ off...with\ even\ more\ features\ and\ firepower\ in\ dazzling\ 3D\ graphics.\ As\ Kyle\ Katarn,\ you\ must\ acquire\ a\ lightsaber\ and\ learn\ the\ ways\ of\ the\ Force\ to\ become\ a\ Jedi\ Knight.=Jedi Knight\: Dark Forces II picks up where the award-winning Dark Forces\u2122 game left off...with even more features and firepower in dazzling 3D graphics. As Kyle Katarn, you must acquire a lightsaber and learn the ways of the Force to become a Jedi Knight. + +#: i18n/tmp/Applications/Games/STAR WARS Battlefront II/application.js:2 +Join\ the\ rise\ of\ Darth\ Vader’s\ elite\ 501st\ Legion\ of\ Stormtroopers\ as\ you\ fight\ through\ an\ all\ new\ story-based\ saga\ where\ every\ action\ you\ take\ impacts\ the\ battlefront\ and,\ ultimately,\ the\ fate\ of\ the\ Star\ Wars\ galaxy.=Join the rise of Darth Vader\u2019s elite 501st Legion of Stormtroopers as you fight through an all new story-based saga where every action you take impacts the battlefront and, ultimately, the fate of the Star Wars galaxy. + +#: i18n/tmp/Engines/Wine/Tools/Kill Wine Processes/script.js:1 +Kill\ processes=Kill processes + +#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:2 +Launcher\ for\ Unreal\ Engine,\ Unreal\ Tournament,\ Paragon\ etc.=Launcher for Unreal Engine, Unreal Tournament, Paragon etc. + +#: i18n/tmp/Applications/Games/League of Legends/application.js:1 +League\ of\ Legends=League of Legends + +#: i18n/tmp/Applications/Games/League of Legends/application.js:2 +League\ of\ Legends\ is\ a\ fast-paced,\ competitive\ online\ game\ that\ blends\ the\ speed\ and\ intensity\ of\ an\ RTS\ with\ RPG\ elements.\ Two\ teams\ of\ powerful\ champions,\ each\ with\ a\ unique\ design\ and\ playstyle,\ battle\ head-to-head\ across\ multiple\ battlefields\ and\ game\ modes.\ With\ an\ ever-expanding\ roster\ of\ champions,\ frequent\ updates\ and\ a\ thriving\ tournament\ scene,\ League\ of\ Legends\ offers\ endless\ replayability\ for\ players\ of\ every\ skill\ level.=League of Legends is a fast-paced, competitive online game that blends the speed and intensity of an RTS with RPG elements. Two teams of powerful champions, each with a unique design and playstyle, battle head-to-head across multiple battlefields and game modes. With an ever-expanding roster of champions, frequent updates and a thriving tournament scene, League of Legends offers endless replayability for players of every skill level. + +#: i18n/tmp/Applications/Games/Lego Rock Raiders/application.js:1 +Lego\ Rock\ Raiders=Lego Rock Raiders + +#: i18n/tmp/Applications/Games/Assassin's Creed: Brotherhood/application.js:2 +Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. + +#: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 +#: i18n/tmp/Applications/Games/Command and Conquer - Tiberium +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Launcher/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 +Local=Local + +#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local +#: (1.0->1.6)/script.js:1 +Local\ (1.0->1.6)=Local (1.0->1.6) + +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Local +#: (Demo)/script.js:1 +Local\ (Demo)=Local (Demo) + +#: i18n/tmp/Applications/Games/Origin/Local (Legacy)/script.js:1 +Local\ (Legacy)=Local (Legacy) + +#: i18n/tmp/Applications/Custom/LocalInstaller/application.js:1 +Local\ Installer=Local Installer + +#: i18n/tmp/Engines/Wine/QuickScript/Local Installer Script/script.js:1 +Local\ Installer\ Script=Local Installer Script + +#: i18n/tmp/Applications/Games/Borderlands/application.js:2 +Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ insanity\!\ Play\ as\ one\ of\ four\ trigger-happy\ mercenaries\ and\ take\ out\ everything\ that\ stands\ in\ your\ way\!

With\ its\ addictive\ action,\ frantic\ first-person\ shooter\ combat,\ massive\ arsenal\ of\ weaponry,\ RPG\ elements\ and\ four-player\ co-op*,\ Borderlands\ is\ a\ breakthrough\ experience\ that\ challenges\ all\ the\ conventions\ of\ modern\ shooters.\ Borderlands\ places\ you\ in\ the\ role\ of\ a\ mercenary\ on\ the\ lawless\ and\ desolate\ planet\ of\ Pandora,\ hell-bent\ on\ finding\ a\ legendary\ stockpile\ of\ powerful\ alien\ technology\ known\ as\ The\ Vault.=Lock, Load, & Face the Madness

Get ready for the mind blowing insanity\! Play as one of four trigger-happy mercenaries and take out everything that stands in your way\!

With its addictive action, frantic first-person shooter combat, massive arsenal of weaponry, RPG elements and four-player co-op*, Borderlands is a breakthrough experience that challenges all the conventions of modern shooters. Borderlands places you in the role of a mercenary on the lawless and desolate planet of Pandora, hell-bent on finding a legendary stockpile of powerful alien technology known as The Vault. + +#: i18n/tmp/Applications/Games/Mafia II/application.js:1 +Mafia\ II=Mafia II + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + +#: i18n/tmp/Applications/Games/Mass Effect/application.js:1 +Mass\ Effect=Mass Effect + +#: i18n/tmp/Applications/Games/Mass Effect 2/application.js:1 +Mass\ Effect\ 2=Mass Effect 2 + +#: i18n/tmp/Applications/Games/Medieval II: Total War/application.js:1 +Medieval\ II\:\ Total\ War™=Medieval II\: Total War\u2122 + +#: i18n/tmp/Applications/Games/Rayman Legends/application.js:2 +Michel\ Ancel,\ the\ celebrated\ creator\ of\ Rayman®,\ Beyond\ Good\ &\ Evil®,\ and\ the\ Raving\ Rabbids®,\ returns\ to\ unleash\ his\ innovative\ creativity\ on\ this\ new\ entry\ into\ the\ Rayman®\ franchise.

When\ Rayman,\ Globox,\ and\ the\ Teensies\ discover\ a\ mysterious\ tent\ filled\ with\ captivating\ paintings,\ they\ are\ suddenly\ transported\ to\ a\ series\ of\ mythical\ new\ worlds\!

Join\ them\ as\ they\ run,\ jump,\ and\ slap\ their\ way\ through\ each\ world\ to\ get\ home,\ save\ the\ day,\ and\ discover\ the\ secrets\ of\ the\ legendary\ paintings\!=Michel Ancel, the celebrated creator of Rayman\u00ae, Beyond Good & Evil\u00ae, and the Raving Rabbids\u00ae, returns to unleash his innovative creativity on this new entry into the Rayman\u00ae franchise.

When Rayman, Globox, and the Teensies discover a mysterious tent filled with captivating paintings, they are suddenly transported to a series of mythical new worlds\!

Join them as they run, jump, and slap their way through each world to get home, save the day, and discover the secrets of the legendary paintings\! + +#: i18n/tmp/Applications/Office/Microsoft Office 2010/application.js:1 +Microsoft\ Office\ 2010=Microsoft Office 2010 + +#: i18n/tmp/Applications/Office/Microsoft Office 2010/application.js:2 +Microsoft\ Office\ 2010\ is\ a\ version\ of\ Microsoft\ Office,\ a\ productivity\ suite\ for\ Microsoft\ Windows.\ It\ is\ the\ successor\ to\ Microsoft\ Office\ 2007.=Microsoft Office 2010 is a version of Microsoft Office, a productivity suite for Microsoft Windows. It is the successor to Microsoft Office 2007. + +#: i18n/tmp/Applications/Office/Microsoft Office 2013/application.js:1 +Microsoft\ Office\ 2013=Microsoft Office 2013 + +#: i18n/tmp/Applications/Office/Microsoft Office 2013/application.js:2 +Microsoft\ Office\ 2013\ is\ a\ version\ of\ Microsoft\ Office,\ a\ productivity\ suite\ for\ Microsoft\ Windows.\ It\ is\ the\ successor\ to\ Microsoft\ Office\ 2010.=Microsoft Office 2013 is a version of Microsoft Office, a productivity suite for Microsoft Windows. It is the successor to Microsoft Office 2010. + +#: i18n/tmp/Applications/Graphics/Microsoft Paint/application.js:1 +Microsoft\ Paint=Microsoft Paint + +#: i18n/tmp/Applications/Games/Mirror's Edge/application.js:1 +Mirror's\ Edge™=Mirror's Edge\u2122 + +#: i18n/tmp/Applications/Games/Goodbye Deponia/application.js:2 +More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three\ Rufuses\ cause\ all\ kinds\ of\ crazy\ mayhem\ in\ the\ long-awaited\ adventure\ comedy\ Goodbye\ Deponia\!=More chaos, more destruction, more Rufus. Not one, not two, but three Rufuses cause all kinds of crazy mayhem in the long-awaited adventure comedy Goodbye Deponia\! + +#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 +Mount\ &\ Blade=Mount & Blade + +#: Engines/Wine/Settings/mouse warp override/script.js:17 +Mouse\ warp\ override=Mouse warp override + +#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 +Mp3tag=Mp3tag + +#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:2 +Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ common\ audio\ formats\ where\ it\ supports\ ID3v1,\ ID3v2.3,\ ID3v2.4,\ iTunes\ MP4,\ WMA,\ Vorbis\ Comments\ and\ APE\ Tags.\ It\ also\ supports\ online\ database\ lookups\ from\ Amazon,\ Musicbraing,\ freedb\ or\ discogs\ for\ example\ to\ automatically\ gather\ proper\ tags\ and\ cover\ art.=Mp3tag is a powerful and yet easy-to-use tool to edit metadata of common audio formats where it supports ID3v1, ID3v2.3, ID3v2.4, iTunes MP4, WMA, Vorbis Comments and APE Tags. It also supports online database lookups from Amazon, Musicbraing, freedb or discogs for example to automatically gather proper tags and cover art. + +#: i18n/tmp/Applications/Multimedia/category.js:1 +Multimedia=Multimedia + +#: Engines/Wine/Settings/multisampling/script.js:17 +Multisampling=Multisampling + +#: i18n/tmp/Utils/Functions/Net/application.js:1 +Net\ Utils=Net Utils + +#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:2 +Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzles\ and\ mysteries\ come\ together\ in\ an\ oneiric\ and\ minimalist\ world.\ Dare\ to\ dream\!=Niko is a spiritual journey through the dreams, where adventure, puzzles and mysteries come together in an oneiric and minimalist world. Dare to dream\! + +#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 +Niko\:\ Through\ The\ Dream=Niko\: Through The Dream + +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + +#: i18n/tmp/Applications/Development/Notepad++/application.js:1 +Notepad++=Notepad++ + +#: i18n/tmp/Applications/Development/Notepad++/application.js:2 +Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ "free\ beer")\ source\ code\ editor\ and\ Notepad\ replacement\ that\ supports\ several\ languages.\ Running\ in\ the\ MS\ Windows\ environment,\ its\ use\ is\ governed\ by\ GPL\ License.

Based\ on\ a\ powerful\ editing\ component\ Scintilla,\ Notepad++\ is\ written\ in\ C++\ and\ uses\ pure\ Win32\ API\ and\ STL\ which\ ensures\ a\ higher\ execution\ speed\ and\ smaller\ program\ size.\ By\ optimizing\ as\ many\ routines\ as\ possible\ without\ losing\ user\ friendliness,\ Notepad++\ is\ trying\ to\ reduce\ the\ world\ carbon\ dioxide\ emissions.\ When\ using\ less\ CPU\ power,\ the\ PC\ can\ throttle\ down\ and\ reduce\ power\ consumption,\ resulting\ in\ a\ greener\ environment.

Source\:\ http\://notepad-plus.sourceforge.net/uk/site.htm=Notepad++ is a free (as in "free speech" and also as in "free beer") source code editor and Notepad replacement that supports several languages. Running in the MS Windows environment, its use is governed by GPL License.

Based on a powerful editing component Scintilla, Notepad++ is written in C++ and uses pure Win32 API and STL which ensures a higher execution speed and smaller program size. By optimizing as many routines as possible without losing user friendliness, Notepad++ is trying to reduce the world carbon dioxide emissions. When using less CPU power, the PC can throttle down and reduce power consumption, resulting in a greener environment.

Source\: http\://notepad-plus.sourceforge.net/uk/site.htm + +#: i18n/tmp/Applications/Office/category.js:1 +Office=Office + +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 +Offscreen\ rendering\ mode=Offscreen rendering mode + +#: Applications/Games/Wildlife Park 2/Steam/script.js:14 2/Local/script.js:15 +On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. + +#: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering +#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 +#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 +#: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 +#: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 +#: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 +Online=Online + +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online +#: (Demo)/script.js:1 +Online\ (Demo)=Online (Demo) + +#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 +Online\ (Legacy)=Online (Legacy) + +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + +#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 +Online\ Installer=Online Installer + +#: i18n/tmp/Engines/Wine/QuickScript/Online Installer Script/script.js:1 +Online\ Installer\ Script=Online Installer Script + +#: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 +Open\ a\ terminal=Open a terminal + +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +OpenGL=OpenGL + +#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 +OpenGL_version=OpenGL_version + +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 +#: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 +#: i18n/tmp/Applications/Games/Origin/application.js:1 +Origin=Origin + +#: i18n/tmp/Engines/Wine/QuickScript/Origin Script/script.js:1 +Origin\ Script=Origin Script + +#: i18n/tmp/Applications/Games/Origin/application.js:2 +Origin\ is\ EA's\ PC\ games\ portal.=Origin is EA's PC games portal. + +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/application.js:1 +Orwell\:\ Keeping\ an\ Eye\ On\ You=Orwell\: Keeping an Eye On You + +#: i18n/tmp/Applications/Other/category.js:1 +Other=Other + +#: i18n/tmp/Applications/Games/Overwatch/application.js:1 +Overwatch=Overwatch + +#: i18n/tmp/Applications/Games/Overwatch/application.js:2 +Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ game.=Overwatch is a team-based multiplayer online first-person shooter video game. + +#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 +PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist + +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + +#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate +#: Box/application.js:2 +Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. + +#: i18n/tmp/Applications/Graphics/Photofiltre/application.js:1 +Photofiltre=Photofiltre + +#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 +PhysX=PhysX + +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 +Please\ close\ Uplay.=Please close Uplay. + +#: Engines/Wine/QuickScript/Uplay Script/script.js:57 +Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. + +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. + +#: Engines/Wine/Verbs/D9VK/script.js:24 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:24 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. + +#: Engines/Wine/Verbs/VK9/script.js:21 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. + +#: Engines/Wine/QuickScript/Installer Script/script.js:22 +Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. + +#: Engines/Wine/QuickScript/Steam Script/script.js:117 +Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. + +#: Engines/Wine/Verbs/Uplay/script.js:16 +Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. + +#: Engines/Wine/QuickScript/Uplay Script/script.js:58 +Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. + +#: Engines/Wine/QuickScript/GoG Script/script.js:44 +Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: + +#: Engines/Wine/QuickScript/Zip Script/script.js:42 +Please\ select\ the\ .zip\ file.=Please select the .zip file. + +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:58 +Please\ select\ the\ SP3\ file.=Please select the SP3 file. + +#: Engines/Wine/Engine/Implementation/script.js:512 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 +Please\ select\ the\ download\ URL.=Please select the download URL. + +#: Engines/Wine/QuickScript/Installer Script/script.js:91 +Please\ select\ the\ executable.=Please select the executable. + +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 +Please\ select\ the\ installation\ file.=Please select the installation file. + +#: Applications/Office/ElsterFormular/Online/script.js:11 +Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. + +#: Engines/Wine/Engine/Implementation/script.js:514 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:114 Engines/Wine/Verbs/FAudio/script.js:71 +#: Engines/Wine/Verbs/gallium9/script.js:92 Engines/Wine/Verbs/VK9/script.js:90 +#: Engines/Wine/Verbs/D9VK/script.js:87 +Please\ select\ the\ version.=Please select the version. + +#: Engines/Wine/QuickScript/Installer Script/script.js:36 +Please\ select\ the\ wine\ architecture.=Please select the wine architecture. + +#: Engines/Wine/QuickScript/Installer Script/script.js:52 +Please\ select\ the\ wine\ distribution.=Please select the wine distribution. + +#: Engines/Wine/QuickScript/Installer Script/script.js:70 +Please\ select\ the\ wine\ version.=Please select the wine version. + +#: Engines/Wine/QuickScript/Steam Script/script.js:151 +Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... + +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 +Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... + +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 +Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... + +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 +Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... + +#: Engines/Wine/Verbs/dotnet472/script.js:37 +#: Engines/Wine/Verbs/vcrun2012/script.js:20 +#: Engines/Wine/Verbs/vcrun2012/script.js:31 +#: Engines/Wine/Verbs/vcrun2003/script.js:20 +#: Engines/Wine/Verbs/d3drm/script.js:21 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:37 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:53 +#: Engines/Wine/Verbs/msxml3/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:20 +#: Engines/Wine/Verbs/vcrun2013/script.js:31 +#: Engines/Wine/Verbs/dotnet462/script.js:37 +#: Engines/Wine/Verbs/vcrun2017/script.js:20 +#: Engines/Wine/Verbs/vcrun2017/script.js:31 +#: Engines/Wine/Verbs/dotnet46/script.js:36 +#: Engines/Wine/Verbs/vcrun2005/script.js:19 +#: Engines/Wine/Verbs/dotnet452/script.js:37 +#: Engines/Wine/Verbs/amstream/script.js:23 +#: Engines/Wine/Verbs/amstream/script.js:42 +#: Engines/Wine/Verbs/devenum/script.js:22 +#: Engines/Wine/Verbs/dotnet461/script.js:37 +#: Engines/Wine/Verbs/vcrun2015/script.js:20 +#: Engines/Wine/Verbs/vcrun2015/script.js:31 +#: Engines/Wine/Verbs/dotnet40/script.js:37 +#: Engines/Wine/Verbs/vcrun2010/script.js:20 +#: Engines/Wine/Verbs/vcrun2010/script.js:31 +#: Engines/Wine/Verbs/dotnet45/script.js:37 +#: Engines/Wine/Verbs/vcrun6sp6/script.js:32 +#: Engines/Wine/Verbs/msxml6/script.js:37 +#: Engines/Wine/Verbs/msxml6/script.js:40 +#: Engines/Wine/Verbs/gdiplus/script.js:20 +#: Engines/Wine/Verbs/vcrun2008/script.js:20 +#: Engines/Wine/Verbs/vcrun2008/script.js:31 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:17 Engines/Wine/Verbs/PhysX/script.js:19 +#: Engines/Wine/Verbs/dotnet20/script.js:29 +#: Engines/Wine/Verbs/dotnet20/script.js:48 +Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... + +#: Engines/Wine/Engine/Object/script.js:185 +Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... + +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:145 +#: Engines/Wine/Verbs/dotnet472/script.js:40 Engines/Wine/Verbs/Remove +#: Mono/script.js:13 Mono/script.js:16 Mono/script.js:19 +#: Engines/Wine/Verbs/dotnet462/script.js:40 +#: Engines/Wine/Verbs/dotnet46/script.js:39 +#: Engines/Wine/Verbs/d3dx10/script.js:38 +#: Engines/Wine/Verbs/dotnet452/script.js:40 +#: Engines/Wine/Verbs/dotnet461/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:47 +#: Engines/Wine/Verbs/dotnet45/script.js:40 +#: Engines/Wine/Verbs/d3dx11/script.js:39 +#: Engines/Wine/Verbs/corefonts/script.js:86 +#: Engines/Wine/Verbs/xact/script.js:54 Engines/Wine/Verbs/d3dx9/script.js:38 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:38 Script/script.js:64 Engines/Wine/QuickScript/Installer +#: Script/script.js:84 Script/script.js:100 Engines/Wine/QuickScript/Origin +#: Script/script.js:52 Script/script.js:57 Script/script.js:65 +#: Engines/Wine/QuickScript/Uplay Script/script.js:70 Script/script.js:90 +Please\ wait...=Please wait... + +#: i18n/tmp/Engines/Wine/Plugins/application.js:2 +Plugins\ for\ Wine.=Plugins for Wine. + +#: Engines/Wine/Engine/Object/script.js:340 +Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits + +#: i18n/tmp/Applications/Games/Prehistorik/application.js:1 +Prehistorik=Prehistorik + +#: i18n/tmp/Applications/Games/Prey/application.js:1 +Prey=Prey + +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/application.js:1 +Prince\ of\ Persia\:\ Original=Prince of Persia\: Original + +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/application.js:1 +Prince\ of\ Persia®\:\ The\ Sands\ of\ Time=Prince of Persia\u00ae\: The Sands of Time + +#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/application.js:1 +Pro\ Evolution\ Soccer\ 2018=Pro Evolution Soccer 2018 + +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/application.js:1 +Q.U.B.E\:\ Director's\ Cut=Q.U.B.E\: Director's Cut + +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/application.js:2 +Q.U.B.E\:\ Director's\ Cut\ is\ the\ definitive\ version\ of\ the\ brain-twisting\ first-person\ puzzler.\ Using\ special\ high-tech\ gloves\ to\ manipulate\ cubes\ in\ the\ environment,\ the\ player\ solves\ an\ array\ of\ conundrums\ -\ from\ physics-based\ challenges;\ to\ 3D\ jigsaws;\ to\ platform-based\ trials.=Q.U.B.E\: Director's Cut is the definitive version of the brain-twisting first-person puzzler. Using special high-tech gloves to manipulate cubes in the environment, the player solves an array of conundrums - from physics-based challenges; to 3D jigsaws; to platform-based trials. + +#: i18n/tmp/Applications/Games/Quantum Conundrum/application.js:1 +Quantum\ Conundrum=Quantum Conundrum + +#: i18n/tmp/Engines/Wine/QuickScript/Quick Script/script.js:1 +Quick\ Script=Quick Script + +#: i18n/tmp/Engines/Wine/QuickScript/application.js:1 +QuickScript=QuickScript + +#: i18n/tmp/Engines/Wine/QuickScript/application.js:2 +QuickScripts\ for\ Wine.=QuickScripts for Wine. + +#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 +QuickTime\ 7.6=QuickTime 7.6 + +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + +#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven +#: Shield/application.js:2 +Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. + +#: i18n/tmp/Applications/Games/Rayman Legends/application.js:1 +Rayman®\ Legends=Rayman\u00ae Legends + +#: i18n/tmp/Applications/Games/Rayman Origins/application.js:1 +Rayman®\ Origins=Rayman\u00ae Origins + +#: i18n/tmp/Applications/Games/Mass Effect 2/application.js:2 +Recruit.\ Explore.\ Control.Two\ years\ after\ Commander\ Shepard\ repelled\ invading\ Reapers\ bent\ on\ the\ destruction\ of\ organic\ life,\ a\ mysterious\ new\ enemy\ has\ emerged.\ On\ the\ fringes\ of\ known\ space,\ something\ is\ silently\ abducting\ entire\ human\ colonies.=Recruit. Explore. Control.Two years after Commander Shepard repelled invading Reapers bent on the destruction of organic life, a mysterious new enemy has emerged. On the fringes of known space, something is silently abducting entire human colonies. + +#: i18n/tmp/Applications/Games/Red Trigger/application.js:1 +Red\ Trigger=Red Trigger + +#: i18n/tmp/Applications/Games/Red Trigger/application.js:2 +Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? + +#: Engines/Wine/Verbs/xact/script.js:34 Engines/Wine/Verbs/xact/script.js:36 +Registering\ {0}...=Registering {0}... + +#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 +Registry\ Editor=Registry Editor + +#: i18n/tmp/Applications/Games/Black Mesa/application.js:2 +Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Half-Life in this highly acclaimed, fan-made recreation + +#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 +Remove\ Mono=Remove Mono + +#: Engines/Wine/Settings/render target lock mode/script.js:17 +Render\ target\ lock\ mode=Render target lock mode + +#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 +Repair\ virtual\ drive=Repair virtual drive + +#: i18n/tmp/Applications/Games/Resident Evil 3/application.js:1 +Resident\ Evil\ 3=Resident Evil 3 + +#: i18n/tmp/Applications/Games/Resident Evil 3/application.js:2 +Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escape\ (バイオハザード3 ラストエスケープ),\ is\ a\ survival\ horror\ video\ game\ and\ the\ sequel\ to\ Resident\ Evil\ 2,\ developed\ and\ published\ by\ Capcom.\ The\ game\ was\ released\ for\ the\ PlayStation,\ and\ was\ subsequently\ ported\ to\ the\ Dreamcast,\ Microsoft\ Windows\ and\ Nintendo\ GameCube.\ A\ Windows\ PC\ version\ was\ released\ first\ in\ Japan\ in\ June\ 2000\ and\ later\ in\ other\ regions,\ which\ features\ enhanced\ 3D\ character\ model\ graphics\ and\ higher\ resolutions.=Resident Evil 3\: Nemesis, known in Japan as Biohazard 3\: Last Escape (\u30d0\u30a4\u30aa\u30cf\u30b6\u30fc\u30c93\u3000\u30e9\u30b9\u30c8\u30a8\u30b9\u30b1\u30fc\u30d7), is a survival horror video game and the sequel to Resident Evil 2, developed and published by Capcom. The game was released for the PlayStation, and was subsequently ported to the Dreamcast, Microsoft Windows and Nintendo GameCube. A Windows PC version was released first in Japan in June 2000 and later in other regions, which features enhanced 3D character model graphics and higher resolutions. + +#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 +Retina=Retina + +#: Engines/Wine/Settings/hdpi/script.js:15 +Retina\ support=Retina support + +#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 +Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ action-adventure\ runner\ with\ a\ twist\!\ Hone\ your\ DISC\ and\ CYCLE\ skills,\ then\ challenge\ the\ grueling\ STREAM\ program\ that\ throws\ endless\ combinations\ of\ modes\ and\ levels\ at\ you\ until\ you\ crash\ –\ how\ long\ can\ you\ survive?=Return to the world of TRON with TRON RUN/r, a new lightning fast, action-adventure runner with a twist\! Hone your DISC and CYCLE skills, then challenge the grueling STREAM program that throws endless combinations of modes and levels at you until you crash \u2013 how long can you survive? + +#: i18n/tmp/Applications/Games/Audiosurf/application.js:2 +Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. + +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + +#: i18n/tmp/Applications/Games/Road Rash/application.js:1 +Road\ Rash=Road Rash + +#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:1 +Rocksmith®\ 2014=Rocksmith\u00ae 2014 + +#: i18n/tmp/Applications/Games/Rocksmith/application.js:2 +Rocksmith’s\ innovative\ game\ design\ makes\ playing\ music\ visually\ intuitive\ and\ will\ engage\ experienced\ musicians\ as\ well\ as\ those\ who\ have\ never\ picked\ up\ a\ guitar\ in\ their\ lives.=Rocksmith\u2019s innovative game design makes playing music visually intuitive and will engage experienced musicians as well as those who have never picked up a guitar in their lives. + +#: i18n/tmp/Applications/Games/Rocksmith/application.js:1 +Rocksmith™=Rocksmith\u2122 + +#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:2 +SBBP\ is\ a\ 2D\ platformer\ with\ pixel\ graphics.\ Blue\ boy’s\ girlfriend\ is\ kidnapped\ by\ aliens\ so\ he\ goes\ through\ 21\ levels\ to\ save\ her\ and\ he\ also\ fight\ bosses\ along\ the\ way.=SBBP is a 2D platformer with pixel graphics. Blue boy\u2019s girlfriend is kidnapped by aliens so he goes through 21 levels to save her and he also fight bosses along the way. + +#: i18n/tmp/Applications/Games/STAR WARS Battlefront II/application.js:1 +STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II + +#: i18n/tmp/Applications/Games/STAR WARS - Empire at War Gold +#: Pack/application.js:1 +STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack + +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 +STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 + +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the +#: Sith/application.js:1 +STAR\ WARS™\ Jedi\ Knight\ -\ Mysteries\ of\ the\ Sith™=STAR WARS\u2122 Jedi Knight - Mysteries of the Sith\u2122 + +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/application.js:1 +STAR\ WARS™\ Jedi\ Knight\ II\ -\ Jedi\ Outcast™=STAR WARS\u2122 Jedi Knight II - Jedi Outcast\u2122 + +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight: Dark Forces +#: II/application.js:1 +STAR\ WARS™\ Jedi\ Knight\:\ Dark\ Forces\ II=STAR WARS\u2122 Jedi Knight\: Dark Forces II + +#: i18n/tmp/Applications/Games/STAR WARS: Dark Forces/application.js:1 +STAR\ WARS™\:\ Dark\ Forces=STAR WARS\u2122\: Dark Forces + +#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/application.js:1 +STAR\ WARS™\:\ The\ Old\ Republic=STAR WARS\u2122\: The Old Republic + +#: i18n/tmp/Applications/Games/Space Colony/application.js:2 +Save\ the\ colony\!\ Your\ crew\ are\ fighting\ and\ new\ life\ forms\ begin\ to\ appear\ in\ the\ canteen.\ You\ are\ somewhere\ in\ the\ Universe\ with\ a\ limited\ amount\ of\ resources,\ a\ corporation\ that\ sent\ you\ into\ space\ awaits\ back\ at\ the\ Earth,\ and\ your\ colonists\ expect\ payment.\ Everyone\ has\ their\ own\ mind,\ so\ remember\ the\ golden\ rule\:\ a\ happy\ crew\ is\ a\ productive\ crew.\ You\ must\ build\ a\ base\ and\ defend\ it\ against\ aliens,\ but\ do\ not\ forget\ about\ your\ crew.\ If\ you\ treat\ them\ well,\ they\ will\ work\ hard\ for\ you.\ In\ Space\ Colony\ your\ career\ and\ life\ depend\ on\ an\ unruly\ team\ that\ wants\ to\ return\ to\ Earth.\ When\ creating\ a\ colony,\ you\ have\ over\ 100\ different\ structures\ to\ choose\ from,\ which\ will\ help\ you\ build\ a\ great\ base\ for\ your\ crew.\ So\ before\ you\ spend\ all\ your\ savings\ on\ iron\ mining\ and\ the\ production\ of\ space\ chickens,\ keep\ in\ mind\ that\ without\ laser\ towers,\ saunas\ and\ restaurants\ no\ one\ will\ want\ to\ work\ for\ you\!=Save the colony\! Your crew are fighting and new life forms begin to appear in the canteen. You are somewhere in the Universe with a limited amount of resources, a corporation that sent you into space awaits back at the Earth, and your colonists expect payment. Everyone has their own mind, so remember the golden rule\: a happy crew is a productive crew. You must build a base and defend it against aliens, but do not forget about your crew. If you treat them well, they will work hard for you. In Space Colony your career and life depend on an unruly team that wants to return to Earth. When creating a colony, you have over 100 different structures to choose from, which will help you build a great base for your crew. So before you spend all your savings on iron mining and the production of space chickens, keep in mind that without laser towers, saunas and restaurants no one will want to work for you\! + +#: i18n/tmp/Applications/Science/category.js:1 +Science=Science + +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:1 +Scribblenauts\ Unlimited=Scribblenauts Unlimited + +#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local +#: (1.0->1.6)/script.js:14 +Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). + +#: Applications/Games/League of Legends/Online/script.js:34 +Select\ your\ region\:=Select your region\: + +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 +Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. + +#: i18n/tmp/Engines/Wine/Settings/application.js:2 +Settings\ for\ Wine.=Settings for Wine. + +#: i18n/tmp/Applications/Games/Hearthstone/application.js:2 +Sheathe\ your\ sword,\ draw\ your\ deck,\ and\ get\ ready\ for\ Hearthstone\ -\ the\ fast-paced\ strategy\ card\ game\ that's\ easy\ to\ learn\ and\ massively\ fun.\ Start\ a\ free\ game\ and\ play\ your\ cards\ to\ sling\ spells,\ summon\ creatures,\ and\ command\ the\ heroes\ of\ Warcraft\ in\ duels\ of\ epic\ strategy.=Sheathe your sword, draw your deck, and get ready for Hearthstone - the fast-paced strategy card game that's easy to learn and massively fun. Start a free game and play your cards to sling spells, summon creatures, and command the heroes of Warcraft in duels of epic strategy. + +#: i18n/tmp/Engines/Wine/Shortcuts/Reader/script.js:1 +Shortcut\ Reader=Shortcut Reader + +#: i18n/tmp/Engines/Wine/Shortcuts/application.js:2 +Shortcuts\ for\ Wine.=Shortcuts for Wine. + +#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You +#: Still Shower Dad/application.js:1 +Shower\ With\ Your\ Dad\ Simulator\ 2015\:\ Do\ You\ Still\ Shower\ With\ Your\ Dad=Shower With Your Dad Simulator 2015\: Do You Still Shower With Your Dad + +#: i18n/tmp/Applications/Games/SimCity (2013)/application.js:1 +SimCity\ (2013)=SimCity (2013) + +#: i18n/tmp/Applications/Games/DC Universe Online/application.js:2 +Sony's\ new\ MMORPG\ based\ on\ the\ DC\ universe.\ Be\ a\ hero\ or\ villain\ in\ 2\ humongous\ cities.=Sony's new MMORPG based on the DC universe. Be a hero or villain in 2 humongous cities. + +#: i18n/tmp/Applications/Accessories/Soundplant/application.js:1 +Soundplant=Soundplant + +#: i18n/tmp/Applications/Accessories/Soundplant/application.js:2 +Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ sound\ trigger\ and\ playable\ instrument.

Via\ drag\ &\ drop,\ easily\ assign\ sound\ files\ of\ any\ format\ and\ length\ onto\ 72\ keyboard\ keys,\ creating\ custom\ soundboards\ that\ put\ hours\ of\ instantly-playing\ audio\ at\ your\ fingertips\ with\ no\ extra\ hardware\ needed.

Soundplant\ is\ used\ for\ live\ music\ and\ sound\ effects,\ as\ a\ drum\ pad,\ as\ a\ unique\ electronic\ instrument,\ as\ an\ educational\ aid,\ and\ just\ for\ fun\ -\ in\ radio,\ television,\ theater,\ podcasting,\ presentations,\ studios,\ stadiums,\ classrooms,\ clubs,\ museums,\ and\ churches\ -\ by\ DJs,\ musicians,\ engineers,\ sound\ designers,\ composers,\ artists,\ teachers,\ magicians,\ puppeteers,\ comedians,\ public\ speakers,\ gamers,\ and\ more.

\ N.B.\:\ Free\ version\ has\ some\ features\ unavailable,\ see\ http\://soundplant.org/support.htm/=Soundplant turns your computer keyboard into a versatile, low latency sound trigger and playable instrument.

Via drag & drop, easily assign sound files of any format and length onto 72 keyboard keys, creating custom soundboards that put hours of instantly-playing audio at your fingertips with no extra hardware needed.

Soundplant is used for live music and sound effects, as a drum pad, as a unique electronic instrument, as an educational aid, and just for fun - in radio, television, theater, podcasting, presentations, studios, stadiums, classrooms, clubs, museums, and churches - by DJs, musicians, engineers, sound designers, composers, artists, teachers, magicians, puppeteers, comedians, public speakers, gamers, and more.

N.B.\: Free version has some features unavailable, see http\://soundplant.org/support.htm/ + +#: i18n/tmp/Applications/Games/Space Colony/application.js:1 +Space\ Colony=Space Colony + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + +#: i18n/tmp/Applications/Games/Spore/application.js:1 +Spore=Spore + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + +#: i18n/tmp/Applications/Games/Star Craft II/application.js:1 +Star\ Craft\ II=Star Craft II + +#: i18n/tmp/Applications/Games/Star Trek Online/application.js:1 +Star\ Trek\ Online=Star Trek Online + +#: i18n/tmp/Applications/Games/Star Craft II/application.js:2 +StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. + +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces +Steam=Steam + +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam +#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam +#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam +#: i18n/tmp/Applications/Games/ChromaGun/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam +#: i18n/tmp/Applications/Games/Prey/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam +Steam\ (Demo)=Steam (Demo) + +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 +Steam\ (GOTY)=Steam (GOTY) + +#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam +#: (Gold)/script.js:1 +Steam\ (Gold)=Steam (Gold) + +#: i18n/tmp/Engines/Wine/QuickScript/Steam Script/script.js:1 +Steam\ Script=Steam Script + +#: i18n/tmp/Applications/Games/Steam/application.js:2 +Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. + +#: Engines/Wine/Settings/strict draw ordering/script.js:17 +Strict\ Draw\ Ordering=Strict Draw Ordering + +#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 +Styx\ returns\ in\ a\ new\ stealth\ adventure\!\ Explore\ and\ master\ huge\ open\ environments,\ sneak\ past\ or\ assassinate\ new\ enemies\ and\ bosses,\ and\ experiment\ with\ the\ new\ array\ of\ lethal\ abilities\ and\ weapons\ in\ our\ goblin\ assassin's\ arsenal.=Styx returns in a new stealth adventure\! Explore and master huge open environments, sneak past or assassinate new enemies and bosses, and experiment with the new array of lethal abilities and weapons in our goblin assassin's arsenal. + +#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:1 +Styx\:\ Shards\ of\ Darkness=Styx\: Shards of Darkness + +#: i18n/tmp/Applications/Games/Subnautica/application.js:1 +Subnautica=Subnautica + +#: i18n/tmp/Applications/Games/Subnautica Below Zero/application.js:1 +Subnautica\ Below\ Zero=Subnautica Below Zero + +#: i18n/tmp/Applications/Games/Subnautica/application.js:2 +Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underwater\ world.\ After\ an\ emergency\ landing\ on\ a\ foreign\ water\ planet\ you\ can\ only\ look\ in\ the\ depths.\ Discover\ seaweed\ forests\ and\ grass\ plateaus,\ reefs\ and\ labyrinths\ of\ underwater\ caves,\ but\ remember\ the\ ever-diminished\ oxygen.\ Water\ is\ swarming\ with\ life\:\ some\ creatures\ are\ useful,\ but\ a\ large\ part\ is\ dangerous.\ When\ you\ wake\ up\ in\ a\ life\ capsule,\ you\ fight\ with\ time\ -\ you\ need\ to\ find\ drinking\ water,\ food,\ and\ develop\ equipment\ that\ will\ be\ useful\ during\ exploration.\ Collect\ resources\ from\ the\ ocean\ around\ you.\ Create\ knives,\ lighting,\ diving\ equipment,\ and\ build\ small\ submarines.\ The\ ocean\ is\ full\ of\ life\:\ use\ the\ ecosystem\ to\ your\ advantage.\ Lure\ and\ outwit\ the\ dangerous\ creature\ with\ a\ fresh\ fish,\ or\ just\ swim\ as\ fast\ as\ you\ can\ to\ avoid\ the\ jaws\ of\ omnipresent\ predators.\ Cave\ systems\ extend\ below\ the\ bottom\ of\ the\ ocean\ -\ from\ dark,\ claustrophobic\ passages\ to\ caves\ illuminated\ by\ bioluminescent\ life\ forms.\ Explore\ the\ world\ below\ the\ bottom\ of\ the\ ocean,\ but\ watch\ out\ for\ oxygen\ levels\ and\ avoid\ the\ dangers\ lurking\ in\ the\ dark.=Subnautica is a game about exploration and adventure set in an underwater world. After an emergency landing on a foreign water planet you can only look in the depths. Discover seaweed forests and grass plateaus, reefs and labyrinths of underwater caves, but remember the ever-diminished oxygen. Water is swarming with life\: some creatures are useful, but a large part is dangerous. When you wake up in a life capsule, you fight with time - you need to find drinking water, food, and develop equipment that will be useful during exploration. Collect resources from the ocean around you. Create knives, lighting, diving equipment, and build small submarines. The ocean is full of life\: use the ecosystem to your advantage. Lure and outwit the dangerous creature with a fresh fish, or just swim as fast as you can to avoid the jaws of omnipresent predators. Cave systems extend below the bottom of the ocean - from dark, claustrophobic passages to caves illuminated by bioluminescent life forms. Explore the world below the bottom of the ocean, but watch out for oxygen levels and avoid the dangers lurking in the dark. + +#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 +Super\ Blue\ Boy\ Planet=Super Blue Boy Planet + +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + +#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 +TRON\ RUN/r=TRON RUN/r + +#: i18n/tmp/Engines/Wine/Verbs/Tahoma/script.js:1 +Tahoma=Tahoma + +#: i18n/tmp/Applications/Games/Medieval II: Total War/application.js:2 +Take\ command\ of\ your\ army\ and\ expand\ your\ reign\ in\ Medieval\ II\ -\ the\ fourth\ installment\ of\ the\ award-winning\ Total\ War\ series\ of\ strategy\ games.\ Direct\ massive\ battles\ featuring\ up\ to\ 10,000\ bloodthirsty\ troops\ on\ epic\ 3D\ battlefields,\ while\ presiding\ over\ some\ of\ the\ greatest\ Medieval\ nations\ of\ the\ Western\ and\ Middle\ Eastern\ world.\ Spanning\ the\ most\ turbulent\ era\ in\ Western\ history,\ your\ quest\ for\ territory\ and\ power\ takes\ you\ through\ Europe,\ Africa,\ and\ the\ Middle\ East,\ and\ even\ onto\ the\ shores\ of\ the\ New\ World.
You'll\ manage\ your\ empire\ with\ an\ iron\ fist,\ handling\ everything\ from\ building\ and\ improving\ cities\ to\ recruiting\ and\ training\ armies.\ Wield\ diplomacy\ to\ manipulate\ allies\ and\ enemies,\ outsmart\ the\ dreaded\ Inquisition,\ and\ influence\ the\ Pope.\ Lead\ the\ fight\ in\ the\ Crusades\ and\ bring\ victory\ to\ Islam\ or\ Christianity\ in\ the\ Holy\ War.\ Rewrite\ history\ and\ conquer\ the\ world.\ This\ is\ Total\ War\!=Take command of your army and expand your reign in Medieval II - the fourth installment of the award-winning Total War series of strategy games. Direct massive battles featuring up to 10,000 bloodthirsty troops on epic 3D battlefields, while presiding over some of the greatest Medieval nations of the Western and Middle Eastern world. Spanning the most turbulent era in Western history, your quest for territory and power takes you through Europe, Africa, and the Middle East, and even onto the shores of the New World.
You'll manage your empire with an iron fist, handling everything from building and improving cities to recruiting and training armies. Wield diplomacy to manipulate allies and enemies, outsmart the dreaded Inquisition, and influence the Pope. Lead the fight in the Crusades and bring victory to Islam or Christianity in the Holy War. Rewrite history and conquer the world. This is Total War\! + +#: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:2 +Take\ control\ of\ your\ own\ starship\ in\ a\ cutthroat\ galaxy.\ Elite\ Dangerous\ brings\ gaming’s\ original\ open\ world\ adventure\ into\ the\ modern\ generation\ with\ a\ connected\ galaxy,\ evolving\ narrative\ and\ the\ entirety\ of\ the\ Milky\ Way\ re-created\ at\ its\ full\ galactic\ proportions.

Elite\ Dangerous\ is\ the\ definitive\ massively\ multiplayer\ space\ epic,\ bringing\ gaming’s\ original\ open\ world\ adventure\ to\ the\ modern\ generation\ with\ a\ connected\ galaxy,\ evolving\ narrative\ and\ the\ entirety\ of\ the\ Milky\ Way\ re-created\ at\ its\ full\ galactic\ proportions.=Take control of your own starship in a cutthroat galaxy. Elite Dangerous brings gaming\u2019s original open world adventure into the modern generation with a connected galaxy, evolving narrative and the entirety of the Milky Way re-created at its full galactic proportions.

Elite Dangerous is the definitive massively multiplayer space epic, bringing gaming\u2019s original open world adventure to the modern generation with a connected galaxy, evolving narrative and the entirety of the Milky Way re-created at its full galactic proportions. + +#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:2 +Take\ on\ the\ role\ of\ a\ hardened\ career\ criminal\ executing\ intense,\ dynamic\ heists\ in\ constant\ pursuit\ of\ the\ next\ “big\ score”=Take on the role of a hardened career criminal executing intense, dynamic heists in constant pursuit of the next \u201cbig score\u201d + +#: i18n/tmp/Engines/Wine/Tools/Wine Task Manager/script.js:1 +Task\ manager=Task manager + +#: i18n/tmp/Applications/Internet/TeamSpeak 3/application.js:1 +TeamSpeak\ 3=TeamSpeak 3 + +#: i18n/tmp/Applications/Internet/TeamSpeak 3/application.js:2 +TeamSpeak\ 3\ offers\ the\ ideal\ voice\ communication\ tool\ for\ online\ gaming,\ education\ and\ training,\ internal\ business\ communication,\ and\ staying\ in\ touch\ with\ friends\ and\ family.=TeamSpeak 3 offers the ideal voice communication tool for online gaming, education and training, internal business communication, and staying in touch with friends and family. + +#: i18n/tmp/Applications/Games/Teenagent/application.js:1 +Teenagent=Teenagent + +#: i18n/tmp/Applications/Games/Teenagent/application.js:2 +Teenagent\ is\ a\ 1995\ point-and-click\ adventure\ game\ developed\ by\ Polish\ developer\ Metropolis\ Software\ House.\ It\ was\ released\ for\ Amiga\ and\ MS-DOS.\ The\ player\ controls\ teenage\ boy\ Mark\ Hopper\ who\ wants\ to\ be\ a\ secret\ agent.\ The\ CD\ version\ was\ the\ first\ game\ to\ be\ released\ on\ CD-ROM\ in\ Poland.=Teenagent is a 1995 point-and-click adventure game developed by Polish developer Metropolis Software House. It was released for Amiga and MS-DOS. The player controls teenage boy Mark Hopper who wants to be a secret agent. The CD version was the first game to be released on CD-ROM in Poland. + +#: i18n/tmp/Applications/Games/Assassin's Creed III/application.js:2 +The\ American\ Colonies,\ 1775.\ It’s\ a\ time\ of\ civil\ unrest\ and\ political\ upheaval\ in\ the\ Americas.\ As\ a\ Native\ American\ assassin\ fights\ to\ protect\ his\ land\ and\ his\ people,\ he\ will\ ignite\ the\ flames\ of\ a\ young\ nation’s\ revolution.
Assassin’s\ Creed®\ III\ takes\ you\ back\ to\ the\ American\ Revolutionary\ War,\ but\ not\ the\ one\ you’ve\ read\ about\ in\ history\ books...=The American Colonies, 1775. It\u2019s a time of civil unrest and political upheaval in the Americas. As a Native American assassin fights to protect his land and his people, he will ignite the flames of a young nation\u2019s revolution.
Assassin\u2019s Creed\u00ae III takes you back to the American Revolutionary War, but not the one you\u2019ve read about in history books... + +#: i18n/tmp/Applications/Games/Blizzard app/application.js:2 +The\ Blizzard\ desktop\ app\ is\ designed\ to\ improve\ your\ gaming\ experience.\ It’ll\ streamline\ your\ login\ and\ make\ it\ even\ easier\ to\ keep\ up\ with\ your\ friends\!=The Blizzard desktop app is designed to improve your gaming experience. It\u2019ll streamline your login and make it even easier to keep up with your friends\! + +#: i18n/tmp/Applications/Games/The Crew/application.js:1 +The\ Crew™=The Crew\u2122 + +#: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/application.js:1 +The\ Elder\ Scrolls\ I\:\ Arena=The Elder Scrolls I\: Arena + +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/application.js:1 +The\ Elder\ Scrolls\ IV\:\ Oblivion=The Elder Scrolls IV\: Oblivion + +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/application.js:2 +The\ Elder\ Scrolls\ IV\:\ Oblivion®\ presents\ one\ of\ the\ best\ RPGs\ of\ all\ time\ like\ never\ before.\ Step\ inside\ the\ most\ richly\ detailed\ and\ vibrant\ game-world\ ever\ created.\ With\ a\ powerful\ combination\ of\ freeform\ gameplay\ and\ unprecedented\ graphics,\ you\ can\ unravel\ the\ main\ quest\ at\ your\ own\ pace\ or\ explore\ the\ vast\ world\ and\ find\ your\ own\ challenges.=The Elder Scrolls IV\: Oblivion\u00ae presents one of the best RPGs of all time like never before. Step inside the most richly detailed and vibrant game-world ever created. With a powerful combination of freeform gameplay and unprecedented graphics, you can unravel the main quest at your own pace or explore the vast world and find your own challenges. + +#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:1 +The\ Elder\ Scrolls\ V\:\ Skyrim=The Elder Scrolls V\: Skyrim + +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/application.js:2 +The\ Legacy\ of\ Star\ Wars\ Dark\ Forces™\ and\ Star\ Wars®\ Jedi\ Knight\ lives\ on\ in\ the\ intense\ first-person\ action\ of\ Jedi\ Outcast.=The Legacy of Star Wars Dark Forces\u2122 and Star Wars\u00ae Jedi Knight lives on in the intense first-person action of Jedi Outcast. + +#: i18n/tmp/Applications/Custom/LocalInstaller/application.js:2 +The\ Local\ Installer\ allows\ you\ to\ install\ custom\ applications\ from\ your\ local\ computer.=The Local Installer allows you to install custom applications from your local computer. + +#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:2 +The\ Online\ Installer\ allows\ you\ to\ install\ custom\ applications\ from\ the\ Internet.=The Online Installer allows you to install custom applications from the Internet. + +#: i18n/tmp/Applications/Games/The Room/application.js:1 +The\ Room=The Room + +#: i18n/tmp/Applications/Games/The Room Two/application.js:1 +The\ Room\ Two=The Room Two + +#: i18n/tmp/Applications/Games/The Sims/application.js:1 +The\ Sims=The Sims + +#: i18n/tmp/Applications/Games/The Sims 3/application.js:1 +The\ Sims\ 3=The Sims 3 + +#: i18n/tmp/Applications/Games/The Sims 3/application.js:2 +The\ Sims\ 3\ is\ the\ third\ major\ title\ in\ the\ life\ simulation\ video\ game\ developed\ by\ The\ Sims\ Studio\ (Maxis)\ and\ published\ by\ Electronic\ Arts.=The Sims 3 is the third major title in the life simulation video game developed by The Sims Studio (Maxis) and published by Electronic Arts. + +#: i18n/tmp/Applications/Games/The Sims/application.js:2 +The\ Sims\ is\ a\ simulation\ game\ that\ simulates\ people.\ With\ various\ goals\ and\ objectives\ you\ control\ people\ called\ sims.\ These\ sims\ require\ the\ user\ to\ periodically\ replenish\ their\ needs,\ socialize,\ and\ buy\ new\ stuff.\ The\ game\ currently\ has\ 7\ expansion\ packs,\ Livin\ Large,\ House\ Party,\ Hot\ Date,\ Vacation,\ Superstar,\ Makin\ Magic,\ and\ Unleashed.=The Sims is a simulation game that simulates people. With various goals and objectives you control people called sims. These sims require the user to periodically replenish their needs, socialize, and buy new stuff. The game currently has 7 expansion packs, Livin Large, House Party, Hot Date, Vacation, Superstar, Makin Magic, and Unleashed. + +#: i18n/tmp/Applications/Games/The Turing Test/application.js:1 +The\ Turing\ Test=The Turing Test + +#: i18n/tmp/Applications/Games/The Turing Test/application.js:2 +The\ Turing\ Test\ is\ a\ challenging\ first-person\ puzzle\ game\ set\ on\ Jupiter’s\ moon,\ Europa.\ You\ are\ Ava\ Turing,\ an\ engineer\ for\ the\ International\ Space\ Agency\ (ISA)\ sent\ to\ discover\ the\ cause\ behind\ the\ disappearance\ of\ the\ ground\ crew\ stationed\ there.=The Turing Test is a challenging first-person puzzle game set on Jupiter\u2019s moon, Europa. You are Ava Turing, an engineer for the International Space Agency (ISA) sent to discover the cause behind the disappearance of the ground crew stationed there. + +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:1 +The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter + +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter +#: Redux/application.js:1 +The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux + +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 +The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. + +#: i18n/tmp/Engines/Wine/Engine/application.js:2 +The\ Wine\ engine.=The Wine engine. + +#: i18n/tmp/Applications/Games/The Witcher 3: Wild Hunt/application.js:1 +The\ Witcher\ 3\:\ Wild\ Hunt=The Witcher 3\: Wild Hunt + +#: i18n/tmp/Applications/Games/The Witcher 3: Wild Hunt/application.js:2 +The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ role-playing\ game\ set\ in\ a\ visually\ stunning\ fantasy\ universe\ full\ of\ meaningful\ choices\ and\ impactful\ consequences.\ In\ The\ Witcher\ you\ play\ as\ the\ professional\ monster\ hunter,\ Geralt\ of\ Rivia,\ tasked\ with\ finding\ a\ child\ of\ prophecy\ in\ a\ vast\ open\ world\ rich\ with\ merchant\ cities,\ viking\ pirate\ islands,\ dangerous\ mountain\ passes,\ and\ forgotten\ caverns\ to\ explore.=The Witcher\: Wild Hunt is a story-driven, next-generation open world role-playing game set in a visually stunning fantasy universe full of meaningful choices and impactful consequences. In The Witcher you play as the professional monster hunter, Geralt of Rivia, tasked with finding a child of prophecy in a vast open world rich with merchant cities, viking pirate islands, dangerous mountain passes, and forgotten caverns to explore. + +#: i18n/tmp/Applications/Games/The Witness/application.js:1 +The\ Witness=The Witness + +#: Engines/Wine/Shortcuts/Reader/script.js:61 +The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? + +#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 +The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a\ nation\ to\ guide\ through\ the\ years\ in\ order\ to\ create\ a\ dominant\ global\ empire.\ Rule\ your\ nation\ through\ the\ centuries,\ with\ unparalleled\ freedom,\ depth\ and\ historical\ accuracy.=The empire building game Europa Universalis IV gives you control of a nation to guide through the years in order to create a dominant global empire. Rule your nation through the centuries, with unparalleled freedom, depth and historical accuracy. + +#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 +The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. + +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + +#: i18n/tmp/Applications/Games/Toki Tori/application.js:2 +The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. + +#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:2 +The\ gaming\ world's\ sexiest\ and\ most\ intrepid\ adventurer\ makes\ her\ triumphant\ return\ in\ Lara\ Croft\ Tomb\ Raider\:\ Legend\!

Follow\ Lara\ down\ a\ path\ of\ discovery\ as\ she\ travels\ the\ globe\ to\ remote,\ exotic\ locales\ in\ search\ of\ one\ of\ history's\ greatest\ artifacts\ that\ unleash\ unwelcome\ figures\ from\ Lara's\ mysterious\ past.\ With\ guns\ blazing,\ Lara\ must\ use\ her\ athletic\ ability\ and\ intellectual\ wits\ to\ explore\ vast,\ treacherous\ tombs,\ riddled\ with\ challenging\ puzzles\ and\ deadly\ traps.\ Experience\ the\ beginning\ of\ the\ new\ Legend\ in\ the\ most\ adrenaline-fueled\ Tomb\ Raider\ adventure\ ever\!=The gaming world's sexiest and most intrepid adventurer makes her triumphant return in Lara Croft Tomb Raider\: Legend\!

Follow Lara down a path of discovery as she travels the globe to remote, exotic locales in search of one of history's greatest artifacts that unleash unwelcome figures from Lara's mysterious past. With guns blazing, Lara must use her athletic ability and intellectual wits to explore vast, treacherous tombs, riddled with challenging puzzles and deadly traps. Experience the beginning of the new Legend in the most adrenaline-fueled Tomb Raider adventure ever\! + +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/application.js:2 +The\ war\ rages\ on.\ The\ demonic\ threat\ has\ been\ banished\ from\ the\ battle-scarred\ fields\ of\ Azeroth,\ but\ peace\ is\ still\ a\ distant\ dream.\ The\ epic\ conflict\ that\ began\ in\ Warcraft\ III\:\ Reign\ of\ Chaos\ continues\ with\ more\ units,\ more\ missions,\ and\ more\ explosive\ strategic\ combat.

This\ set\ contains\ both\ Warcraft\ III\:\ Reign\ of\ Chaos\ and\ Warcraft\ III\:\ The\ Frozen\ Throne.=The war rages on. The demonic threat has been banished from the battle-scarred fields of Azeroth, but peace is still a distant dream. The epic conflict that began in Warcraft III\: Reign of Chaos continues with more units, more missions, and more explosive strategic combat.

This set contains both Warcraft III\: Reign of Chaos and Warcraft III\: The Frozen Throne. + +#: i18n/tmp/Applications/Games/Tropico 4/application.js:2 +The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geographical\ powers\ rise\ and\ fall\ and\ the\ world\ market\ is\ dominated\ by\ new\ players\ with\ new\ demands\ and\ offers\ -\ and\ you,\ as\ El\ Presidente,\ face\ a\ whole\ new\ set\ of\ challenges.\ If\ you\ are\ to\ triumph\ over\ your\ naysayers\ you\ will\ need\ to\ gain\ as\ much\ support\ from\ your\ people\ as\ possible.\ Your\ decisions\ will\ shape\ the\ future\ of\ your\ nation,\ and\ more\ importantly,\ the\ size\ of\ your\ off-shore\ bank\ account.

Tropico\ 4\ expands\ on\ the\ gameplay\ of\ the\ previous\ game\ with\ new\ political\ additions\ ∼\ including\ more\ superpowers\ to\ negotiate\ with,\ along\ with\ the\ ability\ to\ elect\ ministers\ into\ power\ to\ help\ get\ your\ more\ controversial\ policies\ passed.\ But\ remember\ to\ keep\ your\ friends\ close\ and\ your\ enemies\ closer\ as\ everyone\ has\ an\ agenda\!\ Your\ political\ mettle\ will\ be\ thoroughly\ tested,\ as\ new\ natural\ disasters\ will\ have\ the\ populace\ clamoring\ for\ you\ and\ your\ cabinet\ to\ help\ them\ recover\ from\ some\ of\ the\ worst\ Mother\ Nature\ can\ dish\ out.

Tropico\ 4\ also\ brings\ a\ new\ level\ of\ social\ interaction\ with\ the\ addition\ of\ Facebook\ and\ Twitter\ integration.\ Post\ comments\ on\ Twitter\ direct\ from\ the\ game\ and\ have\ updates\ go\ out\ when\ you\ complete\ missions\ or\ unlock\ new\ achievements.\ You\ can\ even\ take\ screenshots\ of\ your\ burgeoning\ island\ and\ post\ your\ dream\ creation\ on\ your\ Tropico\ 4\ Facebook\ page\ and\ compare\ your\ interactive\ Dictator\ Ranking\ on\ the\ online\ leaderboards.=The world is changing and Tropico is moving with the times - geographical powers rise and fall and the world market is dominated by new players with new demands and offers - and you, as El Presidente, face a whole new set of challenges. If you are to triumph over your naysayers you will need to gain as much support from your people as possible. Your decisions will shape the future of your nation, and more importantly, the size of your off-shore bank account.

Tropico 4 expands on the gameplay of the previous game with new political additions \u223c including more superpowers to negotiate with, along with the ability to elect ministers into power to help get your more controversial policies passed. But remember to keep your friends close and your enemies closer as everyone has an agenda\! Your political mettle will be thoroughly tested, as new natural disasters will have the populace clamoring for you and your cabinet to help them recover from some of the worst Mother Nature can dish out.

Tropico 4 also brings a new level of social interaction with the addition of Facebook and Twitter integration. Post comments on Twitter direct from the game and have updates go out when you complete missions or unlock new achievements. You can even take screenshots of your burgeoning island and post your dream creation on your Tropico 4 Facebook page and compare your interactive Dictator Ranking on the online leaderboards. + +#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 +The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway. + +#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. + +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:17 +#: Engines/Wine/Verbs/dotnet472/script.js:65 +#: Engines/Wine/Verbs/dotnet462/script.js:17 +#: Engines/Wine/Verbs/dotnet462/script.js:65 +#: Engines/Wine/Verbs/dotnet46/script.js:16 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:17 +#: Engines/Wine/Verbs/dotnet452/script.js:69 +#: Engines/Wine/Verbs/dotnet461/script.js:17 +#: Engines/Wine/Verbs/dotnet461/script.js:65 +This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! + +#: Engines/Wine/Verbs/dotnet40/script.js:17 +#: Engines/Wine/Verbs/dotnet40/script.js:79 +#: Engines/Wine/Verbs/dotnet45/script.js:16 +#: Engines/Wine/Verbs/dotnet45/script.js:70 +This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. + +#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 +Those\ intrepid\ invertebrates\ return\ with\ a\ vengeance\ in\ the\ much-loved\ Worms™\ Armageddon.\ It’s\ a\ whole\ new\ can\ of\ worms\!\ It’s\ hilarious\ fun\ that\ you\ can\ enjoy\ on\ your\ own\ or\ with\ all\ your\ friends.=Those intrepid invertebrates return with a vengeance in the much-loved Worms\u2122 Armageddon. It\u2019s a whole new can of worms\! It\u2019s hilarious fun that you can enjoy on your own or with all your friends. + +#: i18n/tmp/Applications/Games/Toki Tori/application.js:1 +Toki\ Tori=Toki Tori + +#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven +#: Shield/application.js:1 +Tom\ Clancy's\ Rainbow\ Six\ 3\ \:\ Raven\ Shield=Tom Clancy's Rainbow Six 3 \: Raven Shield + +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/application.js:1 +Tom\ Clancy's\ Splinter\ Cell®=Tom Clancy's Splinter Cell\u00ae + +#: i18n/tmp/Applications/Games/Tom Clancy's The Division/application.js:1 +Tom\ Clancy’s\ The\ Division™=Tom Clancy\u2019s The Division\u2122 + +#: i18n/tmp/Applications/Games/Tomb Raider Anniversary/application.js:1 +Tomb\ Raider\:\ Anniversary=Tomb Raider\: Anniversary + +#: i18n/tmp/Applications/Games/Tomb Raider Anniversary/application.js:2 +Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ adventure\ globe-trotting\ 3rd\ person\ action-adventure\ in\ pursuit\ of\ the\ legendary\ Scion\ artifact.\ Using\ an\ enhanced\ 'Tomb\ Raider\:\ Legend'\ game\ engine,\ the\ graphics,\ technology\ and\ physics\ bring\ Lara's\ adventure\ and\ pursuit\ of\ a\ mystical\ artifact\ known\ only\ as\ the\ Scion\ right\ up\ to\ today's\ technology\ standards\ and\ offers\ gamers\ a\ completely\ new\ gameplay\ experience.\ Re-imagined,\ Anniversary\ delivers\ a\ dynamic\ fluidly\ and\ fast\ Lara\ Croft,\ massive\ environments\ of\ stunning\ visuals,\ intense\ combat\ and\ game\ pacing,\ and\ an\ enhanced\ and\ clarified\ original\ story.=Tomb Raider\: Anniversary retraces Lara Croft's original genre-defining adventure globe-trotting 3rd person action-adventure in pursuit of the legendary Scion artifact. Using an enhanced 'Tomb Raider\: Legend' game engine, the graphics, technology and physics bring Lara's adventure and pursuit of a mystical artifact known only as the Scion right up to today's technology standards and offers gamers a completely new gameplay experience. Re-imagined, Anniversary delivers a dynamic fluidly and fast Lara Croft, massive environments of stunning visuals, intense combat and game pacing, and an enhanced and clarified original story. + +#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 +Tomb\ Raider\:\ Legend=Tomb Raider\: Legend + +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 +Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian + +#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 +Tomb\ Raider\:\ Underworld=Tomb Raider\: Underworld + +#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:2 +Tomb\ Raider\:\ Underworld\ represents\ a\ new\ advancement\ in\ exploration-based\ gameplay.\ As\ fearless\ adventurer\ Lara\ Croft\ explore\ exotic\ locations\ around\ the\ world,\ each\ designed\ with\ an\ incredible\ attention\ to\ detail\ resulting\ in\ breathtaking\ high-definition\ visual\ fidelity\ that\ creates\ a\ truly\ believable\ world\ and\ delivers\ a\ new\ level\ of\ challenge\ and\ choice.=Tomb Raider\: Underworld represents a new advancement in exploration-based gameplay. As fearless adventurer Lara Croft explore exotic locations around the world, each designed with an incredible attention to detail resulting in breathtaking high-definition visual fidelity that creates a truly believable world and delivers a new level of challenge and choice. + +#: i18n/tmp/Engines/Wine/Tools/application.js:2 +Tools\ for\ Wine.=Tools for Wine. + +#: i18n/tmp/Applications/Games/Total War Rome II/application.js:1 +Total\ War\:\ ROME\ II=Total War\: ROME II + +#: i18n/tmp/Applications/Games/Totally Accurate Battlegrounds/application.js:1 +Totally\ Accurate\ Battlegrounds=Totally Accurate Battlegrounds + +#: i18n/tmp/Applications/Games/Totally Accurate Battlegrounds/application.js:2 +Totally\ Accurate\ Battlegrounds\ is\ a\ parody\ of\ the\ Battle\ Royale\ genre.\ A\ bunch\ of\ physics-based\ weirdos\ fight\ it\ out\ on\ an\ island,\ everything\ is\ silly\ and\ possibly\ a\ bit\ buggy.=Totally Accurate Battlegrounds is a parody of the Battle Royale genre. A bunch of physics-based weirdos fight it out on an island, everything is silly and possibly a bit buggy. + +#: i18n/tmp/Applications/Games/Trackmania Turbo/application.js:2 +Trackmania\ offers\ you\ the\ ultimate\ arcade\ racing\ universe\ where\ everything\ is\ about\ reaching\ the\ perfect\ racing\ time.\ Test\ your\ skills\ in\ over\ 200\ tracks,\ experience\ immediate\ fun\ by\ challenging\ your\ friends\ at\ home\ (offline\ splitscreen)\ or\ online.=Trackmania offers you the ultimate arcade racing universe where everything is about reaching the perfect racing time. Test your skills in over 200 tracks, experience immediate fun by challenging your friends at home (offline splitscreen) or online. + +#: i18n/tmp/Applications/Games/Trackmania Turbo/application.js:1 +Trackmania®\ Turbo=Trackmania\u00ae Turbo + +#: i18n/tmp/Applications/Games/Tropico 3/application.js:1 +Tropico\ 3=Tropico 3 + +#: i18n/tmp/Applications/Games/Tropico 4/application.js:1 +Tropico\ 4=Tropico 4 + +#: i18n/tmp/Applications/Games/Unholy Heights/application.js:1 +Unholy\ Heights=Unholy Heights + +#: i18n/tmp/Applications/Games/The Room Two/application.js:2 +Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. + +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 +#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +Uplay=Uplay + +#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 +Uplay\ Script=Uplay Script + +#: i18n/tmp/Applications/Games/Uplay/application.js:2 +Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. + +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:22 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + +#: i18n/tmp/Utils/Functions/Apps/application.js:2 +Utils\ for\ apps.=Utils for apps. + +#: i18n/tmp/Utils/Functions/Filesystem/application.js:2 +Utils\ for\ file\ system\ interaction.=Utils for file system interaction. + +#: i18n/tmp/Utils/Functions/Net/application.js:2 +Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. + +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + +#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 +VK9=VK9 + +#: Engines/Wine/Verbs/VK9/script.js:19 +VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 +Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ imagination.\ Help\ Maxwell\ solve\ robust\ puzzles\ in\ seamless,\ free-roaming\ levels\ by\ summoning\ any\ object\ you\ can\ think\ of.\ Create\ your\ own\ original\ objects,\ assign\ unique\ properties,\ and\ share\ them\ with\ friends\ online\ using\ Steam\ Workshop\ –\ to\ be\ used\ in\ game\ or\ further\ modified\ as\ you\ like\!=Venture into a wide-open world where the most powerful tool is your imagination. Help Maxwell solve robust puzzles in seamless, free-roaming levels by summoning any object you can think of. Create your own original objects, assign unique properties, and share them with friends online using Steam Workshop \u2013 to be used in game or further modified as you like\! + +#: i18n/tmp/Engines/Wine/Verbs/application.js:2 +Verbs\ for\ Wine.=Verbs for Wine. + +#: Engines/Wine/Settings/video memory size/script.js:17 +Video\ memory\ size=Video memory size + +#: i18n/tmp/Applications/Games/Mafia II/application.js:2 +Vito\ Scaletta\ has\ started\ to\ make\ a\ name\ for\ himself\ on\ the\ streets\ of\ Empire\ Bay\ as\ someone\ who\ can\ be\ trusted\ to\ get\ a\ job\ done.\ Together\ with\ his\ buddy\ Joe,\ he\ is\ working\ to\ prove\ himself\ to\ the\ Mafia,\ quickly\ escalating\ up\ the\ family\ ladder\ with\ crimes\ of\ larger\ reward,\ status\ and\ consequence…\ the\ life\ as\ a\ wise\ guy\ isn’t\ quite\ as\ untouchable\ as\ it\ seems.=Vito Scaletta has started to make a name for himself on the streets of Empire Bay as someone who can be trusted to get a job done. Together with his buddy Joe, he is working to prove himself to the Mafia, quickly escalating up the family ladder with crimes of larger reward, status and consequence\u2026 the life as a wise guy isn\u2019t quite as untouchable as it seems. + +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/application.js:1 +Warcraft®\ III\:\ Expansion\ Set=Warcraft\u00ae III\: Expansion Set + +#: i18n/tmp/Applications/Games/Warface/application.js:1 +Warface=Warface + +#: i18n/tmp/Applications/Games/Warface/application.js:2 +Warface\ offers\ an\ intense\ Co-op\ experience\ with\ daily\ new\ content,\ in\ which\ players\ can\ master\ unique\ teamwork\ moves\ and\ gameplay\ styles.\ They\ can\ also\ engage\ in\ fast-paced\ or\ tactical\ action\ in\ Versus\ modes\ such\ as\ Team\ Death\ Match\ or\ Plant\ The\ Bomb.=Warface offers an intense Co-op experience with daily new content, in which players can master unique teamwork moves and gameplay styles. They can also engage in fast-paced or tactical action in Versus modes such as Team Death Match or Plant The Bomb. + +#: i18n/tmp/Applications/Games/Warlock - Master of the Arcane/application.js:1 +Warlock\ -\ Master\ of\ the\ Arcane=Warlock - Master of the Arcane + +#: i18n/tmp/Applications/Games/ChromaGun/application.js:2 +Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ state-of-the-art\ military-grade\ color-technology\:\ The\ ChromaGun\ (patent\ pending)\!\ Use\ it\ to\ try\ and\ solve\ our\ meticulously\ designed\ test\ chambers.\ The\ basic\ principle\ is\ as\ easy\ as\ applying\ it\ is\ complex\:\ Exit\ the\ chambers\ via\ the\ exit\ doors.\ But\ be\ weary\ of\ the\ WorkerDroids\ in\ charge\ of\ maintaining\ the\ chambers.\ They’re\ not\ exactly\ what\ you\ and\ I\ would\ call\ “human\ friendly”.

Use\ the\ ChromaGun\ to\ colorize\ walls\ and\ WorkerDroids\ to\ progress\ in\ the\ chambers.\ WorkerDroids\ are\ attracted\ to\ walls\ of\ the\ same\ color.\ Using\ that\ mechanic,\ try\ to\ reach\ the\ exit\ door\ of\ each\ chamber.\ Some\ doors\ are\ more\ complicated\ to\ use\ than\ others\:\ They\ can\ only\ be\ opened\ using\ door\ triggers\ and\ only\ stay\ open\ as\ long\ as\ the\ triggers\ are\ occupied.
br>If\ all\ of\ this\ sounds\ like\ your\ brain\ can\ handle\ it,\ congratulations\!\ You’re\ the\ perfect\ candidate\ for\ our\ test\ chambers\!

That\ being\ said,\ welcome\ and\ good\ luck\!=Welcome to ChromaTec\u2019s test lab\! You\u2019re here to test our newest, state-of-the-art military-grade color-technology\: The ChromaGun (patent pending)\! Use it to try and solve our meticulously designed test chambers. The basic principle is as easy as applying it is complex\: Exit the chambers via the exit doors. But be weary of the WorkerDroids in charge of maintaining the chambers. They\u2019re not exactly what you and I would call \u201chuman friendly\u201d.

Use the ChromaGun to colorize walls and WorkerDroids to progress in the chambers. WorkerDroids are attracted to walls of the same color. Using that mechanic, try to reach the exit door of each chamber. Some doors are more complicated to use than others\: They can only be opened using door triggers and only stay open as long as the triggers are occupied.
br>If all of this sounds like your brain can handle it, congratulations\! You\u2019re the perfect candidate for our test chambers\!

That being said, welcome and good luck\! + +#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 +Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? + +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 +When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. + +#: Applications/Games/Lego Rock Raiders/Local/script.js:46 +When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. + +#: Applications/Games/Lego Rock Raiders/Local/script.js:23 +When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. + +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:79 +Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? + +#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 +Wildlife\ Park\ 2=Wildlife Park 2 + +#: i18n/tmp/Engines/Wine/Verbs/Windows XP SP 3/script.js:1 +Windows\ XP\ Service\ Pack\ 3=Windows XP Service Pack 3 + +#: i18n/tmp/Engines/Wine/Tools/Reboot Wine/script.js:1 +Windows\ reboot=Windows reboot + +#: i18n/tmp/Engines/Wine/Plugins/Windows version/script.js:1 +Windows\ version=Windows version + +#: i18n/tmp/Engines/Wine/category.js:1 +Wine=Wine + +#: i18n/tmp/Engines/Wine/Engine/application.js:1 +Wine\ Engine=Wine Engine + +#: i18n/tmp/Engines/Wine/Plugins/application.js:1 +Wine\ Plugins=Wine Plugins + +#: i18n/tmp/Engines/Wine/Settings/application.js:1 +Wine\ Settings=Wine Settings + +#: i18n/tmp/Engines/Wine/Shortcuts/Wine/script.js:1 +Wine\ Shortcut=Wine Shortcut + +#: i18n/tmp/Engines/Wine/Shortcuts/application.js:1 +Wine\ Shortcuts=Wine Shortcuts + +#: i18n/tmp/Engines/Wine/Tools/application.js:1 +Wine\ Tools=Wine Tools + +#: i18n/tmp/Engines/Wine/Verbs/application.js:1 +Wine\ Verbs=Wine Verbs + +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + +#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 +Wine\ engine=Wine engine + +#: i18n/tmp/Engines/Wine/Engine/Implementation/script.js:1 +Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation of Java interface) + +#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 +Wine\ uninstaller=Wine uninstaller + +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + +#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 +Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. + +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + +#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 +Worms\ Armageddon=Worms Armageddon + +#: i18n/tmp/Applications/Games/Worms Reloaded/application.js:1 +Worms™\ Reloaded=Worms\u2122 Reloaded + +#: i18n/tmp/Applications/Games/Worms Reloaded/application.js:2 +Worms™\ Reloaded\ is\ a\ turn-based\ computer\ games\ developed\ by\ Team17\ Software.\ Players\ control\ a\ small\ platoon\ of\ earthworms\ across\ a\ deformable\ landscape,\ battling\ other\ computer-\ or\ player-controlled\ teams.\ The\ games\ feature\ bright\ and\ humorous\ cartoon-style\ animation\ and\ a\ varied\ arsenal\ of\ bizarre\ weapons.=Worms\u2122 Reloaded is a turn-based computer games developed by Team17 Software. Players control a small platoon of earthworms across a deformable landscape, battling other computer- or player-controlled teams. The games feature bright and humorous cartoon-style animation and a varied arsenal of bizarre weapons. + +#: i18n/tmp/Applications/Games/XIII/application.js:1 +XIII=XIII + +#: i18n/tmp/Applications/Games/XIII/application.js:2 +XIII\ is\ a\ first-person\ shooter\ video\ game\ developed\ by\ Ubisoft\ Paris\ and\ published\ by\ Ubisoft\ for\ most\ platforms.=XIII is a first-person shooter video game developed by Ubisoft Paris and published by Ubisoft for most platforms. + +#: i18n/tmp/Applications/Games/Xenon 2/application.js:1 +Xenon\ 2=Xenon 2 + +#: i18n/tmp/Applications/Games/Far Cry 2/application.js:2 +You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricken\ with\ malaria\ and\ forced\ to\ make\ deals\ with\ corrupt\ warlords\ on\ both\ sides\ of\ the\ conflict\ in\ order\ to\ make\ this\ country\ your\ home.

You\ must\ identify\ and\ exploit\ your\ enemies'\ weaknesses,\ neutralizing\ their\ superior\ numbers\ and\ firepower\ with\ surprise,\ subversion,\ cunning\ and\ of\ course\ brute\ force.=You are a gun for hire, trapped in a war-torn African state, stricken with malaria and forced to make deals with corrupt warlords on both sides of the conflict in order to make this country your home.

You must identify and exploit your enemies' weaknesses, neutralizing their superior numbers and firepower with surprise, subversion, cunning and of course brute force. + +#: i18n/tmp/Applications/Games/Command and Conquer - Tiberium +#: Wars/application.js:2 +You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance. + +#: Applications/Games/Subnautica Below Zero/Steam/script.js:20 +#: Applications/Games/Subnautica/Steam/script.js:20 +You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync + +#: i18n/tmp/Applications/Games/BRINK/application.js:2 +You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! + +#: Applications/Games/Space Engineers/Steam/script.js:24 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + +#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 +You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. + +#: i18n/tmp/Applications/Games/The Witness/application.js:2 +You\ wake\ up,\ alone,\ on\ a\ strange\ island\ full\ of\ puzzles\ that\ will\ challenge\ and\ surprise\ you.

You\ don't\ remember\ who\ you\ are,\ and\ you\ don't\ remember\ how\ you\ got\ here,\ but\ there's\ one\ thing\ you\ can\ do\:\ explore\ the\ island\ in\ hope\ of\ discovering\ clues,\ regaining\ your\ memory,\ and\ somehow\ finding\ your\ way\ home.

The\ Witness\ is\ a\ single-player\ game\ in\ an\ open\ world\ with\ dozens\ of\ locations\ to\ explore\ and\ over\ 500\ puzzles.\ This\ game\ respects\ you\ as\ an\ intelligent\ player\ and\ it\ treats\ your\ time\ as\ precious.\ There's\ no\ filler;\ each\ of\ those\ puzzles\ brings\ its\ own\ new\ idea\ into\ the\ mix.\ So,\ this\ is\ a\ game\ full\ of\ ideas.=You wake up, alone, on a strange island full of puzzles that will challenge and surprise you.

You don't remember who you are, and you don't remember how you got here, but there's one thing you can do\: explore the island in hope of discovering clues, regaining your memory, and somehow finding your way home.

The Witness is a single-player game in an open world with dozens of locations to explore and over 500 puzzles. This game respects you as an intelligent player and it treats your time as precious. There's no filler; each of those puzzles brings its own new idea into the mix. So, this is a game full of ideas. + +#: i18n/tmp/Applications/Games/The Crew/application.js:2 +Your\ car\ is\ your\ avatar\ -\ fine\ tune\ your\ ride\ as\ you\ level\ up\ and\ progress\ through\ 5\ unique\ and\ richly\ detailed\ regions\ of\ a\ massive\ open-world\ US.\ Maneuver\ through\ the\ bustling\ streets\ of\ New\ York\ City\ and\ Los\ Angeles,\ cruise\ down\ sunny\ Miami\ Beach\ or\ trek\ through\ the\ breathtaking\ plateaus\ of\ Monument\ Valley.\ Each\ locale\ comes\ with\ its\ own\ set\ of\ surprises\ and\ driving\ challenges\ to\ master.\ On\ your\ journey\ you\ will\ encounter\ other\ players\ on\ the\ road\ –\ all\ potentially\ worthy\ companions\ to\ crew\ up\ with,\ or\ future\ rivals\ to\ compete\ against.\ This\ is\ driving\ at\ its\ most\ exciting,\ varied\ and\ open.=Your car is your avatar - fine tune your ride as you level up and progress through 5 unique and richly detailed regions of a massive open-world US. Maneuver through the bustling streets of New York City and Los Angeles, cruise down sunny Miami Beach or trek through the breathtaking plateaus of Monument Valley. Each locale comes with its own set of surprises and driving challenges to master. On your journey you will encounter other players on the road \u2013 all potentially worthy companions to crew up with, or future rivals to compete against. This is driving at its most exciting, varied and open. + +#: i18n/tmp/Engines/Wine/QuickScript/Zip Script/script.js:1 +Zip\ Script=Zip Script + +#: i18n/tmp/Engines/Wine/Settings/always offscreen/script.js:1 +always\ offscreen=always offscreen + +#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 +amstream=amstream + +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + +#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 +corefonts=corefonts + +#: i18n/tmp/Engines/Wine/Verbs/crypt32/script.js:1 +crypt32=crypt32 + +#: i18n/tmp/Engines/Wine/Plugins/csmt/script.js:1 +csmt=csmt + +#: i18n/tmp/Engines/Wine/Verbs/d3drm/script.js:1 +d3drm=d3drm + +#: i18n/tmp/Engines/Wine/Verbs/d3dx10/script.js:1 +d3dx10=d3dx10 + +#: i18n/tmp/Engines/Wine/Verbs/d3dx11/script.js:1 +d3dx11=d3dx11 + +#: i18n/tmp/Engines/Wine/Verbs/d3dx9/script.js:1 +d3dx9=d3dx9 + +#: i18n/tmp/Engines/Wine/Verbs/devenum/script.js:1 +devenum=devenum + +#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 +faudio=faudio + +#: Engines/Wine/Verbs/corefonts/script.js:87 +#: Engines/Wine/Verbs/corefonts/script.js:91 +fonts=fonts + +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + +#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 +gdiplus=gdiplus + +#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 +hdpi=hdpi + +#: i18n/tmp/Engines/Wine/Verbs/luna/script.js:1 +luna=luna + +#: i18n/tmp/Applications/Internet/mIRC/application.js:1 +mIRC=mIRC + +#: i18n/tmp/Engines/Wine/Plugins/managed/script.js:1 +managed=managed + +#: i18n/tmp/Engines/Wine/Verbs/mfc42/script.js:1 +mfc42=mfc42 + +#: i18n/tmp/Engines/Wine/Settings/mouse warp override/script.js:1 +mouse\ warp\ override=mouse warp override + +#: i18n/tmp/Engines/Wine/Verbs/msls31/script.js:1 +msls31=msls31 + +#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 +mspatcha=mspatcha + +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + +#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 +multisampling=multisampling + +#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 +native\ application=native application + +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + +#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 +offscreen\ rendering\ mode=offscreen rendering mode + +#: i18n/tmp/Applications/Games/osu!/application.js:1 +osu\!=osu\! + +#: i18n/tmp/Applications/Games/osu!/application.js:2 +osu\!\ is\ a\ free-to-win\ online\ rhythm\ game.=osu\! is a free-to-win online rhythm game. + +#: i18n/tmp/Engines/Wine/Plugins/override DLL/script.js:1 +override\ DLL=override DLL + +#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 +quartz=quartz + +#: Engines/Wine/Settings/render target lock mode/script.js:11 +readdraw=readdraw + +#: Engines/Wine/Settings/render target lock mode/script.js:11 +readtext=readtext + +#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 +regedit=regedit + +#: i18n/tmp/Engines/Wine/Plugins/register font/script.js:1 +register\ font=register font + +#: i18n/tmp/Engines/Wine/Plugins/regsvr32/script.js:1 +regsvr32=regsvr32 + +#: i18n/tmp/Engines/Wine/Settings/render target lock mode/script.js:1 +render\ target\ lock\ mode=render target lock mode + +#: i18n/tmp/Engines/Wine/Verbs/sandbox/script.js:1 +sandbox=sandbox + +#: i18n/tmp/Engines/Wine/Verbs/secur32/script.js:1 +secur32=secur32 + +#: i18n/tmp/Engines/Wine/Plugins/sound driver/script.js:1 +sound\ driver=sound driver + +#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 +strict\ draw\ ordering=strict draw ordering + +#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 +v1.5=v1.5 + +#: i18n/tmp/Applications/Internet/TeamSpeak 3/v3.0.19.4/script.js:1 +v3.0.19.4=v3.0.19.4 + +#: i18n/tmp/Applications/Internet/mIRC/v7.46/script.js:1 +v7.46=v7.46 + +#: i18n/tmp/Engines/Wine/Verbs/vcrun2003/script.js:1 +vcrun2003=vcrun2003 + +#: i18n/tmp/Engines/Wine/Verbs/vcrun2005/script.js:1 +vcrun2005=vcrun2005 + +#: i18n/tmp/Engines/Wine/Verbs/vcrun2008/script.js:1 +vcrun2008=vcrun2008 + +#: i18n/tmp/Engines/Wine/Verbs/vcrun2010/script.js:1 +vcrun2010=vcrun2010 + +#: i18n/tmp/Engines/Wine/Verbs/vcrun2012/script.js:1 +vcrun2012=vcrun2012 + +#: i18n/tmp/Engines/Wine/Verbs/vcrun2013/script.js:1 +vcrun2013=vcrun2013 + +#: i18n/tmp/Engines/Wine/Verbs/vcrun2015/script.js:1 +vcrun2015=vcrun2015 + +#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 +vcrun2017=vcrun2017 + +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + +#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 +video\ memory\ size=video memory size + +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual +virtual\ desktop=virtual desktop + +#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 +vulkanSDK=vulkanSDK + +#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 +xact=xact + +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet45/script.js:50 +{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" + +#: i18n/tmp/Applications/Games/It came from space and ate our +#: brains/application.js:2 +‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. diff --git a/i18n/Messages_fi.properties b/i18n/Messages_fi.properties index c30ab8da12..15089d6a4e 100644 --- a/i18n/Messages_fi.properties +++ b/i18n/Messages_fi.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:492 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:44 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:220 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:251 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:49 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:321 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installing {0}... #: i18n/tmp/Applications/Internet/category.js:1 @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: Applications/Games/Space Colony/Local/script.js:17 -Once\ the\ progress\ bar\ closes,\ an\ installation\ complete\ window\ should\ appear\ but\ in\ case\ it\ does\ not\ you\ should\ kill\ the\ process\ which\ name\ consist\ of\ just\ one\ dot.=Once the progress bar closes, an installation complete window should appear but in case it does not you should kill the process which name consist of just one dot. - -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -834,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -843,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -876,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -886,141 +955,156 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:50 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:32 +#: Engines/Wine/Engine/Implementation/script.js:520 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:522 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:41 +#: Engines/Wine/Verbs/msxml6/script.js:54 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1060,6 +1144,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1079,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 -Registering\ {0}...=Registering {0}... - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=Registry Editor @@ -1091,7 +1175,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1106,7 +1190,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1199,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1137,8 +1224,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1172,11 +1258,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1210,9 +1295,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1222,120 +1319,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1348,7 +1447,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1369,6 +1468,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1461,8 +1563,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1477,7 +1579,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1486,6 +1588,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1501,25 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1547,8 +1655,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1587,14 +1694,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1603,6 +1713,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:42 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1612,10 +1732,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1624,7 +1747,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1648,17 +1771,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1697,6 +1820,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1706,9 +1832,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1741,6 +1873,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:44 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1759,6 +1894,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1786,13 +1924,19 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -1817,12 +1961,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1838,10 +1991,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1868,9 +2021,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1904,10 +2054,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1916,11 +2070,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_fr.properties b/i18n/Messages_fr.properties index 2e6aeaed4f..66dfb183da 100644 --- a/i18n/Messages_fr.properties +++ b/i18n/Messages_fr.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=Une pure simulation immersive de science fiction \u00e0 un joueur. Plonger dans un monde modifi\u00e9 par vos choix \! Explorez, discutez, battez-vous ou faufilez-vous dans The Churchill Tower en 2041 \! Pourrez-vous survivre \u00e0 The Tower ? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=Far Cry\u00ae - Sous les tropiques \: l'Enfer. Ce jeu d'action et de tir repousse les fronti\u00e8res du combat virtuel dans ses derniers retranchements.

Vous \u00eates Jack Carver, un aventurier comme les autres, et vous n'auriez pas d\u00fb accepter de conduire cette jeune journaliste sur cette \u00eele apparemment paradisiaque.

\u00c0 peine le pied pos\u00e9 sur cette \u00eele vous \u00eates victime du feu nourri d'une myst\u00e9rieuse milice paramilitaire. Bilan \: bateau d\u00e9truit et journaliste enlev\u00e9e. Il vous reste un pistolet et une farouche d\u00e9termination.

Vous allez bient\u00f4t faire la rencontre d'un membre de cette milice qui vous r\u00e9v\u00e8lera les secrets de l'\u00eele. Vous n'aurez, \u00e0 partir de cet instant, plus le choix \: il va falloir combattre cette arm\u00e9e de mercenaires et contrecarrer leur plan d\u00e9moniaque. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid est un jeu de plateforme et de casse-t\u00eates, dessin\u00e9 comme une peinture, o\u00f9 vous pouvez manipuler l'\u00e9coulement du temps d'une mani\u00e8re \u00e9trange et inhabituelle. Depuis une maison dans la ville, parcourez une s\u00e9rie de mondes et r\u00e9solvez des casse-t\u00eates pour sauver une princesse enlev\u00e9e. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia est une terre en guerre, offrant de grandes richesses et des dangers encore plus grands pour les aventuriers et les mercenaires qui affluent pour y verser leur sang sur son sol. Avec du courage et une \u00e9p\u00e9e forte, un \u00e9tranger inconnu peut se faire un nom comme guerrier. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Ne peut pas lancer un ex\u00e9cutable 64bit dans un pr\u00e9fixe Wine 32bit. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:492 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configurer Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Impossible de d\u00e9terminer le type mime pour l''extension de fichier "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Impossible de d\u00e9sinstaller {0} \! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Personnalis\u00e9 #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Script d'installation personnalis\u00e9 +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:44 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=D\u00e9veloppement -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=T\u00e9l\u00e9chargeur +#: Engines/Wine/Engine/Implementation/script.js:220 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:251 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:49 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition est la version ultime de ROME II, elle inclut un syst\u00e8me politique am\u00e9lior\u00e9, des cha\u00eenes de construction remani\u00e9es, des combats r\u00e9\u00e9quilibr\u00e9s et des visuels am\u00e9lior\u00e9s \u00e0 la fois en campagne et en bataille.

De plus, Emperor Edition inclut tout le contenu et les mises \u00e0 jour disponibles pour ROME II depuis son lancement en septembre 2013. Celles-ci incluent l'int\u00e9gration de Twitch.TV, les commandes tactiles, de nouvelles factions et unit\u00e9s jouables et la compatibilit\u00e9 Mac. Le pack de campagne Imperator Augustus ainsi que tout le contenu et fonctionnalit\u00e9s de Emperor Edition sont gratuits, via une mise \u00e0 jour gratuite pour tous les possesseurs de ROME II. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engagez-vous dans un voyage du pouvoir tropical \! Devenez le dictateur d'une \u00eele perdue au cours de la guerre froide. Le charme, la persuasion, l'intimidation, l'oppression ou la triche, tout est bon pour rester au pouvoir \! \u00cates-vous un chef bon et g\u00e9n\u00e9reux? Un tyran \u00e0 la main de fer sans scrupules et aux pouvoirs corrompus ? Transformez votre \u00eele en un paradis touristique ou en une puissance industrielle. Faites des promesses \u00e9lectorales ou diffamez vos adversaires politiques pour obtenir le vote lors des prochaines \u00e9lections. Envoyez votre avatar f\u00e9liciter les gens, visitez l'\u00eele d'un autre joueur, ou simplement prenez un bain de soleil sur la plage des Cara\u00efbes. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Erreur pendant le calcul de la somme de contr\u00f4le de "{0}". \n\nAttendue \= {1}\nR\u00e9elle \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Vous \u00eates-vous jamais demand\u00e9 ce qu'un quadrillion de d\u00e9g\u00e2t par seconde faisait ? Ne vous posez plus de questions \! Embarquez sur votre qu\u00eate pour l'atteindre aujourd'hui \! Commencez par cliquer sur les monstres pour les tuer et obtenir leur or. D\u00e9penser cet or lors de l'embauche de nouveaux h\u00e9ros et faites plus de d\u00e9g\u00e2ts. Plus vous infligez de d\u00e9g\u00e2ts, plus vous obtiendrez d'or. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Ex\u00e9cutable {0} introuvable \! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Soyez Batman et affrontez les super-vilains de Gotham City. Parcourez l'asile d'Arkham et son \u00eele terrifiante.

Le jeu Batman\: Arkham Asylum, r\u00e9compens\u00e9 par les critiques, revient dans une \u00e9dition remast\u00e9ris\u00e9e "Game of the Year" qui comporte 4 nouvelles cartes pour le mode D\u00e9fi. Dans ce lot de 4 cartes figurent l'All\u00e9e du Crime, Cauchemar, Compl\u00e8tement fou, et Chasseur Nocturne (les deux derni\u00e8res proviennent du pack de cartes Nuit d\u00e9mentielle). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore marche dans les pas du l\u00e9gendaire mentor Alta\u00efr, dans un dangereux p\u00e9riple de d\u00e9couvertes et r\u00e9v\u00e9lations. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=L'UNIVERS DE DRAGON BALL D\u00c9BARQUE SUR STEAM POUR LA TOUTE PREMI\u00c8RE FOIS \!

DRAGON BALL XENOVERSE revient sur tous les combats embl\u00e9matiques de la saga gr\u00e2ce \u00e0 l'Avatar, li\u00e9 \u00e0 Trunks et \u00e0 bien d'autres personnages. Ce lien et sa volont\u00e9 d'intervenir dans les combats seront-ils assez forts pour changer l'histoire telle que nous la connaissons ? Tu d\u00e9couvriras \u00e9galement la myst\u00e9rieuse ville de Tokitoki, de nouveaux m\u00e9canismes de jeu et d'animation des personnages et bien d'autres incroyables surprises \! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game, remake de Tomb Raider 2 par Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon est LE cyber-shooter qui d\u00e9chire \!Nous sommes en 2007. Bienvenue dans le futur. Vous \u00eates le sergent Rex Colt, un Cyber Commando Mark IV, mi-homme, mi-machine (mais 100% am\u00e9ricain). Votre mission \: ramener la fille, tuer les m\u00e9chants et sauver le monde. +#: Engines/Wine/Engine/Implementation/script.js:321 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=Extracteurs de fichier @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut est un jeu de course automobile muscl\u00e9 rempli d'adr\u00e9naline, de physique explosive, d'effets et de graphismes spectaculaires, d'une m\u00e9canique de jeu innovante et du bon vieux plaisir \! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=Pendant des si\u00e8cles, la plan\u00e8te Hyllis a \u00e9t\u00e9 bombard\u00e9e par une race alien implacable. Sceptique sur l'incapacit\u00e9 de son gouvernement \u00e0 repousser les envahisseurs, une journaliste d'action rebelle nomm\u00e9e Jade part \u00e0 la recherche de la v\u00e9rit\u00e9. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forgez votre arme et suivez le chemin du Jedi. Jedi Knight\: Jedi Academy est la derni\u00e8re \u00e9dition de la tr\u00e8s acclam\u00e9e s\u00e9rie Jedi Knight. Prenez le r\u00f4le d'un nouvel \u00e9l\u00e8ve d\u00e9sireux d'apprendre les voies de la Force du Ma\u00eetre Jedi Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Fonctions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphismes +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy tower est un jeu de plateforme install\u00e9 dans une tour, o\u00f9 le but du joueur est de sauter d'un \u00e9tage \u00e0 l'autre et aller le plus haut possible sans tomber ou plonger hors de l'\u00e9cran. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Script d'installation -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installing {0}... #: i18n/tmp/Applications/Internet/category.js:1 @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Incarnez Ezio, un l\u00e9gendaire Ma\u00eetre Assassin, dans son combat acharn\u00e9 contre le puissant Ordre des Templiers. Pour porter un coup fatal \u00e0 l'ennemi, Ezio doit se rendre dans la plus grande ville d'Italie \: Rome. Un lieu de pouvoir, d'avidit\u00e9 et de corruption. Pour triompher des tyrans corrompus qui s'y terrent, Ezio devra non seulement montrer qu'il est un puissant combattant, mais aussi un meneur d'hommes \: une Confr\u00e9rie enti\u00e8re sera plac\u00e9e sous ses ordres. Ce n'est qu'en travaillant ensemble que les Assassins vaincront leurs ennemis jur\u00e9s. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multim\u00e9dia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,46 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Bureautique -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 -Offscreen\ rendering\ mode=Mode de rendu offscreen +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 +Offscreen\ rendering\ mode=Mode de rendu hors \u00e9cran -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=Lors du premier lancement, le jeu pourrait ne pas se mettre en plein \u00e9cran. Si c'est le cas, allez dans les options s\u00e9lectionnez une r\u00e9solution de 1920 x 960. On vous demandera de fermer le jeu pour appliquer les nouveaux param\u00e8tres. Cliquez sur Oui. Une fois que vous d\u00e9marrez le jeu \u00e0 nouveau, vous devriez voir une fen\u00eatre o\u00f9 vous pouvez d\u00e9finir la r\u00e9solution de votre jeu pour correspondre \u00e0 votre \u00e9cran. -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=En ligne #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -831,6 +896,10 @@ Online\ (Demo)=En ligne (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=En ligne (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Installeur en ligne @@ -840,15 +909,15 @@ Online\ Installer\ Script=Script d'installation en ligne #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Ouvrir un terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -873,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City est le jeu le plus grand et le plus dangereux appartenant \u00e0 la s\u00e9rie \u00e0 succ\u00e8s Burnout. Le cadre massif donne aux joueurs un monde ouvert \u00e0 explorer, comme il voyage avec leurs v\u00e9hicules \u00e0 travers des centaine de miles de routes et de passages souterrains avec plus de 70 voitures diff\u00e9rentes. Passer \u00e0 toute vitesse \u00e0 travers les rues d'\u00e9v\u00e9nement en \u00e9v\u00e9nement, accumulant des points qui sont enregistr\u00e9s dans votre permis de conduire de Paradise City. Gagnez la licence "Burnout" v\u00e9n\u00e9r\u00e9e en \u00e9crasant les panneaux d'affichage, les rampes de saut et gr\u00e2ce au maintien de collisions avec le syst\u00e8me de d\u00e9g\u00e2ts am\u00e9lior\u00e9. @@ -883,141 +955,156 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Veuillez fermer Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:50 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Veuillez entrer le nom de votre application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Veuillez suivre les \u00e9tapes de l''installation de Uplay.\n\nD\u00e9cochez "Lancer Uplay" ou fermez Uplay compl\u00e8tement apr\u00e8s l''installation pour que l''installation de "{0}" puisse continuer. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Veuillez suivre les \u00e9tapes de l''installation de Uplay.\n\nD\u00e9cochez "Lancer Uplay" ou fermez Uplay compl\u00e8tement apr\u00e8s l''installation pour que l''installation de "{0}" puisse continuer. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=Veuillez s\u00e9lectionner le fichier .zip. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:36 +#: Engines/Wine/Engine/Implementation/script.js:520 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Veuillez s\u00e9lectionner l'URL de t\u00e9l\u00e9chargement. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=Veuillez s\u00e9lectionner l'ex\u00e9cutable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:27 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Veuillez s\u00e9lectionner le fichier d'installation. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Veuillez s\u00e9lectionner le fichier d'installation.\nVous pouvez le t\u00e9l\u00e9charger depuis https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:522 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Veuillez s\u00e9lectionner l'architecture de wine. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Veuillez s\u00e9lectionner la distributions de wine. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Veuillez s\u00e9lectionner la version de wine. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Veuillez patienter jusqu'\u00e0 ce que Steam aie fini le t\u00e9l\u00e9chargement... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Veuillez patienter jusqu'\u00e0 ce que Uplay aie fini le t\u00e9l\u00e9chargement... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Veuillez patienter pendant que {0} est t\u00e9l\u00e9charg\u00e9... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Veuillez patienter pendant que {0} est extrait... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:41 +#: Engines/Wine/Verbs/msxml6/script.js:54 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=Veuillez patienter pendant que {0} est install\u00e9... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Veuillez patienter pendant que {0} est d\u00e9sinstall\u00e9... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=Veuillez patienter... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Le pr\u00e9fixe semble \u00eatre en 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1057,6 +1144,9 @@ QuickScripts\ for\ Wine.=QuickScripts pour Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield \: Commandez l\u2019\u00e9lite de la brigade multinationale des op\u00e9rations sp\u00e9ciales contre les forces terroristes cach\u00e9es. Dans Tom Clancy's Rainbow Six 3\: Raven Shield, le troisi\u00e8me \u00e9pisode de la s\u00e9rie populaire Rainbow Six, l'\u00e9quipe Rainbow est confront\u00e9e \u00e0 un nouvel ennemi secret mondiale. @@ -1076,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger est une jeu de tir \u00e0 la premi\u00e8re personne d'\u00e9nigme. Pourrez-vous vous infiltrer et corrompre le syst\u00e8me ? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 -Registering\ {0}...=Registering {0}... - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=\u00c9diteur du registre @@ -1088,7 +1175,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Revivez Ha #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1103,7 +1190,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1112,6 +1199,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Jouez avec votre propre musique. Audiosurf est un jeu o\u00f9 vous utilisez votre propre musique pour cr\u00e9er votre propre exp\u00e9rience. La forme, la vitesse et l'ambiance de chaque session sera d\u00e9termin\u00e9e par le choix de votre morceau. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1134,8 +1224,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1169,11 +1258,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=S\u00e9lectionner votre r\u00e9gion pour le patch (1.0 vers 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=S\u00e9lectionnez votre r\u00e9gion \: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Dans un monde o\u00f9 les humains ont depuis longtemps disparu, et les b\u00eates reignent en ma\u00eetre, Earth Eternal - Valkal's Shadow est la suit faite par les fans de Earth Eternal, un MMORPG abandonn\u00e9 par Sparkplay Media. Valkal's Shadow est bas\u00e9 sur la version 0.8.6, mais avec beaucoup de contenu et de fonctionnalit\u00e9s ajout\u00e9e, incluant 2 nouvelles r\u00e9gions, beaucoup de nouveaux donjons and d'inombrables nouvelles qu\u00eates. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1207,9 +1295,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1219,120 +1319,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty est un jeu militaire de strat\u00e9gie de science fiction en temps r\u00e9el d\u00e9velopp\u00e9 et publi\u00e9 par Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1345,7 +1447,7 @@ Steam\ Script=Script Steam #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam est une plateforme de distribution num\u00e9rique d\u00e9velopp\u00e9e par Valve Corporation, qui offre des services de gestion num\u00e9rique des droits (GND), jeu multijoueur, diffusion vid\u00e9o et de r\u00e9seau social. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1366,6 +1468,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1458,8 +1563,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter est un myst\u00e8re \u00e0 la premi\u00e8re personne ax\u00e9 sur l'histoire. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1474,7 +1579,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=Le conteneur {0} n''est plus utilis\u00e9.\nVoulez-vous le supprimer ? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1483,6 +1588,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=Le moyen le plus rapide d'apprendre la guitare est maintenant meilleur que jamais. Rejoignez plus de trois millions de personnes qui ont appris \u00e0 jouer de la guitare avec la m\u00e9thode prim\u00e9e Rocksmith\u00ae. Branchez n'importe quelle guitare ou basse r\u00e9elle avec une prise 1/4 pouces directement dans votre PC ou Mac et vous apprendrez \u00e0 jouer en seulement 60 jours. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=Le gameplay de Toki Tori est un m\u00e9lange de deux genres. Alors qu'il ressemble \u00e0 un jeu de plateforme, c'est un jeu en son c\u0153ur un jeu de casse-t\u00eates. Pour progresser \u00e0 travers le jeu, le joueur doit ramasser chaque \u0153uf dans un niveau en utilisant un nombre d\u00e9termin\u00e9 d'outils. @@ -1498,25 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=1715, les Pirates r\u00e8gnent sur les Cara\u00efbes et viennent de fonder leur propre R\u00e9publique o\u00f9 la corruption, l\u2019avarice et la cruaut\u00e9 sont d\u00e9sormais monnaie courante. Parmi ces hors-la-loi, un jeune capitaine imp\u00e9tueux du nom d\u2019Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1544,8 +1655,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1584,14 +1694,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Des \u00e9v\u00e9nements uniques vous transportent vers les salles d'une crypte longtemps oubli\u00e9e. Le seul moyen de s'\u00e9chapper est enferm\u00e9 dans un socle en pierre, avec qu'une note de votre alli\u00e9 myst\u00e9rieux. Ses paroles promettent une aide, mais ne servent qu'\u00e0 vous inciter \u00e0 devenir un monde convaincant de myst\u00e8re et d'exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1600,6 +1713,16 @@ Uplay\ Script=Script Uplay #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay est le portail des jeux PC d'Ubisoft. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:42 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utilitaires pour applications. @@ -1609,10 +1732,13 @@ Utils\ for\ file\ system\ interaction.=Utilitaires pour les interactions syst\u0 #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utilitaires pour les interactions internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1621,7 +1747,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs pour Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1645,17 +1771,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Bienvenue \u00e0 Unholy Heights, un m\u00e9lange de Tower Defense et Apartment Management Simulation \! Le Diable a transform\u00e9 un immeuble d'habitation en logements pour monstres, et a de grands projets pour l'avenir. Attirer des monstres dans votre immeuble, facturer les et garder les heureux en leur achetant des meubles. Malheureusement, les h\u00e9ros ont eu vent du plan du Diable et ne s'arr\u00eateront \u00e0 rien pour l'\u00e9liminer. Frappez les portes des r\u00e9sidents pour les appeler \u00e0 la bataille, pi\u00e9gez les h\u00e9ros dans des formations en tenailles fourbes et menez vos troupes \u00e0 la victoire. Les monstres obtiennent des emplois, tombent amoureux, ont des enfants et m\u00eame ignorent leur loyer. Gardez-les heureux ou vous pourriez n'avoir personne \u00e0 combattre lorsque les h\u00e9ros viendront frapper. Mais ne soyez pas trop doux\: il y a toujours des m\u00e9chants potentiels qui cherchent \u00e0 se d\u00e9placer, alors faites sortir les parasites lorsque le moment est venu\! \u00catre un propri\u00e9taire est un travail difficile, mais il ne peut pas \u00eatre plus difficile que de courir l'enfer ... n'est-ce pas ? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=Au lancement d'Origin, il y aura un message d'erreur ("Your update could not be completed."). C'est normal. Fermez juste le popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Quelle langue aimeriez-vous installer ? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1694,6 +1820,9 @@ Wine\ Tools=Outils Wine #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Verbs Wine +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Moteur Wine @@ -1703,9 +1832,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=D\u00e9sinstalleur wine +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Laur\u00e9at de plus de 200 r\u00e9compenses du Jeu de l'ann\u00e9e \! Skyrim Special Edition apporte un souffle nouveau \u00e0 cette aventure \u00e9pique, avec force d\u00e9tail. La Special Edition comprend le c\u00e9l\u00e8bre jeu et les contenus additionnels, avec graphismes et effets remast\u00e9ris\u00e9s, rayons divins volum\u00e9triques, profondeur de champ dynamique, reflets et plus encore. Skyrim Special Edition apporte en outre toute la puissance des mods PC sur console. Nouvelles qu\u00eates, environnements, personnages, dialogue, armure, armes et plus encore... l'exp\u00e9rience est sans limite. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1738,6 +1873,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=D\u00e9cidez du type de combattant que vous souhaitez \u00eatre dans Brink et partez d\u00e9fendre le dernier refuge de l'humanit\u00e9 \! +#: Applications/Games/Space Engineers/Steam/script.js:44 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=Vous prenez part \u00e0 l'ancien jeu traditionnel de Druid Soccer. @@ -1756,6 +1894,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1783,13 +1924,19 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=polices +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -1814,12 +1961,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1835,10 +1991,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1865,9 +2021,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1901,10 +2054,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=bureau virtuel #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1913,11 +2070,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} certaines applications peuvent avoir des probl\u00e8mes si la version de windows n''est pas mise \u00e0 "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 est un jeu de tir Arcade avec un gameplay de survie avec une atmosph\u00e8re unique avec des \u00e9l\u00e9ments de gameplay addictif, qui peuvent tous \u00eatre jou\u00e9s en coop\u00e9ration. Vous \u00eates un type de gars \u00e9quip\u00e9 d'une lampe de poche et d'une arme. Vous avez en quelque sorte r\u00e9ussi \u00e0 survivre \u00e0 l'invasion d'une esp\u00e8ce alien impitoyable, le genre qui se nourrit de cerveaux humains. Les choses n'ont pas l'air fameuses quand vous vous promenez dans la ville et d'autres endroits, le chaos est partout \! Vous cherchez des \u00e9quipements et des armes pour survivre, alors que les aliens \u00e9metteurs de lumi\u00e8re rose essayent de vous coincer et de manger votre cerveau. Vous r\u00e9alisez qu'il n'y a plus qu'une chose \u00e0 faire \: \u00e9tablir un nouveau score \u00e9lev\u00e9 et mourir comme un badass. - diff --git a/i18n/Messages_he.properties b/i18n/Messages_he.properties index c30ab8da12..15089d6a4e 100644 --- a/i18n/Messages_he.properties +++ b/i18n/Messages_he.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:492 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:44 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:220 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:251 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:49 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:321 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installing {0}... #: i18n/tmp/Applications/Internet/category.js:1 @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: Applications/Games/Space Colony/Local/script.js:17 -Once\ the\ progress\ bar\ closes,\ an\ installation\ complete\ window\ should\ appear\ but\ in\ case\ it\ does\ not\ you\ should\ kill\ the\ process\ which\ name\ consist\ of\ just\ one\ dot.=Once the progress bar closes, an installation complete window should appear but in case it does not you should kill the process which name consist of just one dot. - -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -834,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -843,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -876,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -886,141 +955,156 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:50 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:32 +#: Engines/Wine/Engine/Implementation/script.js:520 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:522 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:41 +#: Engines/Wine/Verbs/msxml6/script.js:54 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1060,6 +1144,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1079,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 -Registering\ {0}...=Registering {0}... - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=Registry Editor @@ -1091,7 +1175,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1106,7 +1190,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1199,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1137,8 +1224,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1172,11 +1258,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1210,9 +1295,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1222,120 +1319,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1348,7 +1447,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1369,6 +1468,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1461,8 +1563,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1477,7 +1579,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1486,6 +1588,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1501,25 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1547,8 +1655,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1587,14 +1694,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1603,6 +1713,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:42 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1612,10 +1732,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1624,7 +1747,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1648,17 +1771,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1697,6 +1820,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1706,9 +1832,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1741,6 +1873,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:44 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1759,6 +1894,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1786,13 +1924,19 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -1817,12 +1961,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1838,10 +1991,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1868,9 +2021,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1904,10 +2054,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1916,11 +2070,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_hu.properties b/i18n/Messages_hu.properties index ee2182024f..63d5885f8d 100644 --- a/i18n/Messages_hu.properties +++ b/i18n/Messages_hu.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=Egy tiszta sci-fi egyj\u00e1t\u00e9kos szimul\u00e1ci\u00f3. Mer\u00fclj el egy olyan vil\u00e1gba, amelyet az \u00d6n v\u00e1laszt\u00e1sai alkotnak\! Fedezd fel, besz\u00e9lj, harcolj vagy harcolj a Churchill-toronyon 2042-ben\! Meg tudja \u00e9lni a tornyot? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tr\u00f3pusi paradicsomban forr rejtett gonosz Far Cry\u00ae, a ravaszul r\u00e9szletezett akci\u00f3 vad\u00e1sz, hogy kitolja a hat\u00e1rait harci sokkol\u00f3 \u00faj szinteket.

Szabad\u00fasz\u00f3 tenger\u00e9sz Carver Jack van \u00e1tkozva a napon, amikor sem j\u00f6tt erre a szigetre. Egy h\u00e9ttel ezel\u0151tt a Val\u00e9ria nev\u0171 r\u00e1men\u0151s-riporter hihetetlen \u00f6sszeg\u0171 k\u00e9szp\u00e9nzt aj\u00e1nlott neki, hogy vigye mag\u00e1hoz ezt az \u00e9rintetlen paradicsomot. R\u00f6viddel a dokkol\u00e1s ut\u00e1n Jack haj\u00f3j\u00e1t egy titokzatos t\u0171z k\u00f6sz\u00f6nt\u00f6tte egy titokzatos mil\u00edcia csoport, amely a szigeten zajlott.

A haj\u00f3ja elpusztult, p\u00e9nz\u00e9b\u0151l elt\u0171nt, \u00e9s a gy\u00f6ny\u00f6r\u0171 Val\u00e9ria hirtelen elt\u0171nt, Jack most m\u00e1r szembes\u00fcl egy zsoldos hadsereg a sziget vadjainak k\u00f6zepette, csak egy pisztolyt \u00e9s az eszeit, hogy t\u00fal\u00e9lje. De min\u00e9l jobban behatol a buja dzsungel-baldachinba, az idegen dolgok v\u00e1lnak.

Jack tal\u00e1lkozik egy bennfentesekkel a mil\u00edcia csoporton bel\u00fcl, aki felt\u00e1rja a zsoldosok val\u00f3di sz\u00e1nd\u00e9kainak sz\u00f6rny\u0171 r\u00e9szleteit. Zavarba ejt\u0151 v\u00e1laszt\u00e1ssal mutat be Jacket\: harcoljon a legvesz\u00e9lyesebb zsoldosokkal, vagy el\u00edt\u00e9lje az emberis\u00e9get egy m\u00e1ni\u00e1kus \u00e1rtatlan napirendj\u00e9re. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection \u2013 A birodalmak kora 3. sorozat\: teljes gy\u0171jtem\u00e9ny -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Mindig k\u00e9perny\u0151n k\u00edv\u00fcl #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf \u2013 hang-hull\u00e1mt\u00f6r\u00e9s +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK \u2013 sz\u00e9le -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Vissza puffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid \u2013 Fonat #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:492 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=A f\u00e1jl ellen\u0151rz\u00e9se\u2026 #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=A Wine be\u00e1ll\u00edt\u00e1sai #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=A(z) {0} elt\u00e1vol\u00edt\u00e1sa sikertelen. #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Egy\u00e9ni #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Egy\u00e9ni telep\u00edt\u0151 parancsf\u00e1jl +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:44 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online \u2013 k\u00e9preg\u00e9ny nyomoz\u00f3 univerzum online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Alap\u00e9rtelmezett #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Fejleszt\u00e9s -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Tiltva -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Let\u00f6lt\u0151 +#: Engines/Wine/Engine/Implementation/script.js:220 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:251 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer \u2013 \u00f6skelta pap futball -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:49 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enged\u00e9lyezve #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}={0} f\u00e1jlellen\u0151rz\u0151 hiba.\n\nv\u00e1rhat\u00f3 ellen\u0151rz\u0151\u00f6sszeg \= {1}\nsz\u00e1m\u00edtott ellen\u0151rz\u0151\u00f6sszeg \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=A(z) {0} v\u00e9grehajthat\u00f3 f\u00e1jl nem tal\u00e1lhat\u00f3. #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=A(z) {0} kicsomagol\u00e1sa\u2026 #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:321 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=F\u00e1jl kicsomagol\u00e1sok @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=F\u00fcggv\u00e9ny -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Grafika +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Telep\u00edt\u0151 parancsf\u00e1jl -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Verzi\u00f3 telep\u00edt\u00e9se\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=A(z) {0} telep\u00edt\u00e9se\u2026 #: i18n/tmp/Applications/Internet/category.js:1 @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Helyi #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II \u2013 Maffia 2. sorozat +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multim\u00e9dia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Iroda -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=K\u00e9perny\u0151n k\u00edv\u00fcli megjelen\u00edt\u00e9si m\u00f3d -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: Applications/Games/Space Colony/Local/script.js:17 -Once\ the\ progress\ bar\ closes,\ an\ installation\ complete\ window\ should\ appear\ but\ in\ case\ it\ does\ not\ you\ should\ kill\ the\ process\ which\ name\ consist\ of\ just\ one\ dot.=Once the progress bar closes, an installation complete window should appear but in case it does not you should kill the process which name consist of just one dot. - -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Csatlakoz\u00e1s #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -834,6 +896,10 @@ Online\ (Demo)=Csatlakoz\u00e1s (bemutat\u00e1s) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Csatlakoz\u00e1s (hagyom\u00e1nyos) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Csatlakoz\u00e1s telep\u00edt\u0151 @@ -843,15 +909,15 @@ Online\ Installer\ Script=Csatlakoz\u00e1s telep\u00edt\u0151 parancsf\u00e1jl #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Termin\u00e1l megnyit\u00e1sa -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -876,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -886,141 +955,156 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=A folytat\u00e1shoz z\u00e1rja be az Uplay programot. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Gy\u0151z\u0151dj\u00f6n meg arr\u00f3l, hogy telep\u00edtett winbind a folytat\u00e1s el\u0151tt. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:50 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=V\u00e1lasszon ZIP arch\u00edv f\u00e1jlt (.zip). -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=V\u00e1lasszon SP3 f\u00e1jlt. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:32 +#: Engines/Wine/Engine/Implementation/script.js:520 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=V\u00e1lasszon let\u00f6lt\u00e9si URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=V\u00e1lasszon v\u00e9grehajthat\u00f3 f\u00e1jlt. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=V\u00e1lasszon telep\u00edt\u00e9si f\u00e1jlt. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:522 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=V\u00e1lasszon Wine \u00e9p\u00edt\u00e9szet. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=V\u00e1lasszon Wine eloszt\u00e1st. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=V\u00e1lasszon Wine verzi\u00f3t. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=K\u00e9rem v\u00e1rjon, am\u00edg a Steam befejezte a let\u00f6lt\u00e9st\u2026 -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=K\u00e9rem v\u00e1rjon, am\u00edg az Uplay befejezte a let\u00f6lt\u00e9st\u2026 -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=A(z) {0} let\u00f6lt\u00e9se, k\u00e9rem v\u00e1rjon\u2026 -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=A(z) {0} kicsomagol\u00e1sa, k\u00e9rem v\u00e1rjon\u2026 -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:41 +#: Engines/Wine/Verbs/msxml6/script.js:54 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=A(z) {0} telep\u00edt\u00e9se, k\u00e9rem v\u00e1rjon\u2026 -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=A(z) {0} elt\u00e1vol\u00edt\u00e1sa, k\u00e9rem v\u00e1rjon\u2026 -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=K\u00e9rem v\u00e1rjon\u2026 #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Az el\u0151tag 32-bitesnek t\u0171nik #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1060,6 +1144,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1079,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 -Registering\ {0}...=A(z) {0} nyilv\u00e1ntart\u00e1sa\u2026 - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=Rendszerle\u00edr\u00f3adatb\u00e1zis-szerkeszt\u0151 @@ -1091,7 +1175,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1106,7 +1190,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1199,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1137,8 +1224,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1172,11 +1258,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=V\u00e1lassza ki a ter\u00fcletet a jav\u00edt\u00e1shoz (1,0 \u00e9s 1,60 k\u00f6z\u00f6tt). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=V\u00e1lassza ki a ter\u00fcletet\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1210,9 +1295,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1222,120 +1319,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (bemutat\u00e1s) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1348,7 +1447,7 @@ Steam\ Script=Stream parancsf\u00e1jl #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1369,6 +1468,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1461,8 +1563,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1477,7 +1579,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness \u2013 A tan\u00fa -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=A(z) {0} t\u00e1rol\u00f3 m\u00e1r nem haszn\u00e1lt.\nSzeretne t\u00f6r\u00f6lni? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1486,6 +1588,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1501,25 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1547,8 +1655,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend \u2013 S\u00edr tolvaj\: legenda -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian \u2013 S\u00edr tolvaj\: a Xian t\u0151rje #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1587,14 +1694,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1603,6 +1713,16 @@ Uplay\ Script=Uplay parancsf\u00e1jl #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:42 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Alkalmaz\u00e1s eszk\u00f6z\u00f6k @@ -1612,10 +1732,13 @@ Utils\ for\ file\ system\ interaction.=F\u00e1jlrendszer-eszk\u00f6z\u00f6k #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Internetes eszk\u00f6z\u00f6k +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1624,7 +1747,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Wine ig\u00e9k -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1648,17 +1771,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Melyik nyelvet szeretne telep\u00edteni? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1697,6 +1820,9 @@ Wine\ Tools=Wine-i eszk\u00f6z\u00f6k #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine ig\u00e9k +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine-szolg\u00e1ltat\u00e1s @@ -1706,9 +1832,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine elt\u00e1vol\u00edt\u00f3 +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1741,6 +1873,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:44 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1759,6 +1894,9 @@ always\ offscreen=Mindig k\u00e9perny\u0151n k\u00edv\u00fcl #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1786,13 +1924,19 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -1817,12 +1961,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1838,10 +1991,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1868,9 +2021,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1904,10 +2054,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1916,11 +2070,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_it.properties b/i18n/Messages_it.properties index c30ab8da12..15089d6a4e 100644 --- a/i18n/Messages_it.properties +++ b/i18n/Messages_it.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:492 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:44 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:220 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:251 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:49 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:321 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installing {0}... #: i18n/tmp/Applications/Internet/category.js:1 @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: Applications/Games/Space Colony/Local/script.js:17 -Once\ the\ progress\ bar\ closes,\ an\ installation\ complete\ window\ should\ appear\ but\ in\ case\ it\ does\ not\ you\ should\ kill\ the\ process\ which\ name\ consist\ of\ just\ one\ dot.=Once the progress bar closes, an installation complete window should appear but in case it does not you should kill the process which name consist of just one dot. - -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -834,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -843,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -876,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -886,141 +955,156 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:50 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:32 +#: Engines/Wine/Engine/Implementation/script.js:520 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:522 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:41 +#: Engines/Wine/Verbs/msxml6/script.js:54 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1060,6 +1144,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1079,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 -Registering\ {0}...=Registering {0}... - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=Registry Editor @@ -1091,7 +1175,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1106,7 +1190,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1199,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1137,8 +1224,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1172,11 +1258,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1210,9 +1295,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1222,120 +1319,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1348,7 +1447,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1369,6 +1468,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1461,8 +1563,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1477,7 +1579,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1486,6 +1588,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1501,25 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1547,8 +1655,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1587,14 +1694,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1603,6 +1713,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:42 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1612,10 +1732,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1624,7 +1747,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1648,17 +1771,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1697,6 +1820,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1706,9 +1832,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1741,6 +1873,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:44 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1759,6 +1894,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1786,13 +1924,19 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -1817,12 +1961,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1838,10 +1991,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1868,9 +2021,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1904,10 +2054,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1916,11 +2070,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_ja.properties b/i18n/Messages_ja.properties index 922b0a283f..15089d6a4e 100644 --- a/i18n/Messages_ja.properties +++ b/i18n/Messages_ja.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:492 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:44 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:220 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:251 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:49 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:321 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installing {0}... #: i18n/tmp/Applications/Internet/category.js:1 @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,46 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -831,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -840,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -873,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -883,141 +955,156 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:50 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:36 +#: Engines/Wine/Engine/Implementation/script.js:520 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:27 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:522 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:41 +#: Engines/Wine/Verbs/msxml6/script.js:54 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1057,6 +1144,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1076,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 -Registering\ {0}...=Registering {0}... - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=Registry Editor @@ -1088,7 +1175,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1103,7 +1190,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1112,6 +1199,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1134,8 +1224,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1169,11 +1258,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1207,9 +1295,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1219,120 +1319,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1345,7 +1447,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1366,6 +1468,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1458,8 +1563,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1474,7 +1579,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1483,6 +1588,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1498,25 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1544,8 +1655,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1584,14 +1694,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1600,6 +1713,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:42 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1609,10 +1732,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1621,7 +1747,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1645,17 +1771,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1694,6 +1820,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1703,9 +1832,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1738,6 +1873,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:44 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1756,6 +1894,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1783,13 +1924,19 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -1814,12 +1961,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1835,10 +1991,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1865,9 +2021,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1901,10 +2054,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1913,11 +2070,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_ko.properties b/i18n/Messages_ko.properties index c30ab8da12..15089d6a4e 100644 --- a/i18n/Messages_ko.properties +++ b/i18n/Messages_ko.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:492 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:44 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:220 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:251 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:49 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:321 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installing {0}... #: i18n/tmp/Applications/Internet/category.js:1 @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: Applications/Games/Space Colony/Local/script.js:17 -Once\ the\ progress\ bar\ closes,\ an\ installation\ complete\ window\ should\ appear\ but\ in\ case\ it\ does\ not\ you\ should\ kill\ the\ process\ which\ name\ consist\ of\ just\ one\ dot.=Once the progress bar closes, an installation complete window should appear but in case it does not you should kill the process which name consist of just one dot. - -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -834,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -843,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -876,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -886,141 +955,156 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:50 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:32 +#: Engines/Wine/Engine/Implementation/script.js:520 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:522 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:41 +#: Engines/Wine/Verbs/msxml6/script.js:54 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1060,6 +1144,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1079,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 -Registering\ {0}...=Registering {0}... - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=Registry Editor @@ -1091,7 +1175,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1106,7 +1190,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1199,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1137,8 +1224,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1172,11 +1258,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1210,9 +1295,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1222,120 +1319,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1348,7 +1447,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1369,6 +1468,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1461,8 +1563,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1477,7 +1579,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1486,6 +1588,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1501,25 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1547,8 +1655,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1587,14 +1694,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1603,6 +1713,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:42 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1612,10 +1732,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1624,7 +1747,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1648,17 +1771,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1697,6 +1820,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1706,9 +1832,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1741,6 +1873,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:44 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1759,6 +1894,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1786,13 +1924,19 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -1817,12 +1961,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1838,10 +1991,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1868,9 +2021,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1904,10 +2054,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1916,11 +2070,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_nl.properties b/i18n/Messages_nl.properties index c30ab8da12..15089d6a4e 100644 --- a/i18n/Messages_nl.properties +++ b/i18n/Messages_nl.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:492 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:44 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:220 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:251 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:49 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:321 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installing {0}... #: i18n/tmp/Applications/Internet/category.js:1 @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: Applications/Games/Space Colony/Local/script.js:17 -Once\ the\ progress\ bar\ closes,\ an\ installation\ complete\ window\ should\ appear\ but\ in\ case\ it\ does\ not\ you\ should\ kill\ the\ process\ which\ name\ consist\ of\ just\ one\ dot.=Once the progress bar closes, an installation complete window should appear but in case it does not you should kill the process which name consist of just one dot. - -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -834,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -843,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -876,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -886,141 +955,156 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:50 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:32 +#: Engines/Wine/Engine/Implementation/script.js:520 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:522 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:41 +#: Engines/Wine/Verbs/msxml6/script.js:54 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1060,6 +1144,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1079,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 -Registering\ {0}...=Registering {0}... - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=Registry Editor @@ -1091,7 +1175,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1106,7 +1190,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1199,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1137,8 +1224,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1172,11 +1258,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1210,9 +1295,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1222,120 +1319,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1348,7 +1447,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1369,6 +1468,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1461,8 +1563,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1477,7 +1579,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1486,6 +1588,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1501,25 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1547,8 +1655,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1587,14 +1694,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1603,6 +1713,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:42 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1612,10 +1732,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1624,7 +1747,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1648,17 +1771,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1697,6 +1820,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1706,9 +1832,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1741,6 +1873,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:44 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1759,6 +1894,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1786,13 +1924,19 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -1817,12 +1961,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1838,10 +1991,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1868,9 +2021,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1904,10 +2054,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1916,11 +2070,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_no.properties b/i18n/Messages_no.properties index 922b0a283f..15089d6a4e 100644 --- a/i18n/Messages_no.properties +++ b/i18n/Messages_no.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:492 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:44 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:220 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:251 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:49 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:321 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installing {0}... #: i18n/tmp/Applications/Internet/category.js:1 @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,46 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -831,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -840,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -873,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -883,141 +955,156 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:50 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:36 +#: Engines/Wine/Engine/Implementation/script.js:520 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:27 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:522 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:41 +#: Engines/Wine/Verbs/msxml6/script.js:54 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1057,6 +1144,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1076,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 -Registering\ {0}...=Registering {0}... - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=Registry Editor @@ -1088,7 +1175,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1103,7 +1190,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1112,6 +1199,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1134,8 +1224,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1169,11 +1258,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1207,9 +1295,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1219,120 +1319,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1345,7 +1447,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1366,6 +1468,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1458,8 +1563,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1474,7 +1579,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1483,6 +1588,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1498,25 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1544,8 +1655,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1584,14 +1694,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1600,6 +1713,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:42 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1609,10 +1732,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1621,7 +1747,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1645,17 +1771,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1694,6 +1820,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1703,9 +1832,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1738,6 +1873,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:44 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1756,6 +1894,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1783,13 +1924,19 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -1814,12 +1961,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1835,10 +1991,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1865,9 +2021,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1901,10 +2054,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1913,11 +2070,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_pl.properties b/i18n/Messages_pl.properties index c30ab8da12..15089d6a4e 100644 --- a/i18n/Messages_pl.properties +++ b/i18n/Messages_pl.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:492 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:44 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:220 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:251 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:49 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:321 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installing {0}... #: i18n/tmp/Applications/Internet/category.js:1 @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: Applications/Games/Space Colony/Local/script.js:17 -Once\ the\ progress\ bar\ closes,\ an\ installation\ complete\ window\ should\ appear\ but\ in\ case\ it\ does\ not\ you\ should\ kill\ the\ process\ which\ name\ consist\ of\ just\ one\ dot.=Once the progress bar closes, an installation complete window should appear but in case it does not you should kill the process which name consist of just one dot. - -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -834,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -843,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -876,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -886,141 +955,156 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:50 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:32 +#: Engines/Wine/Engine/Implementation/script.js:520 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:522 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:41 +#: Engines/Wine/Verbs/msxml6/script.js:54 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1060,6 +1144,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1079,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 -Registering\ {0}...=Registering {0}... - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=Registry Editor @@ -1091,7 +1175,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1106,7 +1190,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1199,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1137,8 +1224,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1172,11 +1258,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1210,9 +1295,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1222,120 +1319,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1348,7 +1447,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1369,6 +1468,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1461,8 +1563,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1477,7 +1579,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1486,6 +1588,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1501,25 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1547,8 +1655,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1587,14 +1694,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1603,6 +1713,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:42 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1612,10 +1732,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1624,7 +1747,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1648,17 +1771,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1697,6 +1820,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1706,9 +1832,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1741,6 +1873,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:44 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1759,6 +1894,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1786,13 +1924,19 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -1817,12 +1961,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1838,10 +1991,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1868,9 +2021,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1904,10 +2054,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1916,11 +2070,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_pt.properties b/i18n/Messages_pt.properties index 922b0a283f..15089d6a4e 100644 --- a/i18n/Messages_pt.properties +++ b/i18n/Messages_pt.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:492 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:44 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:220 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:251 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:49 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:321 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installing {0}... #: i18n/tmp/Applications/Internet/category.js:1 @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,46 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -831,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -840,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -873,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -883,141 +955,156 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:50 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:36 +#: Engines/Wine/Engine/Implementation/script.js:520 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:27 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:522 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:41 +#: Engines/Wine/Verbs/msxml6/script.js:54 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1057,6 +1144,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1076,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 -Registering\ {0}...=Registering {0}... - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=Registry Editor @@ -1088,7 +1175,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1103,7 +1190,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1112,6 +1199,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1134,8 +1224,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1169,11 +1258,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1207,9 +1295,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1219,120 +1319,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1345,7 +1447,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1366,6 +1468,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1458,8 +1563,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1474,7 +1579,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1483,6 +1588,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1498,25 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1544,8 +1655,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1584,14 +1694,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1600,6 +1713,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:42 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1609,10 +1732,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1621,7 +1747,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1645,17 +1771,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1694,6 +1820,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1703,9 +1832,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1738,6 +1873,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:44 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1756,6 +1894,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1783,13 +1924,19 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -1814,12 +1961,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1835,10 +1991,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1865,9 +2021,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1901,10 +2054,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1913,11 +2070,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_ro.properties b/i18n/Messages_ro.properties index 922b0a283f..15089d6a4e 100644 --- a/i18n/Messages_ro.properties +++ b/i18n/Messages_ro.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:492 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:44 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:220 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:251 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:49 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:321 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installing {0}... #: i18n/tmp/Applications/Internet/category.js:1 @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,46 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -831,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -840,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -873,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -883,141 +955,156 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:50 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:36 +#: Engines/Wine/Engine/Implementation/script.js:520 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:27 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:522 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:41 +#: Engines/Wine/Verbs/msxml6/script.js:54 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1057,6 +1144,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1076,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 -Registering\ {0}...=Registering {0}... - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=Registry Editor @@ -1088,7 +1175,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1103,7 +1190,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1112,6 +1199,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1134,8 +1224,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1169,11 +1258,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1207,9 +1295,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1219,120 +1319,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1345,7 +1447,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1366,6 +1468,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1458,8 +1563,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1474,7 +1579,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1483,6 +1588,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1498,25 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1544,8 +1655,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1584,14 +1694,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1600,6 +1713,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:42 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1609,10 +1732,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1621,7 +1747,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1645,17 +1771,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1694,6 +1820,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1703,9 +1832,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1738,6 +1873,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:44 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1756,6 +1894,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1783,13 +1924,19 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -1814,12 +1961,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1835,10 +1991,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1865,9 +2021,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1901,10 +2054,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1913,11 +2070,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_ru.properties b/i18n/Messages_ru.properties index 922b0a283f..15089d6a4e 100644 --- a/i18n/Messages_ru.properties +++ b/i18n/Messages_ru.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:492 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:44 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:220 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:251 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:49 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:321 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installing {0}... #: i18n/tmp/Applications/Internet/category.js:1 @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,46 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -831,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -840,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -873,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -883,141 +955,156 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:50 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:36 +#: Engines/Wine/Engine/Implementation/script.js:520 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:27 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:522 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:41 +#: Engines/Wine/Verbs/msxml6/script.js:54 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1057,6 +1144,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1076,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 -Registering\ {0}...=Registering {0}... - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=Registry Editor @@ -1088,7 +1175,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1103,7 +1190,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1112,6 +1199,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1134,8 +1224,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1169,11 +1258,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1207,9 +1295,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1219,120 +1319,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1345,7 +1447,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1366,6 +1468,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1458,8 +1563,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1474,7 +1579,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1483,6 +1588,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1498,25 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1544,8 +1655,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1584,14 +1694,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1600,6 +1713,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:42 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1609,10 +1732,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1621,7 +1747,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1645,17 +1771,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1694,6 +1820,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1703,9 +1832,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1738,6 +1873,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:44 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1756,6 +1894,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1783,13 +1924,19 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -1814,12 +1961,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1835,10 +1991,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1865,9 +2021,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1901,10 +2054,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1913,11 +2070,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_sk.properties b/i18n/Messages_sk.properties index 922b0a283f..15089d6a4e 100644 --- a/i18n/Messages_sk.properties +++ b/i18n/Messages_sk.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:492 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:44 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:220 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:251 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:49 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:321 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installing {0}... #: i18n/tmp/Applications/Internet/category.js:1 @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,46 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -831,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -840,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -873,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -883,141 +955,156 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:50 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:36 +#: Engines/Wine/Engine/Implementation/script.js:520 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:27 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:522 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:41 +#: Engines/Wine/Verbs/msxml6/script.js:54 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1057,6 +1144,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1076,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 -Registering\ {0}...=Registering {0}... - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=Registry Editor @@ -1088,7 +1175,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1103,7 +1190,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1112,6 +1199,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1134,8 +1224,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1169,11 +1258,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1207,9 +1295,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1219,120 +1319,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1345,7 +1447,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1366,6 +1468,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1458,8 +1563,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1474,7 +1579,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1483,6 +1588,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1498,25 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1544,8 +1655,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1584,14 +1694,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1600,6 +1713,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:42 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1609,10 +1732,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1621,7 +1747,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1645,17 +1771,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1694,6 +1820,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1703,9 +1832,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1738,6 +1873,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:44 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1756,6 +1894,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1783,13 +1924,19 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -1814,12 +1961,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1835,10 +1991,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1865,9 +2021,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1901,10 +2054,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1913,11 +2070,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_sr.properties b/i18n/Messages_sr.properties index 922b0a283f..15089d6a4e 100644 --- a/i18n/Messages_sr.properties +++ b/i18n/Messages_sr.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:492 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:44 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:220 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:251 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:49 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:321 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installing {0}... #: i18n/tmp/Applications/Internet/category.js:1 @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,46 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -831,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -840,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -873,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -883,141 +955,156 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:50 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:36 +#: Engines/Wine/Engine/Implementation/script.js:520 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:27 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:522 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:41 +#: Engines/Wine/Verbs/msxml6/script.js:54 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1057,6 +1144,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1076,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 -Registering\ {0}...=Registering {0}... - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=Registry Editor @@ -1088,7 +1175,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1103,7 +1190,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1112,6 +1199,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1134,8 +1224,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1169,11 +1258,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1207,9 +1295,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1219,120 +1319,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1345,7 +1447,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1366,6 +1468,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1458,8 +1563,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1474,7 +1579,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1483,6 +1588,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1498,25 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1544,8 +1655,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1584,14 +1694,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1600,6 +1713,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:42 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1609,10 +1732,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1621,7 +1747,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1645,17 +1771,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1694,6 +1820,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1703,9 +1832,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1738,6 +1873,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:44 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1756,6 +1894,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1783,13 +1924,19 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -1814,12 +1961,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1835,10 +1991,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1865,9 +2021,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1901,10 +2054,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1913,11 +2070,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_sv.properties b/i18n/Messages_sv.properties index 922b0a283f..15089d6a4e 100644 --- a/i18n/Messages_sv.properties +++ b/i18n/Messages_sv.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:492 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:44 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:220 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:251 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:49 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:321 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installing {0}... #: i18n/tmp/Applications/Internet/category.js:1 @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,46 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -831,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -840,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -873,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -883,141 +955,156 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:50 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:36 +#: Engines/Wine/Engine/Implementation/script.js:520 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:27 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:522 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:41 +#: Engines/Wine/Verbs/msxml6/script.js:54 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1057,6 +1144,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1076,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 -Registering\ {0}...=Registering {0}... - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=Registry Editor @@ -1088,7 +1175,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1103,7 +1190,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1112,6 +1199,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1134,8 +1224,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1169,11 +1258,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1207,9 +1295,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1219,120 +1319,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1345,7 +1447,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1366,6 +1468,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1458,8 +1563,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1474,7 +1579,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1483,6 +1588,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1498,25 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1544,8 +1655,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1584,14 +1694,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1600,6 +1713,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:42 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1609,10 +1732,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1621,7 +1747,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1645,17 +1771,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1694,6 +1820,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1703,9 +1832,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1738,6 +1873,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:44 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1756,6 +1894,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1783,13 +1924,19 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -1814,12 +1961,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1835,10 +1991,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1865,9 +2021,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1901,10 +2054,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1913,11 +2070,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_tr.properties b/i18n/Messages_tr.properties index 922b0a283f..15089d6a4e 100644 --- a/i18n/Messages_tr.properties +++ b/i18n/Messages_tr.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:492 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:44 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:220 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:251 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:49 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:321 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installing {0}... #: i18n/tmp/Applications/Internet/category.js:1 @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,46 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -831,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -840,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -873,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -883,141 +955,156 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:50 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:36 +#: Engines/Wine/Engine/Implementation/script.js:520 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:27 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:522 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:41 +#: Engines/Wine/Verbs/msxml6/script.js:54 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1057,6 +1144,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1076,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 -Registering\ {0}...=Registering {0}... - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=Registry Editor @@ -1088,7 +1175,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1103,7 +1190,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1112,6 +1199,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1134,8 +1224,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1169,11 +1258,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1207,9 +1295,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1219,120 +1319,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1345,7 +1447,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1366,6 +1468,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1458,8 +1563,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1474,7 +1579,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1483,6 +1588,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1498,25 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1544,8 +1655,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1584,14 +1694,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1600,6 +1713,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:42 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1609,10 +1732,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1621,7 +1747,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1645,17 +1771,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1694,6 +1820,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1703,9 +1832,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1738,6 +1873,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:44 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1756,6 +1894,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1783,13 +1924,19 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -1814,12 +1961,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1835,10 +1991,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1865,9 +2021,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1901,10 +2054,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1913,11 +2070,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_uk.properties b/i18n/Messages_uk.properties index c30ab8da12..15089d6a4e 100644 --- a/i18n/Messages_uk.properties +++ b/i18n/Messages_uk.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:492 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:44 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:220 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:251 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:49 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:321 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installing {0}... #: i18n/tmp/Applications/Internet/category.js:1 @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,49 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: Applications/Games/Space Colony/Local/script.js:17 -Once\ the\ progress\ bar\ closes,\ an\ installation\ complete\ window\ should\ appear\ but\ in\ case\ it\ does\ not\ you\ should\ kill\ the\ process\ which\ name\ consist\ of\ just\ one\ dot.=Once the progress bar closes, an installation complete window should appear but in case it does not you should kill the process which name consist of just one dot. - -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -834,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -843,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -876,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -886,141 +955,156 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:50 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:32 +#: Engines/Wine/Engine/Implementation/script.js:520 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:522 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:41 +#: Engines/Wine/Verbs/msxml6/script.js:54 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1060,6 +1144,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1079,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 -Registering\ {0}...=Registering {0}... - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=Registry Editor @@ -1091,7 +1175,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1106,7 +1190,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1115,6 +1199,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1137,8 +1224,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1172,11 +1258,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1210,9 +1295,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1222,120 +1319,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1348,7 +1447,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1369,6 +1468,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1461,8 +1563,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1477,7 +1579,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1486,6 +1588,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1501,25 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1547,8 +1655,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1587,14 +1694,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1603,6 +1713,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:42 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1612,10 +1732,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1624,7 +1747,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1648,17 +1771,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1697,6 +1820,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1706,9 +1832,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1741,6 +1873,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:44 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1759,6 +1894,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1786,13 +1924,19 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -1817,12 +1961,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1838,10 +1991,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1868,9 +2021,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1904,10 +2054,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1916,11 +2070,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_vi.properties b/i18n/Messages_vi.properties index 922b0a283f..288aae0e75 100644 --- a/i18n/Messages_vi.properties +++ b/i18n/Messages_vi.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:403 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:484 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:21 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:21 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:45 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:214 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:124 +#: Engines/Wine/Engine/Implementation/script.js:155 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:245 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:25 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:30 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -418,27 +457,26 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). #: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 +#: Engines/Wine/Verbs/d3dx10/script.js:17 +#: Engines/Wine/Verbs/d3dx10/script.js:39 #: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx11/script.js:17 +#: Engines/Wine/Verbs/d3dx11/script.js:40 Engines/Wine/Verbs/xact/script.js:17 +#: Engines/Wine/Verbs/xact/script.js:19 Engines/Wine/Verbs/xact/script.js:55 +#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:17 +#: Engines/Wine/Verbs/d3dx9/script.js:39 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:313 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:23 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,11 +661,11 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:61 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:303 +#: 6.0/Online/script.js:149 Engines/Wine/Verbs/corefonts/script.js:87 #: Engines/Wine/Verbs/corefonts/script.js:91 Installing\ {0}...=Installing {0}... @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,46 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:14 2/Local/script.js:15 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -831,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -840,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -873,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -883,141 +955,160 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:24 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:24 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:21 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:16 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:42 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:58 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:36 +#: Engines/Wine/Engine/Implementation/script.js:512 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:91 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:27 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:514 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:114 Engines/Wine/Verbs/FAudio/script.js:71 +#: Engines/Wine/Verbs/gallium9/script.js:92 Engines/Wine/Verbs/VK9/script.js:90 +#: Engines/Wine/Verbs/D9VK/script.js:87 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:37 +#: Engines/Wine/Verbs/vcrun2012/script.js:20 +#: Engines/Wine/Verbs/vcrun2012/script.js:31 +#: Engines/Wine/Verbs/vcrun2003/script.js:20 +#: Engines/Wine/Verbs/d3drm/script.js:21 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:37 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:53 +#: Engines/Wine/Verbs/msxml3/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:20 +#: Engines/Wine/Verbs/vcrun2013/script.js:31 +#: Engines/Wine/Verbs/dotnet462/script.js:37 +#: Engines/Wine/Verbs/vcrun2017/script.js:20 +#: Engines/Wine/Verbs/vcrun2017/script.js:31 +#: Engines/Wine/Verbs/dotnet46/script.js:36 +#: Engines/Wine/Verbs/vcrun2005/script.js:19 +#: Engines/Wine/Verbs/dotnet452/script.js:37 +#: Engines/Wine/Verbs/amstream/script.js:23 +#: Engines/Wine/Verbs/amstream/script.js:42 +#: Engines/Wine/Verbs/devenum/script.js:22 +#: Engines/Wine/Verbs/dotnet461/script.js:37 +#: Engines/Wine/Verbs/vcrun2015/script.js:20 +#: Engines/Wine/Verbs/vcrun2015/script.js:31 +#: Engines/Wine/Verbs/dotnet40/script.js:37 +#: Engines/Wine/Verbs/vcrun2010/script.js:20 +#: Engines/Wine/Verbs/vcrun2010/script.js:31 +#: Engines/Wine/Verbs/dotnet45/script.js:37 +#: Engines/Wine/Verbs/vcrun6sp6/script.js:32 +#: Engines/Wine/Verbs/msxml6/script.js:37 +#: Engines/Wine/Verbs/msxml6/script.js:40 +#: Engines/Wine/Verbs/gdiplus/script.js:20 +#: Engines/Wine/Verbs/vcrun2008/script.js:20 +#: Engines/Wine/Verbs/vcrun2008/script.js:31 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:17 Engines/Wine/Verbs/PhysX/script.js:19 +#: Engines/Wine/Verbs/dotnet20/script.js:29 +#: Engines/Wine/Verbs/dotnet20/script.js:48 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:145 +#: Engines/Wine/Verbs/dotnet472/script.js:40 Engines/Wine/Verbs/Remove +#: Mono/script.js:13 Mono/script.js:16 Mono/script.js:19 +#: Engines/Wine/Verbs/dotnet462/script.js:40 +#: Engines/Wine/Verbs/dotnet46/script.js:39 +#: Engines/Wine/Verbs/d3dx10/script.js:38 +#: Engines/Wine/Verbs/dotnet452/script.js:40 +#: Engines/Wine/Verbs/dotnet461/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:47 +#: Engines/Wine/Verbs/dotnet45/script.js:40 +#: Engines/Wine/Verbs/d3dx11/script.js:39 +#: Engines/Wine/Verbs/corefonts/script.js:86 +#: Engines/Wine/Verbs/xact/script.js:54 Engines/Wine/Verbs/d3dx9/script.js:38 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:38 Script/script.js:64 Engines/Wine/QuickScript/Installer +#: Script/script.js:84 Script/script.js:100 Engines/Wine/QuickScript/Origin +#: Script/script.js:52 Script/script.js:57 Script/script.js:65 +#: Engines/Wine/QuickScript/Uplay Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1057,6 +1148,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1076,7 +1170,7 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:34 Engines/Wine/Verbs/xact/script.js:36 Registering\ {0}...=Registering {0}... #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 @@ -1088,7 +1182,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1103,7 +1197,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1112,6 +1206,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1134,8 +1231,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1169,11 +1265,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:34 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1207,9 +1302,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1219,120 +1326,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1345,7 +1454,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1366,6 +1475,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1458,8 +1570,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1474,7 +1586,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1483,6 +1595,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1501,22 +1616,25 @@ The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ the #: Applications/Games/Lego Rock Raiders/Local/script.js:28 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:17 +#: Engines/Wine/Verbs/dotnet472/script.js:65 +#: Engines/Wine/Verbs/dotnet462/script.js:17 +#: Engines/Wine/Verbs/dotnet462/script.js:65 +#: Engines/Wine/Verbs/dotnet46/script.js:16 +#: Engines/Wine/Verbs/dotnet46/script.js:64 +#: Engines/Wine/Verbs/dotnet452/script.js:17 +#: Engines/Wine/Verbs/dotnet452/script.js:69 +#: Engines/Wine/Verbs/dotnet461/script.js:17 +#: Engines/Wine/Verbs/dotnet461/script.js:65 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:17 +#: Engines/Wine/Verbs/dotnet40/script.js:79 +#: Engines/Wine/Verbs/dotnet45/script.js:16 +#: Engines/Wine/Verbs/dotnet45/script.js:70 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1544,8 +1662,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1584,14 +1701,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1600,6 +1720,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:22 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1609,10 +1739,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:19 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1621,7 +1754,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1645,17 +1778,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:46 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:23 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:79 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1694,6 +1827,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1703,9 +1839,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1738,6 +1880,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:24 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1756,6 +1901,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1783,10 +1931,13 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 +#: Engines/Wine/Verbs/corefonts/script.js:87 #: Engines/Wine/Verbs/corefonts/script.js:91 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus @@ -1814,12 +1965,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1835,10 +1995,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1865,9 +2025,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1901,10 +2058,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1913,11 +2074,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet45/script.js:50 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. - diff --git a/i18n/Messages_zh.properties b/i18n/Messages_zh.properties index 922b0a283f..15089d6a4e 100644 --- a/i18n/Messages_zh.properties +++ b/i18n/Messages_zh.properties @@ -8,6 +8,9 @@ #: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1 .NET\ 2.0=.NET 2.0 +#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1 +.NET\ 2.0\ SP2=.NET 2.0 SP2 + #: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1 .NET\ 4.0=.NET 4.0 @@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2 A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower? +#: i18n/tmp/Applications/Games/RimWorld/application.js:2 +A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld. + #: i18n/tmp/Applications/Games/Far Cry/application.js:2 A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.

Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.

With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.

Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.

Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.

With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.

Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda. @@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f #: Collection/application.js:1 Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection -#: Engines/Wine/Settings/always offscreen/script.js:12 +#: Engines/Wine/Settings/always offscreen/script.js:17 Always\ offscreen=Always offscreen #: i18n/tmp/Applications/Games/Prince of Persia: The Sands @@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:1 Audiosurf=Audiosurf +#: Engines/Wine/Settings/Font smoothing/script.js:12 +BGR=BGR + #: i18n/tmp/Applications/Games/BRINK/application.js:1 BRINK=BRINK -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 Backbuffer=Backbuffer #: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2 @@ -211,6 +220,9 @@ Braid=Braid #: i18n/tmp/Applications/Games/Braid/application.js:2 Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess. +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2 +Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\! + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:1 Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box @@ -227,10 +239,13 @@ Call\ of\ Juarez®\ Gunslinger=Call of Juarez\u00ae Gunslinger #: i18n/tmp/Applications/Games/Mount & Blade/application.js:2 Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior. -#: Engines/Wine/Engine/Implementation/script.js:214 +#: Engines/Wine/Engine/Implementation/script.js:411 Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix. -#: Utils/Functions/Filesystem/Files/script.js:172 +#: Engines/Wine/Engine/Implementation/script.js:492 +Change\ {0}\ container\ Wine\ version=Change {0} container Wine version + +#: Utils/Functions/Filesystem/Files/script.js:215 Checking\ file\ consistency...=Checking file consistency... #: i18n/tmp/Applications/Games/ChromaGun/application.js:1 @@ -265,10 +280,10 @@ Configure\ Wine=Configure Wine #: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1 Consortium\:\ The\ Tower=Consortium\: The Tower -#: Engines/Wine/Plugins/native application/script.js:28 +#: Engines/Wine/Plugins/native application/script.js:29 Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}" -#: Engines/Wine/Engine/Object/script.js:195 +#: Engines/Wine/Engine/Object/script.js:190 Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\! #: i18n/tmp/Applications/Games/Crayon Physics/application.js:1 @@ -283,6 +298,12 @@ Custom=Custom #: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1 Custom\ Installer\ Script=Custom Installer Script +#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1 +D9VK=D9VK + +#: Engines/Wine/Verbs/D9VK/script.js:44 +D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement + #: i18n/tmp/Applications/Games/DC Universe Online/application.js:1 DC\ Universe\ Online=DC Universe Online @@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE #: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1 DXVK=DXVK -#: Engines/Wine/Verbs/DXVK/script.js:17 +#: Engines/Wine/Verbs/DXVK/script.js:45 DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8 -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 -#: Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/offscreen rendering +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 +#: Engines/Wine/Settings/video memory size/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 +#: Engines/Wine/Settings/always offscreen/script.js:11 +#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Default=Default #: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2 @@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s #: i18n/tmp/Applications/Development/category.js:1 Development=Development -#: Engines/Wine/Settings/DirectDraw renderer/script.js:12 -#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1 -#: i18n/tmp/Engines/Wine/Plugins/DirectDraw +#: Engines/Wine/Settings/DirectDraw renderer/script.js:17 +#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/DirectDraw DirectDraw\ renderer=DirectDraw renderer -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/render target lock mode/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/render target lock +#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11 Disabled=Disabled -#: Engines/Wine/QuickScript/Origin Script/script.js:50 +#: Engines/Wine/QuickScript/Origin Script/script.js:46 Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed #: i18n/tmp/Utils/Functions/Net/Download/script.js:1 Downloader=Downloader +#: Engines/Wine/Engine/Implementation/script.js:220 +Downloading\ amd64\ runtime...=Downloading amd64 runtime... + +#: Engines/Wine/Engine/Implementation/script.js:130 +#: Engines/Wine/Engine/Implementation/script.js:161 +Downloading\ runtime\ json...=Downloading runtime json... + +#: Engines/Wine/Engine/Implementation/script.js:251 +Downloading\ x86\ runtime...=Downloading x86 runtime... + #: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed #: Emerald: A Whirlwind Heist/application.js:1 Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist @@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2 #: i18n/tmp/Applications/Games/Druid Soccer/application.js:1 Druid\ Soccer=Druid Soccer -#: Applications/Games/Subnautica/Steam/script.js:28 +#: Applications/Games/Space Engineers/Steam/script.js:49 +Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreating,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreating, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048. + +#: Applications/Games/Subnautica/Steam/script.js:32 Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed). -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:1 Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow #: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1 @@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E #: i18n/tmp/Applications/Games/Total War Rome II/application.js:2 Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.

In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.

In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners. -#: Engines/Wine/Settings/always offscreen/script.js:8 -#: Engines/Wine/Settings/multisampling/script.js:8 -#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw -#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8 -#: Engines/Wine/Settings/hdpi/script.js:8 +#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp +#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always +#: offscreen/script.js:11 Engines/Wine/Settings/strict draw +#: ordering/script.js:11 Enabled=Enabled #: i18n/tmp/Applications/Games/Enderal/application.js:1 @@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio #: i18n/tmp/Applications/Games/Tropico 3/application.js:2 Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1 +Enterprise\ Architect=Enterprise Architect + #: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1 Epic\ Games\ Launcher=Epic Games Launcher -#: Utils/Functions/Net/Download/script.js:137 +#: Utils/Functions/Net/Download/script.js:155 Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2} #: i18n/tmp/Applications/Games/Ether One Redux/application.js:1 @@ -408,7 +447,7 @@ Europa\ Universalis\ IV=Europa Universalis IV #: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2 Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get. -#: Engines/Wine/Shortcuts/Wine/script.js:120 +#: Engines/Wine/Shortcuts/Wine/script.js:153 Executable\ {0}\ not\ found\!=Executable {0} not found\! #: i18n/tmp/Applications/Games/Rayman Origins/application.js:2 @@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t #: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2 Experience\ what\ it’s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.

Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.

Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack). -#: Engines/Wine/Verbs/d3dx10/script.js:15 -#: Engines/Wine/Verbs/d3dx10/script.js:16 -#: Engines/Wine/Verbs/d3dx10/script.js:36 -#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16 -#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16 -#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51 -#: Engines/Wine/Verbs/d3dx11/script.js:15 -#: Engines/Wine/Verbs/d3dx11/script.js:16 -#: Engines/Wine/Verbs/d3dx11/script.js:37 +#: Engines/Wine/Verbs/d3dx10/script.js:31 +#: Engines/Wine/Verbs/d3dx10/script.js:33 +#: Engines/Wine/Verbs/d3dx10/script.js:62 +#: Engines/Wine/Verbs/d3dx11/script.js:31 +#: Engines/Wine/Verbs/d3dx11/script.js:33 +#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34 +#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85 +#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33 +#: Engines/Wine/Verbs/d3dx9/script.js:62 Extracting\ {0}...=Extracting {0}... #: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2 Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation. -#: Engines/Wine/Settings/offscreen rendering mode/script.js:8 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:11 FBO=FBO #: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2 FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!

DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!

DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\! -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:2 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2 Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass. #: i18n/tmp/Applications/Games/Far Cry/application.js:1 @@ -453,6 +491,9 @@ Far\ Cry®\ 2=Far Cry\u00ae 2 #: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2 Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world. +#: Engines/Wine/Engine/Implementation/script.js:321 +Fetching\ available\ Wine\ versions...=Fetching available Wine versions... + #: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1 File\ Extractors=File Extractors @@ -474,14 +515,20 @@ FlatOut=FlatOut #: i18n/tmp/Applications/Games/FlatOut/application.js:2 FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\! +#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/Font +Font\ smoothing=Font smoothing + +#: Engines/Wine/Settings/Font smoothing/script.js:16 +Fonts\ Smoothing=Fonts Smoothing + #: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2 For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth. -#: Engines/Wine/Settings/mouse warp override/script.js:8 +#: Engines/Wine/Settings/mouse warp override/script.js:11 Force=Force -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:2 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:2 Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker. #: i18n/tmp/Applications/Games/Spore/application.js:2 @@ -493,14 +540,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua #: i18n/tmp/Utils/Functions/category.js:1 Functions=Functions -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 GDI=GDI -#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 #: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1 +#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1 GLSL=GLSL -#: Engines/Wine/Settings/GLSL/script.js:12 +#: Engines/Wine/Settings/GLSL/script.js:17 GLSL\ support=GLSL support #: i18n/tmp/Applications/Games/XIII/GOG/script.js:1 @@ -525,6 +572,9 @@ Goodbye\ Deponia=Goodbye Deponia #: i18n/tmp/Applications/Graphics/category.js:1 Graphics=Graphics +#: Engines/Wine/Settings/Font smoothing/script.js:12 +Gray\ Scale=Gray Scale + #: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1 Guild\ Wars\ 2=Guild Wars 2 @@ -571,10 +621,10 @@ Icy\ Tower\ 1.5=Icy Tower 1.5 #: i18n/tmp/Applications/Games/Icy Tower/application.js:2 Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen. -#: Applications/Games/Total War Rome II/Steam/script.js:21 +#: Applications/Games/Total War Rome II/Steam/script.js:24 If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt -#: Applications/Games/Mass Effect 2/Origin/script.js:15 +#: Applications/Games/Mass Effect 2/Origin/script.js:17 If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files. #: Applications/Games/Mass Effect/Steam/script.js:11 @@ -611,12 +661,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m #: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1 Installer\ Script=Installer Script -#: Engines/Wine/Engine/Implementation/script.js:48 +#: Engines/Wine/Engine/Implementation/script.js:62 Installing\ version\:\ {0}=Installing version\: {0} -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78 -#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:304 +#: 6.0/Online/script.js:148 Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 Installing\ {0}...=Installing {0}... #: i18n/tmp/Applications/Internet/category.js:1 @@ -628,8 +678,8 @@ Internet\ Explorer\ 6.0=Internet Explorer 6.0 #: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1 Internet\ Explorer\ 7.0=Internet Explorer 7.0 -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2 -#: 7.0/application.js:2 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2 +#: 6.0/application.js:2 Internet\ Explorer\ is\ an\ old\ web\ browser.You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.
You may need it if you want to test a website compatibility, you should not use it to navigate. #: i18n/tmp/Utils/Functions/Net/Resource/script.js:1 @@ -669,25 +719,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.

He\ must\ journey\ into\ Italy’s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.

He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order. #: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1 -#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 #: i18n/tmp/Applications/Games/Command and Conquer - Tiberium -#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space -#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil -#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis -#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity -#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock -#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at -#: War Gold Pack/Local/script.js:1 Elder Scrolls IV: -#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel -#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games +#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars +#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity +#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims +#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: i18n/tmp/Applications/Games/18 Wheels of Steel Across +#: America/Local/script.js:1 Sims/Local/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV: +#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno +#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis +#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock +#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space +#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games #: Launcher/Local/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 -#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront -#: i18n/tmp/Applications/Games/Wildlife Park -#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1 -#: 2013/Local/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold +#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil +#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1 +#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront +#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1 +#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise +#: Architect/Local/script.js:1 Local=Local #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local @@ -713,6 +766,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness

Get\ ready\ for\ the\ mind\ blowing\ #: i18n/tmp/Applications/Games/Mafia II/application.js:1 Mafia\ II=Mafia II +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1 +Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena + +#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2 +Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia) + #: i18n/tmp/Applications/Games/Mass Effect/application.js:1 Mass\ Effect=Mass Effect @@ -749,7 +808,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three #: i18n/tmp/Applications/Games/Mount & Blade/application.js:1 Mount\ &\ Blade=Mount & Blade -#: Engines/Wine/Settings/mouse warp override/script.js:12 +#: Engines/Wine/Settings/mouse warp override/script.js:17 Mouse\ warp\ override=Mouse warp override #: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1 @@ -761,7 +820,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co #: i18n/tmp/Applications/Multimedia/category.js:1 Multimedia=Multimedia -#: Engines/Wine/Settings/multisampling/script.js:12 +#: Engines/Wine/Settings/multisampling/script.js:17 Multisampling=Multisampling #: i18n/tmp/Utils/Functions/Net/application.js:1 @@ -773,6 +832,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl #: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1 Niko\:\ Through\ The\ Dream=Niko\: Through The Dream +#: Engines/Wine/Plugins/Font smoothing/script.js:13 +No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\! + #: i18n/tmp/Applications/Development/Notepad++/application.js:1 Notepad++=Notepad++ @@ -782,46 +844,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q #: i18n/tmp/Applications/Office/category.js:1 Office=Office -#: Engines/Wine/Settings/offscreen rendering mode/script.js:12 +#: Engines/Wine/Settings/offscreen rendering mode/script.js:17 Offscreen\ rendering\ mode=Offscreen rendering mode -#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14 +#: Applications/Games/Wildlife Park 2/Steam/script.js:15 2/Local/script.js:16 On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen. -#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1 -#: 7.0/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 -#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 #: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1 -#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 -#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1 -#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 -#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1 -#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 -#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of -#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft -#: III Expansion Set/Online/script.js:1 -#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 -#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 -#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/Online/script.js:1 #: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1 -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft -#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1 -#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 -#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 -#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 -#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1 -#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Magic The Gathering #: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1 +#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1 +#: i18n/tmp/Applications/Games/Xenon +#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1 +#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1 +#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1 #: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1 +#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1 +#: i18n/tmp/Applications/Games/Steam/Online/script.js:1 #: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1 -#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1 +#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1 +#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1 +#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's +#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road +#: Rash/Online/script.js:1 +#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1 +#: i18n/tmp/Applications/Games/Origin/Online/script.js:1 +#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1 +#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1 +#: i18n/tmp/Applications/Games/osu!/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 #: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1 #: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1 -#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1 +#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1 +#: i18n/tmp/Applications/Development/Notepad++/Online/script.js:1 +#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1 +#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1 +#: 6.0/Online/script.js:1 Online=Online #: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online @@ -831,6 +896,10 @@ Online\ (Demo)=Online (Demo) #: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1 Online\ (Legacy)=Online (Legacy) +#: i18n/tmp/Applications/Development/Enterprise Architect/Online +#: (Trial)/script.js:1 +Online\ (Trial)=Online (Trial) + #: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1 Online\ Installer=Online Installer @@ -840,15 +909,15 @@ Online\ Installer\ Script=Online Installer Script #: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1 Open\ a\ terminal=Open a terminal -#: Engines/Wine/Settings/DirectDraw renderer/script.js:8 +#: Engines/Wine/Settings/DirectDraw renderer/script.js:11 OpenGL=OpenGL #: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1 OpenGL_version=OpenGL_version +#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1 #: i18n/tmp/Applications/Games/Spore/Origin/script.js:1 -#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1 #: i18n/tmp/Applications/Games/Origin/application.js:1 Origin=Origin @@ -873,6 +942,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ #: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1 PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist +#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1 +PC\ Building\ Simulator=PC Building Simulator + #: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate #: Box/application.js:2 Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system. @@ -883,141 +955,156 @@ Photofiltre=Photofiltre #: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1 PhysX=PhysX -#: Engines/Wine/QuickScript/Uplay Script/script.js:84 +#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1 +Plain\ Installer=Plain Installer + +#: Engines/Wine/QuickScript/Uplay Script/script.js:85 Please\ close\ Uplay.=Please close Uplay. #: Engines/Wine/QuickScript/Uplay Script/script.js:57 Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue. -#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15 +#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17 Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work. -#: Engines/Wine/Verbs/DXVK/script.js:21 +#: Engines/Wine/Verbs/D9VK/script.js:50 +Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly. + +#: Engines/Wine/Verbs/DXVK/script.js:51 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly. -#: Engines/Wine/Verbs/VK9/script.js:20 +#: Engines/Wine/Verbs/VK9/script.js:48 Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly. -#: Engines/Wine/QuickScript/Installer Script/script.js:23 +#: Engines/Wine/QuickScript/Installer Script/script.js:22 Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application. -#: Engines/Wine/QuickScript/Steam Script/script.js:121 +#: Engines/Wine/QuickScript/Steam Script/script.js:117 Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue. -#: Engines/Wine/Verbs/Uplay/script.js:15 +#: Engines/Wine/Verbs/Uplay/script.js:25 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue. #: Engines/Wine/QuickScript/Uplay Script/script.js:58 Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue. -#: Engines/Wine/QuickScript/GoG Script/script.js:41 +#: Engines/Wine/QuickScript/GoG Script/script.js:44 Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\: -#: Engines/Wine/QuickScript/Zip Script/script.js:45 +#: Engines/Wine/QuickScript/Zip Script/script.js:44 Please\ select\ the\ .zip\ file.=Please select the .zip file. -#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52 +#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64 Please\ select\ the\ SP3\ file.=Please select the SP3 file. -#: Engines/Wine/QuickScript/Online Installer Script/script.js:36 +#: Engines/Wine/Engine/Implementation/script.js:520 +Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine. + +#: Engines/Wine/QuickScript/Online Installer Script/script.js:34 Please\ select\ the\ download\ URL.=Please select the download URL. -#: Engines/Wine/QuickScript/Installer Script/script.js:83 +#: Engines/Wine/QuickScript/Installer Script/script.js:93 Please\ select\ the\ executable.=Please select the executable. -#: Engines/Wine/QuickScript/Local Installer Script/script.js:27 +#: Engines/Wine/QuickScript/Local Installer Script/script.js:25 Please\ select\ the\ installation\ file.=Please select the installation file. #: Applications/Office/ElsterFormular/Online/script.js:11 Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php. -#: Engines/Wine/Verbs/FAudio/script.js:64 -#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80 +#: Engines/Wine/Engine/Implementation/script.js:522 +Please\ select\ the\ version\ of\ wine.=Please select the version of wine. + +#: Engines/Wine/Verbs/DXVK/script.js:166 Engines/Wine/Verbs/FAudio/script.js:81 +#: Engines/Wine/Verbs/VK9/script.js:114 Engines/Wine/Verbs/D9VK/script.js:106 Please\ select\ the\ version.=Please select the version. -#: Engines/Wine/QuickScript/Installer Script/script.js:38 +#: Engines/Wine/QuickScript/Installer Script/script.js:36 Please\ select\ the\ wine\ architecture.=Please select the wine architecture. -#: Engines/Wine/QuickScript/Installer Script/script.js:51 +#: Engines/Wine/QuickScript/Installer Script/script.js:52 Please\ select\ the\ wine\ distribution.=Please select the wine distribution. -#: Engines/Wine/QuickScript/Installer Script/script.js:66 +#: Engines/Wine/QuickScript/Installer Script/script.js:70 Please\ select\ the\ wine\ version.=Please select the wine version. -#: Engines/Wine/QuickScript/Steam Script/script.js:147 +#: Engines/Wine/QuickScript/Steam Script/script.js:151 Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download... -#: Engines/Wine/QuickScript/Uplay Script/script.js:76 +#: Engines/Wine/QuickScript/Uplay Script/script.js:77 Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download... -#: Utils/Functions/Net/Resource/script.js:80 -#: Utils/Functions/Net/Download/script.js:108 +#: Utils/Functions/Net/Resource/script.js:89 +#: Utils/Functions/Net/Download/script.js:119 Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded... -#: Utils/Functions/Filesystem/Extract/script.js:57 -#: Utils/Functions/Filesystem/Extract/script.js:133 +#: Utils/Functions/Filesystem/Extract/script.js:70 +#: Utils/Functions/Filesystem/Extract/script.js:160 Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted... -#: Engines/Wine/Verbs/dotnet46/script.js:34 -#: Engines/Wine/Verbs/vcrun2017/script.js:18 -#: Engines/Wine/Verbs/vcrun2017/script.js:29 -#: Engines/Wine/Verbs/vcrun2015/script.js:18 -#: Engines/Wine/Verbs/vcrun2015/script.js:29 -#: Engines/Wine/Verbs/dotnet40/script.js:35 Engines/Wine/Verbs/QuickTime -#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18 -#: Engines/Wine/Verbs/vcrun2008/script.js:29 -#: Engines/Wine/Verbs/gdiplus/script.js:18 -#: Engines/Wine/Verbs/dotnet472/script.js:35 -#: Engines/Wine/Verbs/devenum/script.js:20 -#: Engines/Wine/Verbs/dotnet20/script.js:28 -#: Engines/Wine/Verbs/dotnet20/script.js:47 -#: Engines/Wine/Verbs/vcrun2012/script.js:18 -#: Engines/Wine/Verbs/vcrun2012/script.js:29 -#: Engines/Wine/Verbs/dotnet461/script.js:35 -#: Engines/Wine/Verbs/vcrun2005/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:18 -#: Engines/Wine/Verbs/vcrun2010/script.js:29 -#: Engines/Wine/Verbs/d3drm/script.js:19 -#: Engines/Wine/Verbs/vcrun2013/script.js:18 -#: Engines/Wine/Verbs/vcrun2013/script.js:29 -#: Engines/Wine/Verbs/amstream/script.js:21 -#: Engines/Wine/Verbs/amstream/script.js:36 -#: Engines/Wine/Verbs/dotnet452/script.js:35 -#: Engines/Wine/Verbs/dotnet45/script.js:36 -#: Engines/Wine/Verbs/PhysX/script.js:17 -#: Engines/Wine/Verbs/vcrun2003/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:35 +#: Engines/Wine/Verbs/dotnet472/script.js:46 +#: Engines/Wine/Verbs/vcrun2012/script.js:28 +#: Engines/Wine/Verbs/vcrun2012/script.js:42 +#: Engines/Wine/Verbs/vcrun2003/script.js:27 +#: Engines/Wine/Verbs/d3drm/script.js:31 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:44 +#: Engines/Wine/Verbs/dotnet20sp2/script.js:61 +#: Engines/Wine/Verbs/vcrun2013/script.js:26 +#: Engines/Wine/Verbs/vcrun2013/script.js:40 +#: Engines/Wine/Verbs/dotnet462/script.js:46 +#: Engines/Wine/Verbs/vcrun2017/script.js:28 +#: Engines/Wine/Verbs/vcrun2017/script.js:42 +#: Engines/Wine/Verbs/dotnet46/script.js:46 +#: Engines/Wine/Verbs/vcrun2005/script.js:26 +#: Engines/Wine/Verbs/dotnet452/script.js:46 +#: Engines/Wine/Verbs/amstream/script.js:33 +#: Engines/Wine/Verbs/amstream/script.js:66 +#: Engines/Wine/Verbs/devenum/script.js:32 +#: Engines/Wine/Verbs/dotnet461/script.js:46 +#: Engines/Wine/Verbs/vcrun2015/script.js:26 +#: Engines/Wine/Verbs/vcrun2015/script.js:40 +#: Engines/Wine/Verbs/dotnet40/script.js:50 +#: Engines/Wine/Verbs/vcrun2010/script.js:26 +#: Engines/Wine/Verbs/vcrun2010/script.js:40 +#: Engines/Wine/Verbs/dotnet45/script.js:54 +#: Engines/Wine/Verbs/msxml6/script.js:41 +#: Engines/Wine/Verbs/msxml6/script.js:54 +#: Engines/Wine/Verbs/vcrun2008/script.js:26 +#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime +#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24 +#: Engines/Wine/Verbs/dotnet20/script.js:36 +#: Engines/Wine/Verbs/dotnet20/script.js:55 Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed... -#: Engines/Wine/Engine/Object/script.js:191 +#: Engines/Wine/Engine/Object/script.js:185 Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled... -#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74 -#: Engines/Wine/Verbs/dotnet46/script.js:37 -#: Engines/Wine/Verbs/dotnet40/script.js:38 -#: Engines/Wine/Verbs/dotnet40/script.js:45 -#: Engines/Wine/Verbs/dotnet472/script.js:38 -#: Engines/Wine/Verbs/corefonts/script.js:84 -#: Engines/Wine/Verbs/d3dx10/script.js:35 -#: Engines/Wine/Verbs/dotnet461/script.js:38 -#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50 -#: Engines/Wine/Verbs/dotnet452/script.js:38 -#: Engines/Wine/Verbs/dotnet45/script.js:39 -#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove -#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18 -#: Engines/Wine/Verbs/dotnet462/script.js:38 Engines/Wine/QuickScript/Steam -#: Script/script.js:138 Script/script.js:143 Script/script.js:163 -#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41 -#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77 -#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64 -#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin -#: Script/script.js:57 Script/script.js:62 Script/script.js:70 +#: Applications/Internet/Internet Explorer 6.0/Online/script.js:144 +#: Engines/Wine/Verbs/dotnet472/script.js:50 Engines/Wine/Verbs/Remove +#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30 +#: Engines/Wine/Verbs/dotnet462/script.js:50 +#: Engines/Wine/Verbs/dotnet46/script.js:50 +#: Engines/Wine/Verbs/d3dx10/script.js:61 +#: Engines/Wine/Verbs/dotnet452/script.js:50 +#: Engines/Wine/Verbs/dotnet461/script.js:50 +#: Engines/Wine/Verbs/dotnet40/script.js:54 +#: Engines/Wine/Verbs/dotnet40/script.js:63 +#: Engines/Wine/Verbs/dotnet45/script.js:58 +#: Engines/Wine/Verbs/d3dx11/script.js:62 +#: Engines/Wine/Verbs/corefonts/script.js:93 +#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61 +#: Engines/Wine/QuickScript/Steam Script/script.js:142 Script/script.js:147 +#: Script/script.js:167 Script/script.js:182 Engines/Wine/QuickScript/Zip +#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer +#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin +#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay +#: Script/script.js:65 Script/script.js:70 Script/script.js:90 Please\ wait...=Please wait... #: i18n/tmp/Engines/Wine/Plugins/application.js:2 Plugins\ for\ Wine.=Plugins for Wine. -#: Engines/Wine/Engine/Object/script.js:327 +#: Engines/Wine/Engine/Object/script.js:340 Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits #: i18n/tmp/Applications/Games/Prehistorik/application.js:1 @@ -1057,6 +1144,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine. #: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1 QuickTime\ 7.6=QuickTime 7.6 +#: Engines/Wine/Settings/Font smoothing/script.js:12 +RGB=RGB + #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven #: Shield/application.js:2 Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe. @@ -1076,9 +1166,6 @@ Red\ Trigger=Red Trigger #: i18n/tmp/Applications/Games/Red Trigger/application.js:2 Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system? -#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34 -Registering\ {0}...=Registering {0}... - #: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1 Registry\ Editor=Registry Editor @@ -1088,7 +1175,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal #: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1 Remove\ Mono=Remove Mono -#: Engines/Wine/Settings/render target lock mode/script.js:12 +#: Engines/Wine/Settings/render target lock mode/script.js:17 Render\ target\ lock\ mode=Render target lock mode #: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1 @@ -1103,7 +1190,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap #: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1 Retina=Retina -#: Engines/Wine/Settings/hdpi/script.js:11 +#: Engines/Wine/Settings/hdpi/script.js:15 Retina\ support=Retina support #: i18n/tmp/Applications/Games/TRON RUNr/application.js:2 @@ -1112,6 +1199,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ #: i18n/tmp/Applications/Games/Audiosurf/application.js:2 Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose. +#: i18n/tmp/Applications/Games/RimWorld/application.js:1 +RimWorld=RimWorld + #: i18n/tmp/Applications/Games/Road Rash/application.js:1 Road\ Rash=Road Rash @@ -1134,8 +1224,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II #: Pack/application.js:1 STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack -#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - -#: Academy/application.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1 STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122 #: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the @@ -1169,11 +1258,10 @@ Scribblenauts\ Unlimited=Scribblenauts Unlimited #: (1.0->1.6)/script.js:14 Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60). -#: Applications/Games/League of Legends/Online/script.js:31 +#: Applications/Games/League of Legends/Online/script.js:33 Select\ your\ region\:=Select your region\: -#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's -#: Shadow/application.js:2 +#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2 Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests. #: i18n/tmp/Engines/Wine/Settings/application.js:2 @@ -1207,9 +1295,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ #: i18n/tmp/Applications/Games/Space Colony/application.js:1 Space\ Colony=Space Colony +#: i18n/tmp/Applications/Games/Space Engineers/application.js:1 +Space\ Engineers=Space Engineers + +#: i18n/tmp/Applications/Games/Space Engineers/application.js:2 +Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored.
Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes.
Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity.
Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future.
Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored.
Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes.
Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity.
Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future.
Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build. + #: i18n/tmp/Applications/Games/Spore/application.js:1 Spore=Spore +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1 +Sprouts\ Adventure=Sprouts Adventure + +#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2 +Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\! + #: i18n/tmp/Applications/Games/Star Craft II/application.js:1 Star\ Craft\ II=Star Craft II @@ -1219,120 +1319,122 @@ Star\ Trek\ Online=Star Trek Online #: i18n/tmp/Applications/Games/Star Craft II/application.js:2 StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment. -#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed -#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed: -#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II -#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark -#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims -#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's -#: Division/Steam/script.js:1 II/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing -#: Test/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 -#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan -#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki -#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below -#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One -#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1 -#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's -#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 -#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1 -#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM -#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: -#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate -#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy -#: Heights/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 #: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1 -#: Crew/Steam/script.js:1 Carter/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1 #: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1 -#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb -#: Raider Underworld/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1 +#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims +#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park +#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider +#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's +#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red +#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total +#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate +#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY +#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1 +#: Vanishing of Ethan Carter/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith +#: 2014/Steam/script.js:1 +#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry +#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 #: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1 -#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire -#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1 +#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells +#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 #: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1 -#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/Steam/script.js:1 Jedi -#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red -#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You -#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: -#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1 -#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 -#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount & -#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia -#: Mysteries Sith/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1 +#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II - +#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass +#: Effect/Steam/script.js:1 Room/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1 #: i18n/tmp/Applications/Games/Steam/application.js:1 +#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed +#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space +#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy +#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball +#: Xenoverse/Steam/script.js:1 +#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter +#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age +#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise: +#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Batman™: Arkham City/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1 #: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1 -#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild -#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife -#: Park i18n/tmp/Applications/Games/It came from space ate our -#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts -#: Unlimited/Steam/script.js:1 City/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1 -#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum -#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces -#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1 +#: III/Steam/script.js:1 Engineers/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1 +#: Creed/Steam/script.js:1 Witness/Steam/script.js:1 +#: i18n/tmp/Applications/Games/It came from space ate our +#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1 +#: Asylum/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1 +#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold +#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1 +#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki +#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room +#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer +#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1 +#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black +#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania +#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum +#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an +#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's +#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad +#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1 #: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1 -#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1 -#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark +#: Forces/Steam/script.js:1 +#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 +#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1 +#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront +#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse +#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1 +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight: +#: Forces Steam=Steam +#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1 +#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The +#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam #: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam -#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam -#: i18n/tmp/Applications/Games/Toki Tori/Steam #: i18n/tmp/Applications/Games/Medieval II: Total War/Steam -#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam -#: i18n/tmp/Applications/Games/FlatOut/Steam -#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam -#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The -#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam -#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam -#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam -#: i18n/tmp/Applications/Games/Consortium: Tower/Steam -#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam -#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam -#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call +#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam #: i18n/tmp/Applications/Games/ChromaGun/Steam -#: i18n/tmp/Applications/Games/Mount & Blade/Steam -#: i18n/tmp/Applications/Games/Mafia II/Steam +#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam +#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam +#: i18n/tmp/Applications/Games/Cogs/Steam #: i18n/tmp/Applications/Games/Prey/Steam -#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call -#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam -#: i18n/tmp/Applications/Games/BioShock/Steam +#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki +#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam +#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam +#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam +#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam +#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam +#: i18n/tmp/Applications/Games/Rayman Legends/Steam +#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam +#: i18n/tmp/Applications/Games/Consortium: Tower/Steam Steam\ (Demo)=Steam (Demo) -#: i18n/tmp/Applications/Games/The Elder Scrolls IV: -#: Oblivion/Steam/script.js:1 +#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1 Steam\ (GOTY)=Steam (GOTY) #: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam @@ -1345,7 +1447,7 @@ Steam\ Script=Steam Script #: i18n/tmp/Applications/Games/Steam/application.js:2 Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services. -#: Engines/Wine/Settings/strict draw ordering/script.js:12 +#: Engines/Wine/Settings/strict draw ordering/script.js:17 Strict\ Draw\ Ordering=Strict Draw Ordering #: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2 @@ -1366,6 +1468,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw #: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1 Super\ Blue\ Boy\ Planet=Super Blue Boy Planet +#: i18n/tmp/Utils/Functions/System/application.js:1 +System\ Utils=System Utils + #: i18n/tmp/Applications/Games/TRON RUNr/application.js:1 TRON\ RUN/r=TRON RUN/r @@ -1458,8 +1563,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter #: Redux/application.js:1 The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux -#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter -#: Redux/application.js:2 Carter/application.js:2 +#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2 +#: Carter Redux/application.js:2 The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery. #: i18n/tmp/Engines/Wine/Engine/application.js:2 @@ -1474,7 +1579,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ #: i18n/tmp/Applications/Games/The Witness/application.js:1 The\ Witness=The Witness -#: Engines/Wine/Shortcuts/Reader/script.js:62 +#: Engines/Wine/Shortcuts/Reader/script.js:61 The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it? #: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2 @@ -1483,6 +1588,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a #: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2 The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days. +#: Applications/Games/PC Building Simulator/Steam/script.js:19 +The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue. + #: i18n/tmp/Applications/Games/Toki Tori/application.js:2 The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools. @@ -1498,25 +1606,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp #: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2 The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway. -#: Applications/Games/Lego Rock Raiders/Local/script.js:28 +#: Applications/Games/Lego Rock Raiders/Local/script.js:29 This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself. -#: Engines/Wine/Verbs/dotnet46/script.js:14 -#: Engines/Wine/Verbs/dotnet46/script.js:57 -#: Engines/Wine/Verbs/dotnet472/script.js:15 -#: Engines/Wine/Verbs/dotnet472/script.js:58 -#: Engines/Wine/Verbs/dotnet461/script.js:15 -#: Engines/Wine/Verbs/dotnet461/script.js:58 -#: Engines/Wine/Verbs/dotnet452/script.js:15 -#: Engines/Wine/Verbs/dotnet452/script.js:62 -#: Engines/Wine/Verbs/dotnet462/script.js:15 -#: Engines/Wine/Verbs/dotnet462/script.js:58 +#: Applications/Games/Sprouts Adventure/Local/script.js:13 +This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux). + +#: Engines/Wine/Verbs/dotnet472/script.js:24 +#: Engines/Wine/Verbs/dotnet472/script.js:69 +#: Engines/Wine/Verbs/dotnet462/script.js:24 +#: Engines/Wine/Verbs/dotnet462/script.js:69 +#: Engines/Wine/Verbs/dotnet46/script.js:24 +#: Engines/Wine/Verbs/dotnet46/script.js:69 +#: Engines/Wine/Verbs/dotnet452/script.js:24 +#: Engines/Wine/Verbs/dotnet452/script.js:73 +#: Engines/Wine/Verbs/dotnet461/script.js:24 +#: Engines/Wine/Verbs/dotnet461/script.js:69 This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\! -#: Engines/Wine/Verbs/dotnet40/script.js:15 -#: Engines/Wine/Verbs/dotnet40/script.js:73 -#: Engines/Wine/Verbs/dotnet45/script.js:15 -#: Engines/Wine/Verbs/dotnet45/script.js:65 +#: Engines/Wine/Verbs/dotnet40/script.js:26 +#: Engines/Wine/Verbs/dotnet40/script.js:91 +#: Engines/Wine/Verbs/dotnet45/script.js:28 +#: Engines/Wine/Verbs/dotnet45/script.js:84 This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better. #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2 @@ -1544,8 +1655,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ #: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1 Tomb\ Raider\:\ Legend=Tomb Raider\: Legend -#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of -#: Xian/application.js:1 +#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1 Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian #: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1 @@ -1584,14 +1694,17 @@ Unholy\ Heights=Unholy Heights #: i18n/tmp/Applications/Games/The Room Two/application.js:2 Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration. -#: i18n/tmp/Applications/Games/Prince of Persia: The Sands -#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood -#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1 -#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: Engines/Wine/Plugins/Font smoothing/script.js:30 +Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}" + +#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Uplay/application.js:1 #: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1 -#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1 -#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1 +#: i18n/tmp/Applications/Games/Prince of Persia: The Sands +#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and +#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman +#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1 Uplay=Uplay #: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1 @@ -1600,6 +1713,16 @@ Uplay\ Script=Uplay Script #: i18n/tmp/Applications/Games/Uplay/application.js:2 Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal. +#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1 +Use\ Take\ Focus=Use Take Focus + +#: Engines/Wine/Settings/UseTakeFocus/script.js:19 +#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1 +UseTakeFocus=UseTakeFocus + +#: Engines/Wine/Verbs/gallium9/script.js:42 +Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits). + #: i18n/tmp/Utils/Functions/Apps/application.js:2 Utils\ for\ apps.=Utils for apps. @@ -1609,10 +1732,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction. #: i18n/tmp/Utils/Functions/Net/application.js:2 Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet. +#: i18n/tmp/Utils/Functions/System/application.js:2 +Utils\ for\ system\ interaction.=Utils for system interaction. + #: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1 VK9=VK9 -#: Engines/Wine/Verbs/VK9/script.js:16 +#: Engines/Wine/Verbs/VK9/script.js:42 VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement #: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2 @@ -1621,7 +1747,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ #: i18n/tmp/Engines/Wine/Verbs/application.js:2 Verbs\ for\ Wine.=Verbs for Wine. -#: Engines/Wine/Settings/video memory size/script.js:12 +#: Engines/Wine/Settings/video memory size/script.js:17 Video\ memory\ size=Video memory size #: i18n/tmp/Applications/Games/Mafia II/application.js:2 @@ -1645,17 +1771,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ #: i18n/tmp/Applications/Games/Unholy Heights/application.js:2 Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right? -#: Applications/Games/Origin/Online (Legacy)/script.js:15 -#: Applications/Games/Origin/Local (Legacy)/script.js:16 +#: Applications/Games/Origin/Online (Legacy)/script.js:18 +#: Applications/Games/Origin/Local (Legacy)/script.js:17 When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup. -#: Applications/Games/Lego Rock Raiders/Local/script.js:42 +#: Applications/Games/Lego Rock Raiders/Local/script.js:47 When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash. -#: Applications/Games/Lego Rock Raiders/Local/script.js:25 +#: Applications/Games/Lego Rock Raiders/Local/script.js:24 When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6. -#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67 +#: Applications/Internet/Internet Explorer 7.0/Online/script.js:80 Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install? #: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1 @@ -1694,6 +1820,9 @@ Wine\ Tools=Wine Tools #: i18n/tmp/Engines/Wine/Verbs/application.js:1 Wine\ Verbs=Wine Verbs +#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1 +Wine\ constants=Wine constants + #: i18n/tmp/Engines/Wine/Engine/Object/script.js:1 Wine\ engine=Wine engine @@ -1703,9 +1832,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation #: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1 Wine\ uninstaller=Wine uninstaller +#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1 +Wine\ versions=Wine versions + #: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2 Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience. +#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2 +With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards. + #: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1 Worms\ Armageddon=Worms Armageddon @@ -1738,6 +1873,9 @@ You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutr #: i18n/tmp/Applications/Games/BRINK/application.js:2 You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\! +#: Applications/Games/Space Engineers/Steam/script.js:44 +You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles. + #: i18n/tmp/Applications/Games/Druid Soccer/application.js:2 You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer. @@ -1756,6 +1894,9 @@ always\ offscreen=always offscreen #: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1 amstream=amstream +#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1 +atmlib=atmlib + #: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1 corefonts=corefonts @@ -1783,13 +1924,19 @@ devenum=devenum #: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1 faudio=faudio -#: Engines/Wine/Verbs/corefonts/script.js:85 -#: Engines/Wine/Verbs/corefonts/script.js:91 +#: Engines/Wine/Verbs/corefonts/script.js:94 +#: Engines/Wine/Verbs/corefonts/script.js:98 fonts=fonts +#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1 +gallium9=gallium9 + #: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1 gdiplus=gdiplus +#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1 +gdiplus_winxp=gdiplus_winxp + #: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1 hdpi=hdpi @@ -1814,12 +1961,21 @@ msls31=msls31 #: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1 mspatcha=mspatcha +#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1 +msxml3=msxml3 + +#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1 +msxml6=msxml6 + #: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1 multisampling=multisampling #: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1 native\ application=native application +#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1 +nocrashdialog=nocrashdialog + #: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1 offscreen\ rendering\ mode=offscreen rendering mode @@ -1835,10 +1991,10 @@ override\ DLL=override DLL #: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1 quartz=quartz -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readdraw=readdraw -#: Engines/Wine/Settings/render target lock mode/script.js:8 +#: Engines/Wine/Settings/render target lock mode/script.js:11 readtext=readtext #: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1 @@ -1865,9 +2021,6 @@ sound\ driver=sound driver #: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1 strict\ draw\ ordering=strict draw ordering -#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1 -v.7.2.2=v.7.2.2 - #: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1 v1.5=v1.5 @@ -1901,10 +2054,14 @@ vcrun2015=vcrun2015 #: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1 vcrun2017=vcrun2017 +#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1 +vcrun6sp6=vcrun6sp6 + #: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1 video\ memory\ size=video memory size -#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1 +#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1 +#: i18n/tmp/Engines/Wine/Plugins/virtual virtual\ desktop=virtual desktop #: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1 @@ -1913,11 +2070,10 @@ vulkanSDK=vulkanSDK #: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1 xact=xact -#: Engines/Wine/Verbs/dotnet452/script.js:48 -#: Engines/Wine/Verbs/dotnet45/script.js:49 +#: Engines/Wine/Verbs/dotnet452/script.js:62 +#: Engines/Wine/Verbs/dotnet45/script.js:70 {0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003" #: i18n/tmp/Applications/Games/It came from space and ate our #: brains/application.js:2 ‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass. -